├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── chemistry_conversions.py ├── config.py ├── data_processing.py ├── inventory.py ├── requirements.txt ├── setup.cfg ├── step1_unpack.py ├── step2_preprocess.py ├── step2a_transform.py ├── step2b_basis.py ├── step2c_project.py ├── step3_train.py ├── step4_plot.py ├── step5_export.py ├── test_data_processing.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/README.md -------------------------------------------------------------------------------- /chemistry_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/chemistry_conversions.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/config.py -------------------------------------------------------------------------------- /data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/data_processing.py -------------------------------------------------------------------------------- /inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/inventory.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/setup.cfg -------------------------------------------------------------------------------- /step1_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step1_unpack.py -------------------------------------------------------------------------------- /step2_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step2_preprocess.py -------------------------------------------------------------------------------- /step2a_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step2a_transform.py -------------------------------------------------------------------------------- /step2b_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step2b_basis.py -------------------------------------------------------------------------------- /step2c_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step2c_project.py -------------------------------------------------------------------------------- /step3_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step3_train.py -------------------------------------------------------------------------------- /step4_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step4_plot.py -------------------------------------------------------------------------------- /step5_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/step5_export.py -------------------------------------------------------------------------------- /test_data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/test_data_processing.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willcox-Research-Group/ROM-OpInf-Combustion-2D/HEAD/utils.py --------------------------------------------------------------------------------