├── .bumpversion.cfg ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── pycycle_test_workflow.yml │ └── release_workflow.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── example_cycles ├── N+3ref │ ├── N3_Fan_map.py │ ├── N3_HPC_map.py │ ├── N3_HPT_map.py │ ├── N3_LPC_map.py │ ├── N3_LPT_map.py │ ├── N3_MDP.py │ ├── N3_MDP_Opt.py │ ├── N3_MDP_verif.py │ ├── N3_SPD.py │ ├── N3ref.py │ ├── benchmark_N3_MDP.py │ ├── benchmark_N3_MDP_Opt.py │ ├── benchmark_N3_MDP_verif.py │ ├── benchmark_N3_SPD.py │ ├── benchmark_N3ref.py │ └── small_core_eff_balance.py ├── __init__.py ├── afterburning_turbojet.py ├── electric_propulsor.py ├── high_bypass_turbofan.py ├── mixedflow_turbofan.py ├── multi_spool_turboshaft.py ├── simple_turbojet.py ├── single_spool_turboshaft.py ├── tab_thermo_data_generator.py ├── tests │ ├── benchmark_ab_turbojet.py │ ├── benchmark_electric_propulsor.py │ ├── benchmark_hbtf.py │ ├── benchmark_mixedflow_turbofan.py │ ├── benchmark_multi_spool_turboshaft.py │ ├── benchmark_simple_turbojet.py │ ├── benchmark_single_spool_turboshaft.py │ ├── benchmark_wet_propulsor.py │ ├── benchmark_wet_simple_turbojet.py │ └── test_all_examples.py ├── wet_propulsor.py └── wet_simple_turbojet.py ├── pycycle ├── __init__.py ├── api.py ├── connect_flow.py ├── constants.py ├── docs │ ├── Makefile │ ├── _theme │ │ ├── search.html │ │ ├── static │ │ │ ├── searchtools.js │ │ │ └── style.css │ │ └── theme.conf │ ├── conf.py │ ├── examples │ │ └── index.rst │ ├── index.rst │ ├── reference_guide │ │ ├── elements │ │ │ └── index.rst │ │ ├── maps │ │ │ └── index.rst │ │ └── viewers.rst │ └── tutorials │ │ ├── images │ │ ├── turbojet_elements.pdf │ │ ├── turbojet_elements.png │ │ └── turbojet_elements.tex │ │ ├── index.rst │ │ ├── turbofan.rst │ │ └── turbojet.rst ├── element_base.py ├── elements │ ├── US1976.py │ ├── __init__.py │ ├── ambient.py │ ├── bleed_out.py │ ├── cfd_start.py │ ├── combustor.py │ ├── compressor.py │ ├── compressor_map.py │ ├── cooling.py │ ├── duct.py │ ├── flight_conditions.py │ ├── flow_start.py │ ├── gearbox.py │ ├── inlet.py │ ├── mixer.py │ ├── nozzle.py │ ├── performance.py │ ├── shaft.py │ ├── splitter.py │ ├── test │ │ ├── __init__.py │ │ ├── reg_data │ │ │ ├── ambient.csv │ │ │ ├── combustorJP7.csv │ │ │ ├── compressor.csv │ │ │ ├── compressorOD1.csv │ │ │ ├── duct.csv │ │ │ ├── flowstart.csv │ │ │ ├── inlet.csv │ │ │ ├── nozzle.csv │ │ │ ├── nozzleCD.csv │ │ │ ├── nozzleCD_CV.csv │ │ │ ├── nozzleCD_CV__Cfg.csv │ │ │ ├── nozzleCD__Cfg.csv │ │ │ ├── nozzleCV.csv │ │ │ ├── nozzleCV__Cfg.csv │ │ │ ├── shaft.csv │ │ │ ├── splitter.csv │ │ │ ├── turbine.csv │ │ │ └── turbineOD1.csv │ │ ├── test_ambient.py │ │ ├── test_bleed_out.py │ │ ├── test_cfd_start.py │ │ ├── test_combustor.py │ │ ├── test_compressor.py │ │ ├── test_compressor_map.py │ │ ├── test_compressor_od.py │ │ ├── test_cooling.py │ │ ├── test_duct.py │ │ ├── test_flightconditions.py │ │ ├── test_flow_start.py │ │ ├── test_inlet.py │ │ ├── test_mixer.py │ │ ├── test_nozzle.py │ │ ├── test_nozzle_CV_CD.py │ │ ├── test_shaft.py │ │ ├── test_splitter.py │ │ ├── test_turbine.py │ │ ├── test_turbine_map.py │ │ ├── test_turbine_od.py │ │ └── test_usatm1976.py │ ├── turbine.py │ └── turbine_map.py ├── flow_in.py ├── maps │ ├── Fan_map.py │ ├── HPC_map.py │ ├── HPT_map.py │ ├── LPC_map.py │ ├── LPT_map.py │ ├── __init__.py │ ├── axi3_2.py │ ├── axi5.py │ ├── hpt1269.py │ ├── lpt2269.py │ ├── map_data.py │ ├── ncp01.py │ └── test │ │ └── __init__.py ├── mp_cycle.py ├── passthrough.py ├── tests │ ├── __init__.py │ └── test_element.py ├── thermo │ ├── __init__.py │ ├── cea │ │ ├── __init__.py │ │ ├── chem_eq.py │ │ ├── props_calcs.py │ │ ├── props_rhs.py │ │ ├── species_data.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_chem_eq_co2.py │ │ │ ├── test_chem_eq_janaf.py │ │ │ ├── test_props_rhs_co2.py │ │ │ ├── test_species_data.py │ │ │ └── test_thermo_add_cea.py │ │ ├── thermo_add.py │ │ └── thermo_data │ │ │ ├── __init__.py │ │ │ ├── co2_co_o2.py │ │ │ ├── janaf.py │ │ │ └── wet_air.py │ ├── static_ps_calc.py │ ├── static_ps_resid.py │ ├── tabular │ │ ├── __init__.py │ │ ├── air_jetA.pkl │ │ ├── air_jetA_coarse.pkl │ │ ├── tab_cea_comparison.py │ │ ├── tabular_thermo.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_tab_thermo.py │ │ │ └── test_thermo_add.py │ │ └── thermo_add.py │ ├── test │ │ ├── NPSS_Static_CEA_Data.csv │ │ ├── __init__.py │ │ ├── test_thermo_total_static_cea.py │ │ └── test_thermo_total_static_tabulated.py │ ├── thermo.py │ └── unit_comps.py └── viewers.py ├── pyproject.toml ├── release_notes.md └── setup.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pycycle_test_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.github/workflows/pycycle_test_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/release_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.github/workflows/release_workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/README.md -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_Fan_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_Fan_map.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_HPC_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_HPC_map.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_HPT_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_HPT_map.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_LPC_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_LPC_map.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_LPT_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_LPT_map.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_MDP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_MDP.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_MDP_Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_MDP_Opt.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_MDP_verif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_MDP_verif.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3_SPD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3_SPD.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/N3ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/N3ref.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/benchmark_N3_MDP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/benchmark_N3_MDP.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/benchmark_N3_MDP_Opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/benchmark_N3_MDP_Opt.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/benchmark_N3_MDP_verif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/benchmark_N3_MDP_verif.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/benchmark_N3_SPD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/benchmark_N3_SPD.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/benchmark_N3ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/benchmark_N3ref.py -------------------------------------------------------------------------------- /example_cycles/N+3ref/small_core_eff_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/N+3ref/small_core_eff_balance.py -------------------------------------------------------------------------------- /example_cycles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_cycles/afterburning_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/afterburning_turbojet.py -------------------------------------------------------------------------------- /example_cycles/electric_propulsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/electric_propulsor.py -------------------------------------------------------------------------------- /example_cycles/high_bypass_turbofan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/high_bypass_turbofan.py -------------------------------------------------------------------------------- /example_cycles/mixedflow_turbofan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/mixedflow_turbofan.py -------------------------------------------------------------------------------- /example_cycles/multi_spool_turboshaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/multi_spool_turboshaft.py -------------------------------------------------------------------------------- /example_cycles/simple_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/simple_turbojet.py -------------------------------------------------------------------------------- /example_cycles/single_spool_turboshaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/single_spool_turboshaft.py -------------------------------------------------------------------------------- /example_cycles/tab_thermo_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tab_thermo_data_generator.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_ab_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_ab_turbojet.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_electric_propulsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_electric_propulsor.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_hbtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_hbtf.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_mixedflow_turbofan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_mixedflow_turbofan.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_multi_spool_turboshaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_multi_spool_turboshaft.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_simple_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_simple_turbojet.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_single_spool_turboshaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_single_spool_turboshaft.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_wet_propulsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_wet_propulsor.py -------------------------------------------------------------------------------- /example_cycles/tests/benchmark_wet_simple_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/benchmark_wet_simple_turbojet.py -------------------------------------------------------------------------------- /example_cycles/tests/test_all_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/tests/test_all_examples.py -------------------------------------------------------------------------------- /example_cycles/wet_propulsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/wet_propulsor.py -------------------------------------------------------------------------------- /example_cycles/wet_simple_turbojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/example_cycles/wet_simple_turbojet.py -------------------------------------------------------------------------------- /pycycle/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '4.4.0' -------------------------------------------------------------------------------- /pycycle/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/api.py -------------------------------------------------------------------------------- /pycycle/connect_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/connect_flow.py -------------------------------------------------------------------------------- /pycycle/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/constants.py -------------------------------------------------------------------------------- /pycycle/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/Makefile -------------------------------------------------------------------------------- /pycycle/docs/_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/_theme/search.html -------------------------------------------------------------------------------- /pycycle/docs/_theme/static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/_theme/static/searchtools.js -------------------------------------------------------------------------------- /pycycle/docs/_theme/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/_theme/static/style.css -------------------------------------------------------------------------------- /pycycle/docs/_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/_theme/theme.conf -------------------------------------------------------------------------------- /pycycle/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/conf.py -------------------------------------------------------------------------------- /pycycle/docs/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/examples/index.rst -------------------------------------------------------------------------------- /pycycle/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/index.rst -------------------------------------------------------------------------------- /pycycle/docs/reference_guide/elements/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/reference_guide/elements/index.rst -------------------------------------------------------------------------------- /pycycle/docs/reference_guide/maps/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/reference_guide/maps/index.rst -------------------------------------------------------------------------------- /pycycle/docs/reference_guide/viewers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/reference_guide/viewers.rst -------------------------------------------------------------------------------- /pycycle/docs/tutorials/images/turbojet_elements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/images/turbojet_elements.pdf -------------------------------------------------------------------------------- /pycycle/docs/tutorials/images/turbojet_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/images/turbojet_elements.png -------------------------------------------------------------------------------- /pycycle/docs/tutorials/images/turbojet_elements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/images/turbojet_elements.tex -------------------------------------------------------------------------------- /pycycle/docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/index.rst -------------------------------------------------------------------------------- /pycycle/docs/tutorials/turbofan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/turbofan.rst -------------------------------------------------------------------------------- /pycycle/docs/tutorials/turbojet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/docs/tutorials/turbojet.rst -------------------------------------------------------------------------------- /pycycle/element_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/element_base.py -------------------------------------------------------------------------------- /pycycle/elements/US1976.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/US1976.py -------------------------------------------------------------------------------- /pycycle/elements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/elements/ambient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/ambient.py -------------------------------------------------------------------------------- /pycycle/elements/bleed_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/bleed_out.py -------------------------------------------------------------------------------- /pycycle/elements/cfd_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/cfd_start.py -------------------------------------------------------------------------------- /pycycle/elements/combustor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/combustor.py -------------------------------------------------------------------------------- /pycycle/elements/compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/compressor.py -------------------------------------------------------------------------------- /pycycle/elements/compressor_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/compressor_map.py -------------------------------------------------------------------------------- /pycycle/elements/cooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/cooling.py -------------------------------------------------------------------------------- /pycycle/elements/duct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/duct.py -------------------------------------------------------------------------------- /pycycle/elements/flight_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/flight_conditions.py -------------------------------------------------------------------------------- /pycycle/elements/flow_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/flow_start.py -------------------------------------------------------------------------------- /pycycle/elements/gearbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/gearbox.py -------------------------------------------------------------------------------- /pycycle/elements/inlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/inlet.py -------------------------------------------------------------------------------- /pycycle/elements/mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/mixer.py -------------------------------------------------------------------------------- /pycycle/elements/nozzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/nozzle.py -------------------------------------------------------------------------------- /pycycle/elements/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/performance.py -------------------------------------------------------------------------------- /pycycle/elements/shaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/shaft.py -------------------------------------------------------------------------------- /pycycle/elements/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/splitter.py -------------------------------------------------------------------------------- /pycycle/elements/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/ambient.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/ambient.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/combustorJP7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/combustorJP7.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/compressor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/compressor.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/compressorOD1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/compressorOD1.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/duct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/duct.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/flowstart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/flowstart.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/inlet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/inlet.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzle.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCD.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCD_CV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCD_CV.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCD_CV__Cfg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCD_CV__Cfg.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCD__Cfg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCD__Cfg.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCV.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/nozzleCV__Cfg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/nozzleCV__Cfg.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/shaft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/shaft.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/splitter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/splitter.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/turbine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/turbine.csv -------------------------------------------------------------------------------- /pycycle/elements/test/reg_data/turbineOD1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/reg_data/turbineOD1.csv -------------------------------------------------------------------------------- /pycycle/elements/test/test_ambient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_ambient.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_bleed_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_bleed_out.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_cfd_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_cfd_start.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_combustor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_combustor.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_compressor.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_compressor_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_compressor_map.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_compressor_od.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_compressor_od.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_cooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_cooling.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_duct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_duct.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_flightconditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_flightconditions.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_flow_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_flow_start.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_inlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_inlet.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_mixer.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_nozzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_nozzle.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_nozzle_CV_CD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_nozzle_CV_CD.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_shaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_shaft.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_splitter.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_turbine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_turbine.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_turbine_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_turbine_map.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_turbine_od.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_turbine_od.py -------------------------------------------------------------------------------- /pycycle/elements/test/test_usatm1976.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/test/test_usatm1976.py -------------------------------------------------------------------------------- /pycycle/elements/turbine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/turbine.py -------------------------------------------------------------------------------- /pycycle/elements/turbine_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/elements/turbine_map.py -------------------------------------------------------------------------------- /pycycle/flow_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/flow_in.py -------------------------------------------------------------------------------- /pycycle/maps/Fan_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/Fan_map.py -------------------------------------------------------------------------------- /pycycle/maps/HPC_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/HPC_map.py -------------------------------------------------------------------------------- /pycycle/maps/HPT_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/HPT_map.py -------------------------------------------------------------------------------- /pycycle/maps/LPC_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/LPC_map.py -------------------------------------------------------------------------------- /pycycle/maps/LPT_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/LPT_map.py -------------------------------------------------------------------------------- /pycycle/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/maps/axi3_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/axi3_2.py -------------------------------------------------------------------------------- /pycycle/maps/axi5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/axi5.py -------------------------------------------------------------------------------- /pycycle/maps/hpt1269.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/hpt1269.py -------------------------------------------------------------------------------- /pycycle/maps/lpt2269.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/lpt2269.py -------------------------------------------------------------------------------- /pycycle/maps/map_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/map_data.py -------------------------------------------------------------------------------- /pycycle/maps/ncp01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/maps/ncp01.py -------------------------------------------------------------------------------- /pycycle/maps/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/mp_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/mp_cycle.py -------------------------------------------------------------------------------- /pycycle/passthrough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/passthrough.py -------------------------------------------------------------------------------- /pycycle/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/tests/test_element.py: -------------------------------------------------------------------------------- 1 | import unittest -------------------------------------------------------------------------------- /pycycle/thermo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/cea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/cea/chem_eq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/chem_eq.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/props_calcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/props_calcs.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/props_rhs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/props_rhs.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/species_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/species_data.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/test_chem_eq_co2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/test/test_chem_eq_co2.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/test_chem_eq_janaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/test/test_chem_eq_janaf.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/test_props_rhs_co2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/test/test_props_rhs_co2.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/test_species_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/test/test_species_data.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/test/test_thermo_add_cea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/test/test_thermo_add_cea.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/thermo_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/thermo_add.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/thermo_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/cea/thermo_data/co2_co_o2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/thermo_data/co2_co_o2.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/thermo_data/janaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/thermo_data/janaf.py -------------------------------------------------------------------------------- /pycycle/thermo/cea/thermo_data/wet_air.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/cea/thermo_data/wet_air.py -------------------------------------------------------------------------------- /pycycle/thermo/static_ps_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/static_ps_calc.py -------------------------------------------------------------------------------- /pycycle/thermo/static_ps_resid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/static_ps_resid.py -------------------------------------------------------------------------------- /pycycle/thermo/tabular/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/tabular/air_jetA.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/air_jetA.pkl -------------------------------------------------------------------------------- /pycycle/thermo/tabular/air_jetA_coarse.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/air_jetA_coarse.pkl -------------------------------------------------------------------------------- /pycycle/thermo/tabular/tab_cea_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/tab_cea_comparison.py -------------------------------------------------------------------------------- /pycycle/thermo/tabular/tabular_thermo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/tabular_thermo.py -------------------------------------------------------------------------------- /pycycle/thermo/tabular/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/tabular/test/test_tab_thermo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/test/test_tab_thermo.py -------------------------------------------------------------------------------- /pycycle/thermo/tabular/test/test_thermo_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/test/test_thermo_add.py -------------------------------------------------------------------------------- /pycycle/thermo/tabular/thermo_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/tabular/thermo_add.py -------------------------------------------------------------------------------- /pycycle/thermo/test/NPSS_Static_CEA_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/test/NPSS_Static_CEA_Data.csv -------------------------------------------------------------------------------- /pycycle/thermo/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycycle/thermo/test/test_thermo_total_static_cea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/test/test_thermo_total_static_cea.py -------------------------------------------------------------------------------- /pycycle/thermo/test/test_thermo_total_static_tabulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/test/test_thermo_total_static_tabulated.py -------------------------------------------------------------------------------- /pycycle/thermo/thermo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/thermo.py -------------------------------------------------------------------------------- /pycycle/thermo/unit_comps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/thermo/unit_comps.py -------------------------------------------------------------------------------- /pycycle/viewers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pycycle/viewers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/release_notes.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMDAO/pyCycle/HEAD/setup.py --------------------------------------------------------------------------------