├── .gitignore ├── LICENSE-CC-BY-4.0 ├── ReadMe.md ├── images └── aeroprop_model_cfd.jpg └── run ├── aeroprop_mda.py ├── aeroprop_run.py ├── bc_coupling.py ├── geometry ├── geo_comps.py └── geo_vars.py ├── get-input-files.sh ├── propulsion ├── fan.py ├── full_body.py ├── n3_fan_map.py └── propulsion_group.py └── utils ├── add_geo_dvs.py └── point_specs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-CC-BY-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/LICENSE-CC-BY-4.0 -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/ReadMe.md -------------------------------------------------------------------------------- /images/aeroprop_model_cfd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/images/aeroprop_model_cfd.jpg -------------------------------------------------------------------------------- /run/aeroprop_mda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/aeroprop_mda.py -------------------------------------------------------------------------------- /run/aeroprop_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/aeroprop_run.py -------------------------------------------------------------------------------- /run/bc_coupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/bc_coupling.py -------------------------------------------------------------------------------- /run/geometry/geo_comps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/geometry/geo_comps.py -------------------------------------------------------------------------------- /run/geometry/geo_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/geometry/geo_vars.py -------------------------------------------------------------------------------- /run/get-input-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/get-input-files.sh -------------------------------------------------------------------------------- /run/propulsion/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/propulsion/fan.py -------------------------------------------------------------------------------- /run/propulsion/full_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/propulsion/full_body.py -------------------------------------------------------------------------------- /run/propulsion/n3_fan_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/propulsion/n3_fan_map.py -------------------------------------------------------------------------------- /run/propulsion/propulsion_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/propulsion/propulsion_group.py -------------------------------------------------------------------------------- /run/utils/add_geo_dvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/utils/add_geo_dvs.py -------------------------------------------------------------------------------- /run/utils/point_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdolab/aeroprop/HEAD/run/utils/point_specs.py --------------------------------------------------------------------------------