├── .gitignore ├── Data ├── CellInputData.mat ├── Look_up_tables_32Ah_V2.mat ├── MaterialsDictionary.xlsx ├── combined_cycle_data.mat ├── keepVars.mat ├── pca_results.mat ├── rad_20C_tune.mat └── ref_20C_tune.mat ├── Examples ├── ExampleOrientationPlotData.mat └── ExampleOutput.mat ├── Report └── Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs.pdf ├── full_model.slx ├── full_model_init.m ├── order_reduction_model.slx ├── order_reduction_script.m ├── plot_grid.m ├── plot_lines.m ├── plot_volumes.m ├── plotting_scripts.m └── save_video.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/CellInputData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/CellInputData.mat -------------------------------------------------------------------------------- /Data/Look_up_tables_32Ah_V2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/Look_up_tables_32Ah_V2.mat -------------------------------------------------------------------------------- /Data/MaterialsDictionary.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/MaterialsDictionary.xlsx -------------------------------------------------------------------------------- /Data/combined_cycle_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/combined_cycle_data.mat -------------------------------------------------------------------------------- /Data/keepVars.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/keepVars.mat -------------------------------------------------------------------------------- /Data/pca_results.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/pca_results.mat -------------------------------------------------------------------------------- /Data/rad_20C_tune.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/rad_20C_tune.mat -------------------------------------------------------------------------------- /Data/ref_20C_tune.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Data/ref_20C_tune.mat -------------------------------------------------------------------------------- /Examples/ExampleOrientationPlotData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Examples/ExampleOrientationPlotData.mat -------------------------------------------------------------------------------- /Examples/ExampleOutput.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Examples/ExampleOutput.mat -------------------------------------------------------------------------------- /Report/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/Report/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs.pdf -------------------------------------------------------------------------------- /full_model.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/full_model.slx -------------------------------------------------------------------------------- /full_model_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/full_model_init.m -------------------------------------------------------------------------------- /order_reduction_model.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/order_reduction_model.slx -------------------------------------------------------------------------------- /order_reduction_script.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/order_reduction_script.m -------------------------------------------------------------------------------- /plot_grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/plot_grid.m -------------------------------------------------------------------------------- /plot_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/plot_lines.m -------------------------------------------------------------------------------- /plot_volumes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/plot_volumes.m -------------------------------------------------------------------------------- /plotting_scripts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/plotting_scripts.m -------------------------------------------------------------------------------- /save_video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJThomas29/Reduced-Order-Thermal-Simulation-of-Lithium-Ion-Battery-Packs/HEAD/save_video.m --------------------------------------------------------------------------------