Contributions are always welcome! To contribute to VirtualEngineering (VE), report an issue, or seek support, please initiate a pull request or issue through the project GitHub.
To setup your development environment you can install the latest version directly from the most up-to-date version of the source code by cloning/forking the GitHub repository
git clone https://github.com/NREL/VirtualEngineering.gitOnce you have the source, you can build VE in development mode by executing
python setup.py developor
pip install -e .in the top-level directory. The required Python packages will automatically be installed as well.
To test that the package is working correctly, run
pytestfrom the root directory of the package. This will run a basic test problem.
Issues can be submitted at https://github.com/NREL/VirtualEngineering/issues
Please report bugs by submitting an issue.
If you are reporting a bug, please include the following information:
- A quick summary and/or background.
- Your operating system name and version.
- Details about your local setup that might be helpful in troubleshooting e.g. python version, library versions
- Detailed steps to reproduce the bug.
- What you expected to happen.
- What actually happens.
The best way to propose a new feature is by submitting an issue.
To propose a feature please include:
- Describe in detail how the new feature would work.
- Explain the use case of the new feature.
- Please keep the scope as narrow and specific as possible, to make it easier to implement.
The latest documentation for the VE library is available at https://virtualengineering.readthedocs.io/en/latest/index.html
If any documentation is unclear or requires correction, please submit an issue.
To submit your code when fixing bugs, documentation, or implementing new features, please follow the steps below.
- Fork the
VirtualEngineeringrepository on GitHub. - Clone your fork locally:
git clone https://github.com/NREL/G2Aero.git
- Create a branch for local development:
git checkout -b name-of-your-bugfix-or-feature
- Make your desired changes on your local branch.
- Commit your changes and push your branch to GitHub:
git add .
git commit -m "Your detailed description of your changes."
git push origin name-of-your-bugfix-or-feature
- Submit a pull request through GitHub.
If you are having any issues with the code or the VE library in general,
please don’t hesitate to reach out at: olga.doronina@nrel.gov or ethan.young@nrel.gov