├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── coding-style.yml │ ├── dependency-review.yml │ ├── housekeeping.yml │ ├── python-publish.yml │ └── regression-tests.yml ├── .gitignore ├── .gitlab └── issue_templates │ ├── bug_report.md │ └── feature_request.md ├── .pylintrc ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── doc ├── DLR-IB-AE-GO-2020-137_V1.05.pdf └── tutorials │ ├── _config.yml │ ├── _toc.yml │ ├── helper_functions │ ├── build_aeromodel.py │ └── plotting.py │ ├── intro.md │ ├── references.bib │ └── simplewing │ ├── aeropanel_VLM.png │ ├── simplewing.CAERO1 │ ├── simplewing_steady.ipynb │ └── simplewing_unsteady.ipynb ├── panelaero ├── DLM.py ├── VLM.py └── __init__.py ├── setup.py └── tests ├── __init__.py ├── helper_functions.py ├── reference_data ├── simplewing_DLM_Ma00_k02.pickle ├── simplewing_DLM_Ma00_k02_quartic.pickle ├── simplewing_DLM_Ma03_k02.pickle ├── simplewing_DLM_Ma03_k02_quartic.pickle ├── simplewing_VLM_Ma00.pickle ├── simplewing_VLM_Ma03.pickle ├── simplewing_aerogrid.pickle └── simplewing_generate_reference_data.py └── test_integration.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/coding-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/workflows/coding-style.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/housekeeping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/workflows/housekeeping.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/regression-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.github/workflows/regression-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.gitlab/issue_templates/bug_report.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.gitlab/issue_templates/feature_request.md -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/README.md -------------------------------------------------------------------------------- /doc/DLR-IB-AE-GO-2020-137_V1.05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/DLR-IB-AE-GO-2020-137_V1.05.pdf -------------------------------------------------------------------------------- /doc/tutorials/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/_config.yml -------------------------------------------------------------------------------- /doc/tutorials/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/_toc.yml -------------------------------------------------------------------------------- /doc/tutorials/helper_functions/build_aeromodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/helper_functions/build_aeromodel.py -------------------------------------------------------------------------------- /doc/tutorials/helper_functions/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/helper_functions/plotting.py -------------------------------------------------------------------------------- /doc/tutorials/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/intro.md -------------------------------------------------------------------------------- /doc/tutorials/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/references.bib -------------------------------------------------------------------------------- /doc/tutorials/simplewing/aeropanel_VLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/simplewing/aeropanel_VLM.png -------------------------------------------------------------------------------- /doc/tutorials/simplewing/simplewing.CAERO1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/simplewing/simplewing.CAERO1 -------------------------------------------------------------------------------- /doc/tutorials/simplewing/simplewing_steady.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/simplewing/simplewing_steady.ipynb -------------------------------------------------------------------------------- /doc/tutorials/simplewing/simplewing_unsteady.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/doc/tutorials/simplewing/simplewing_unsteady.ipynb -------------------------------------------------------------------------------- /panelaero/DLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/panelaero/DLM.py -------------------------------------------------------------------------------- /panelaero/VLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/panelaero/VLM.py -------------------------------------------------------------------------------- /panelaero/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/helper_functions.py -------------------------------------------------------------------------------- /tests/reference_data/simplewing_DLM_Ma00_k02.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_DLM_Ma00_k02.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_DLM_Ma00_k02_quartic.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_DLM_Ma00_k02_quartic.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_DLM_Ma03_k02.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_DLM_Ma03_k02.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_DLM_Ma03_k02_quartic.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_DLM_Ma03_k02_quartic.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_VLM_Ma00.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_VLM_Ma00.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_VLM_Ma03.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_VLM_Ma03.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_aerogrid.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_aerogrid.pickle -------------------------------------------------------------------------------- /tests/reference_data/simplewing_generate_reference_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/reference_data/simplewing_generate_reference_data.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLR-AE/PanelAero/HEAD/tests/test_integration.py --------------------------------------------------------------------------------