├── Configs ├── 8D74.cfg ├── A-1.cfg ├── Aestus-II.cfg ├── Aestus.cfg ├── Cycle Analysis │ ├── 11D33.cfg │ ├── BE-4.cfg │ ├── Example_1.cfg │ ├── Example_2.cfg │ ├── FFSC.cfg │ ├── FFSC_25_MPa.cfg │ ├── FFSC_40_MPa.cfg │ ├── FFSC_50_MPa.cfg │ ├── Merlin-1D.cfg │ ├── RD-170.cfg │ ├── RD-170_2.cfg │ ├── RD-170_2GG.cfg │ ├── RD-275.cfg │ ├── Raptor.cfg │ ├── Raptor_SL.cfg │ ├── SSME.cfg │ ├── SSME_FFSC.cfg │ ├── SSME_single_preburner.cfg │ └── Vulcain-2.cfg ├── H2O2.cfg ├── H2O2_sintin.cfg ├── HM-7B.cfg ├── LOX_CH4.cfg ├── LOX_LH.cfg ├── NK-33.cfg ├── P80.cfg ├── Pentaborane + H.peroxide-water solution 98%_Example.cfg ├── RD-0146.cfg ├── RD-107MM.cfg ├── RD-161.cfg ├── RD-170.cfg ├── RD-170_altitude.cfg ├── RD-275.cfg ├── RL10 B2.cfg ├── RL10A3-3A.cfg ├── SSME.cfg ├── Thermal Analysis │ ├── Aestus.cfg │ ├── HeatTransfer.cfg │ ├── HeatTransfer_2.cfg │ ├── SSME_40k.cfg │ └── SSME_40k_c.cfg ├── Thermal Propulsion │ ├── H2O_1000K.cfg │ ├── H2O_2000K.cfg │ └── H2O_3000K.cfg ├── VIKING 4B.cfg ├── VIKING 4B_2.cfg ├── Validation │ ├── test_case_1.cfg │ ├── test_case_2.cfg │ ├── test_case_3.cfg │ ├── test_case_4.cfg │ └── test_case_5.cfg ├── Vinci.cfg ├── Vulcain-2.cfg ├── Vulcain.cfg └── peregrine.cfg ├── README.md ├── SDK ├── build │ ├── common.mk │ ├── cycle_analysis.mk │ ├── cycle_analysis_2.mk │ ├── example1.mk │ ├── example2.mk │ ├── example3.mk │ ├── example4.mk │ ├── example5.mk │ ├── example6.mk │ ├── example_chamber.mk │ ├── example_performance1.mk │ ├── example_performance2.mk │ ├── example_performance3.mk │ ├── example_performance4.mk │ ├── example_wrapper.mk │ ├── linux.mk │ ├── linux32.mk │ ├── linux64.mk │ ├── thermal_analysis.mk │ ├── win32.mk │ ├── win64.mk │ ├── windows.mk │ └── wrapper.dll.manifest.xml └── src │ ├── chamber.cpp │ ├── common.cpp │ ├── common.hpp │ ├── cycle_analysis.cpp │ ├── cycle_analysis_2.cpp │ ├── example1.cpp │ ├── example2.cpp │ ├── example3.cpp │ ├── example4.cpp │ ├── example5.cpp │ ├── example6.cpp │ ├── performance1.cpp │ ├── performance2.cpp │ ├── performance3.cpp │ ├── performance4.cpp │ ├── thermal_analysis.cpp │ ├── wrapper.cpp │ ├── wrapper.h │ ├── wrapper_client.cpp │ ├── wrapper_client_1.py │ ├── wrapper_client_2.py │ └── wrapper_client_3.py ├── Scripts ├── H2OL_thermo.js ├── RD-170-conf.js ├── RD-170-conf2.js ├── RD-170.js ├── RD-275-conf.js ├── RD-275-conf2.js ├── RD-275-conf3.js ├── RD-275.js ├── SSME-conf.js ├── SSME.js ├── Vulcain-2-conf.js ├── Vulcain-2-conf2.js ├── Vulcain-2.js ├── frozen.js ├── gg_cycle.js ├── mixture.js ├── nested_analysis1.js ├── nested_analysis2.js ├── nozzle.js ├── performance1.js ├── performance2.js ├── performance3.js ├── performance4.js ├── performance5.js ├── propellant.js ├── propellant_analysis.js ├── reaction.js ├── reaction_products.js └── utils.js └── Wrapper ├── lite ├── Makefile_gcc ├── Makefile_win ├── wrapper_client.cpp ├── wrapper_client_1.py ├── wrapper_client_2.py └── wrapper_client_3.py └── standard ├── Makefile_gcc ├── Makefile_win ├── Octave ├── rpa.cpp └── test-rpa.m ├── wrapper_client.cpp ├── wrapper_client_1.py ├── wrapper_client_2.py ├── wrapper_client_3.py ├── wrapper_client_4.py └── wrapper_client_5.py /Configs/8D74.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/8D74.cfg -------------------------------------------------------------------------------- /Configs/A-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/A-1.cfg -------------------------------------------------------------------------------- /Configs/Aestus-II.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Aestus-II.cfg -------------------------------------------------------------------------------- /Configs/Aestus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Aestus.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/11D33.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/11D33.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/BE-4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/BE-4.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Example_1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Example_1.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Example_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Example_2.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/FFSC.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/FFSC.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/FFSC_25_MPa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/FFSC_25_MPa.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/FFSC_40_MPa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/FFSC_40_MPa.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/FFSC_50_MPa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/FFSC_50_MPa.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Merlin-1D.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Merlin-1D.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/RD-170.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/RD-170.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/RD-170_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/RD-170_2.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/RD-170_2GG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/RD-170_2GG.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/RD-275.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/RD-275.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Raptor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Raptor.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Raptor_SL.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Raptor_SL.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/SSME.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/SSME.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/SSME_FFSC.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/SSME_FFSC.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/SSME_single_preburner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/SSME_single_preburner.cfg -------------------------------------------------------------------------------- /Configs/Cycle Analysis/Vulcain-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Cycle Analysis/Vulcain-2.cfg -------------------------------------------------------------------------------- /Configs/H2O2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/H2O2.cfg -------------------------------------------------------------------------------- /Configs/H2O2_sintin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/H2O2_sintin.cfg -------------------------------------------------------------------------------- /Configs/HM-7B.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/HM-7B.cfg -------------------------------------------------------------------------------- /Configs/LOX_CH4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/LOX_CH4.cfg -------------------------------------------------------------------------------- /Configs/LOX_LH.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/LOX_LH.cfg -------------------------------------------------------------------------------- /Configs/NK-33.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/NK-33.cfg -------------------------------------------------------------------------------- /Configs/P80.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/P80.cfg -------------------------------------------------------------------------------- /Configs/Pentaborane + H.peroxide-water solution 98%_Example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Pentaborane + H.peroxide-water solution 98%_Example.cfg -------------------------------------------------------------------------------- /Configs/RD-0146.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-0146.cfg -------------------------------------------------------------------------------- /Configs/RD-107MM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-107MM.cfg -------------------------------------------------------------------------------- /Configs/RD-161.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-161.cfg -------------------------------------------------------------------------------- /Configs/RD-170.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-170.cfg -------------------------------------------------------------------------------- /Configs/RD-170_altitude.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-170_altitude.cfg -------------------------------------------------------------------------------- /Configs/RD-275.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RD-275.cfg -------------------------------------------------------------------------------- /Configs/RL10 B2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RL10 B2.cfg -------------------------------------------------------------------------------- /Configs/RL10A3-3A.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/RL10A3-3A.cfg -------------------------------------------------------------------------------- /Configs/SSME.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/SSME.cfg -------------------------------------------------------------------------------- /Configs/Thermal Analysis/Aestus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Analysis/Aestus.cfg -------------------------------------------------------------------------------- /Configs/Thermal Analysis/HeatTransfer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Analysis/HeatTransfer.cfg -------------------------------------------------------------------------------- /Configs/Thermal Analysis/HeatTransfer_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Analysis/HeatTransfer_2.cfg -------------------------------------------------------------------------------- /Configs/Thermal Analysis/SSME_40k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Analysis/SSME_40k.cfg -------------------------------------------------------------------------------- /Configs/Thermal Analysis/SSME_40k_c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Analysis/SSME_40k_c.cfg -------------------------------------------------------------------------------- /Configs/Thermal Propulsion/H2O_1000K.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Propulsion/H2O_1000K.cfg -------------------------------------------------------------------------------- /Configs/Thermal Propulsion/H2O_2000K.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Propulsion/H2O_2000K.cfg -------------------------------------------------------------------------------- /Configs/Thermal Propulsion/H2O_3000K.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Thermal Propulsion/H2O_3000K.cfg -------------------------------------------------------------------------------- /Configs/VIKING 4B.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/VIKING 4B.cfg -------------------------------------------------------------------------------- /Configs/VIKING 4B_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/VIKING 4B_2.cfg -------------------------------------------------------------------------------- /Configs/Validation/test_case_1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Validation/test_case_1.cfg -------------------------------------------------------------------------------- /Configs/Validation/test_case_2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Validation/test_case_2.cfg -------------------------------------------------------------------------------- /Configs/Validation/test_case_3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Validation/test_case_3.cfg -------------------------------------------------------------------------------- /Configs/Validation/test_case_4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Validation/test_case_4.cfg -------------------------------------------------------------------------------- /Configs/Validation/test_case_5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Validation/test_case_5.cfg -------------------------------------------------------------------------------- /Configs/Vinci.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Vinci.cfg -------------------------------------------------------------------------------- /Configs/Vulcain-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Vulcain-2.cfg -------------------------------------------------------------------------------- /Configs/Vulcain.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/Vulcain.cfg -------------------------------------------------------------------------------- /Configs/peregrine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Configs/peregrine.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/README.md -------------------------------------------------------------------------------- /SDK/build/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/common.mk -------------------------------------------------------------------------------- /SDK/build/cycle_analysis.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/cycle_analysis.mk -------------------------------------------------------------------------------- /SDK/build/cycle_analysis_2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/cycle_analysis_2.mk -------------------------------------------------------------------------------- /SDK/build/example1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example1.mk -------------------------------------------------------------------------------- /SDK/build/example2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example2.mk -------------------------------------------------------------------------------- /SDK/build/example3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example3.mk -------------------------------------------------------------------------------- /SDK/build/example4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example4.mk -------------------------------------------------------------------------------- /SDK/build/example5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example5.mk -------------------------------------------------------------------------------- /SDK/build/example6.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example6.mk -------------------------------------------------------------------------------- /SDK/build/example_chamber.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_chamber.mk -------------------------------------------------------------------------------- /SDK/build/example_performance1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_performance1.mk -------------------------------------------------------------------------------- /SDK/build/example_performance2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_performance2.mk -------------------------------------------------------------------------------- /SDK/build/example_performance3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_performance3.mk -------------------------------------------------------------------------------- /SDK/build/example_performance4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_performance4.mk -------------------------------------------------------------------------------- /SDK/build/example_wrapper.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/example_wrapper.mk -------------------------------------------------------------------------------- /SDK/build/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/linux.mk -------------------------------------------------------------------------------- /SDK/build/linux32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/linux32.mk -------------------------------------------------------------------------------- /SDK/build/linux64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/linux64.mk -------------------------------------------------------------------------------- /SDK/build/thermal_analysis.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/thermal_analysis.mk -------------------------------------------------------------------------------- /SDK/build/win32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/win32.mk -------------------------------------------------------------------------------- /SDK/build/win64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/win64.mk -------------------------------------------------------------------------------- /SDK/build/windows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/windows.mk -------------------------------------------------------------------------------- /SDK/build/wrapper.dll.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/build/wrapper.dll.manifest.xml -------------------------------------------------------------------------------- /SDK/src/chamber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/chamber.cpp -------------------------------------------------------------------------------- /SDK/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/common.cpp -------------------------------------------------------------------------------- /SDK/src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/common.hpp -------------------------------------------------------------------------------- /SDK/src/cycle_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/cycle_analysis.cpp -------------------------------------------------------------------------------- /SDK/src/cycle_analysis_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/cycle_analysis_2.cpp -------------------------------------------------------------------------------- /SDK/src/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example1.cpp -------------------------------------------------------------------------------- /SDK/src/example2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example2.cpp -------------------------------------------------------------------------------- /SDK/src/example3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example3.cpp -------------------------------------------------------------------------------- /SDK/src/example4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example4.cpp -------------------------------------------------------------------------------- /SDK/src/example5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example5.cpp -------------------------------------------------------------------------------- /SDK/src/example6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/example6.cpp -------------------------------------------------------------------------------- /SDK/src/performance1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/performance1.cpp -------------------------------------------------------------------------------- /SDK/src/performance2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/performance2.cpp -------------------------------------------------------------------------------- /SDK/src/performance3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/performance3.cpp -------------------------------------------------------------------------------- /SDK/src/performance4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/performance4.cpp -------------------------------------------------------------------------------- /SDK/src/thermal_analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/thermal_analysis.cpp -------------------------------------------------------------------------------- /SDK/src/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper.cpp -------------------------------------------------------------------------------- /SDK/src/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper.h -------------------------------------------------------------------------------- /SDK/src/wrapper_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper_client.cpp -------------------------------------------------------------------------------- /SDK/src/wrapper_client_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper_client_1.py -------------------------------------------------------------------------------- /SDK/src/wrapper_client_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper_client_2.py -------------------------------------------------------------------------------- /SDK/src/wrapper_client_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/SDK/src/wrapper_client_3.py -------------------------------------------------------------------------------- /Scripts/H2OL_thermo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/H2OL_thermo.js -------------------------------------------------------------------------------- /Scripts/RD-170-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-170-conf.js -------------------------------------------------------------------------------- /Scripts/RD-170-conf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-170-conf2.js -------------------------------------------------------------------------------- /Scripts/RD-170.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-170.js -------------------------------------------------------------------------------- /Scripts/RD-275-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-275-conf.js -------------------------------------------------------------------------------- /Scripts/RD-275-conf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-275-conf2.js -------------------------------------------------------------------------------- /Scripts/RD-275-conf3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-275-conf3.js -------------------------------------------------------------------------------- /Scripts/RD-275.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/RD-275.js -------------------------------------------------------------------------------- /Scripts/SSME-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/SSME-conf.js -------------------------------------------------------------------------------- /Scripts/SSME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/SSME.js -------------------------------------------------------------------------------- /Scripts/Vulcain-2-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/Vulcain-2-conf.js -------------------------------------------------------------------------------- /Scripts/Vulcain-2-conf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/Vulcain-2-conf2.js -------------------------------------------------------------------------------- /Scripts/Vulcain-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/Vulcain-2.js -------------------------------------------------------------------------------- /Scripts/frozen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/frozen.js -------------------------------------------------------------------------------- /Scripts/gg_cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/gg_cycle.js -------------------------------------------------------------------------------- /Scripts/mixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/mixture.js -------------------------------------------------------------------------------- /Scripts/nested_analysis1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/nested_analysis1.js -------------------------------------------------------------------------------- /Scripts/nested_analysis2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/nested_analysis2.js -------------------------------------------------------------------------------- /Scripts/nozzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/nozzle.js -------------------------------------------------------------------------------- /Scripts/performance1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/performance1.js -------------------------------------------------------------------------------- /Scripts/performance2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/performance2.js -------------------------------------------------------------------------------- /Scripts/performance3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/performance3.js -------------------------------------------------------------------------------- /Scripts/performance4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/performance4.js -------------------------------------------------------------------------------- /Scripts/performance5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/performance5.js -------------------------------------------------------------------------------- /Scripts/propellant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/propellant.js -------------------------------------------------------------------------------- /Scripts/propellant_analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/propellant_analysis.js -------------------------------------------------------------------------------- /Scripts/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/reaction.js -------------------------------------------------------------------------------- /Scripts/reaction_products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/reaction_products.js -------------------------------------------------------------------------------- /Scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Scripts/utils.js -------------------------------------------------------------------------------- /Wrapper/lite/Makefile_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/Makefile_gcc -------------------------------------------------------------------------------- /Wrapper/lite/Makefile_win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/Makefile_win -------------------------------------------------------------------------------- /Wrapper/lite/wrapper_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/wrapper_client.cpp -------------------------------------------------------------------------------- /Wrapper/lite/wrapper_client_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/wrapper_client_1.py -------------------------------------------------------------------------------- /Wrapper/lite/wrapper_client_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/wrapper_client_2.py -------------------------------------------------------------------------------- /Wrapper/lite/wrapper_client_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/lite/wrapper_client_3.py -------------------------------------------------------------------------------- /Wrapper/standard/Makefile_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/Makefile_gcc -------------------------------------------------------------------------------- /Wrapper/standard/Makefile_win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/Makefile_win -------------------------------------------------------------------------------- /Wrapper/standard/Octave/rpa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/Octave/rpa.cpp -------------------------------------------------------------------------------- /Wrapper/standard/Octave/test-rpa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/Octave/test-rpa.m -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client.cpp -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client_1.py -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client_2.py -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client_3.py -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client_4.py -------------------------------------------------------------------------------- /Wrapper/standard/wrapper_client_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpre/RPA-Examples/HEAD/Wrapper/standard/wrapper_client_5.py --------------------------------------------------------------------------------