├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── simulation_framework ├── .SimulinkProject ├── Extensions.type.Root │ └── DependencyAnalysis.type.Extension │ │ └── ExternalFiles.type.Extension.xml ├── Project.xml ├── ProjectData.type.Info.xml ├── Root.type.Categories │ ├── FileClassCategory.type.Category.xml │ └── FileClassCategory.type.Category │ │ ├── artifact.type.Label.xml │ │ ├── convenience.type.Label.xml │ │ ├── derived.type.Label.xml │ │ ├── design.type.Label.xml │ │ ├── none.type.Label.xml │ │ ├── other.type.Label.xml │ │ └── test.type.Label.xml ├── Root.type.Files │ ├── BTMS_simulation_results.type.File.xml │ ├── BTMS_simulation_results.type.File │ │ └── 1.type.DIR_SIGNIFIER.xml │ ├── battery_system_simulation.type.File.xml │ ├── battery_system_simulation.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── parameters.type.File.xml │ │ ├── parameters.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ └── cell_parameters_NCR18650PF.m.type.File.xml │ │ ├── subroutines.type.File.xml │ │ └── subroutines.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ └── deviations_stat.m.type.File.xml │ ├── coolprop.type.File.xml │ ├── coolprop.type.File │ │ └── 1.type.DIR_SIGNIFIER.xml │ ├── functions_BTMS_sim.type.File.xml │ ├── functions_BTMS_sim.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── SysPara_DeviationMap.m.type.File.xml │ │ ├── calc_alpha_channel.m.type.File.xml │ │ ├── calc_heat_transfer_matrix.m.type.File.xml │ │ ├── calc_total_A_heat_transfer.m.type.File.xml │ │ ├── check_results_mod.m.type.File.xml │ │ ├── check_results_sys.m.type.File.xml │ │ ├── create_channel_def_matrix.m.type.File.xml │ │ ├── expand_config.m.type.File.xml │ │ ├── get_BTMS_channel_cross_section.m.type.File.xml │ │ ├── get_BTMS_channel_length.m.type.File.xml │ │ ├── get_IDs_cells_channels.m.type.File.xml │ │ ├── get_fluid_params_coolprop.m.type.File.xml │ │ ├── main_create_BTMS_config.m.type.File.xml │ │ ├── plot_system_architecture.m.type.File.xml │ │ ├── save_sim_result.m.type.File.xml │ │ ├── sim_module.m.type.File.xml │ │ ├── sim_system.m.type.File.xml │ │ ├── special_heat_transfer_positons.m.type.File.xml │ │ └── starting_layers_mod_in.m.type.File.xml │ ├── functions_sys_config.type.File.xml │ ├── functions_sys_config.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── append_configs.m.type.File.xml │ │ ├── append_configs_step_1.m.type.File.xml │ │ ├── calc_cell_surface.m.type.File.xml │ │ ├── check_feasible_configs.m.type.File.xml │ │ ├── check_for_failed_tests.m.type.File.xml │ │ ├── check_validity_BTMS_config.m.type.File.xml │ │ ├── epe_distribution.m.type.File.xml │ │ ├── get_cell_mass.m.type.File.xml │ │ ├── get_config_ID.m.type.File.xml │ │ ├── join_passed_structs.m.type.File.xml │ │ ├── mod_test_dimensions_no_BTMS.m.type.File.xml │ │ ├── mod_test_energy.m.type.File.xml │ │ ├── preallocate_configs_1_mod_all.m.type.File.xml │ │ ├── preallocate_configs_2_mod.m.type.File.xml │ │ ├── preallocate_configs_3_sys.m.type.File.xml │ │ ├── preallocate_configs_4_sys.m.type.File.xml │ │ ├── preallocate_configs_5_BTMS.m.type.File.xml │ │ ├── preallocate_configs_6_BTMS.m.type.File.xml │ │ ├── sys_test_dimensions_no_BTMS.m.type.File.xml │ │ ├── sys_test_energy.m.type.File.xml │ │ └── test_dimensions_BTMS.m.type.File.xml │ ├── input_and_parameters.type.File.xml │ ├── input_and_parameters.type.File │ │ ├── 01_cell_data.type.File.xml │ │ ├── 01_cell_data.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ ├── Cyl_18650.m.type.File.xml │ │ │ ├── Cyl_21700.m.type.File.xml │ │ │ ├── Pouch_74Ah.m.type.File.xml │ │ │ ├── Pris_BEV2.m.type.File.xml │ │ │ ├── Pris_PHEV2.m.type.File.xml │ │ │ └── scale_BatPara.m.type.File.xml │ │ ├── 02_system_data.type.File.xml │ │ ├── 02_system_data.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ └── system_para_BTMS_sim.m.type.File.xml │ │ ├── 03_BTMS_config.type.File.xml │ │ ├── 03_BTMS_config.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ ├── liquid_bottom.m.type.File.xml │ │ │ ├── liquid_bottom_xdir.m.type.File.xml │ │ │ ├── liquid_full_system.m.type.File.xml │ │ │ └── liquid_inside_xyz_dir.m.type.File.xml │ │ ├── 04_system_specifications.type.File.xml │ │ ├── 04_system_specifications.type.File │ │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ │ ├── system_specifcations_Pris_BEV2.m.type.File.xml │ │ │ ├── system_specifcations_Pris_PHEV2.m.type.File.xml │ │ │ └── system_specifcations_cyl_Pouch.m.type.File.xml │ │ └── 1.type.DIR_SIGNIFIER.xml │ ├── main_sim_BTMS_1_system_setup.m.type.File.xml │ ├── main_sim_BTMS_2_system_simulation.m.type.File.xml │ └── sim_BTMS.slx.type.File.xml ├── Root.type.ProjectPath │ ├── 10dd7840-d1ae-432e-abd9-7d8aaa6395be.type.Reference.xml │ ├── 1d14a10c-76b3-4562-bd39-37520eaa6f79.type.Reference.xml │ ├── 21d971dc-559a-4209-8f61-fabba3eaf72c.type.Reference.xml │ ├── 55cf8928-b2e3-430f-9a5d-ba6af04452df.type.Reference.xml │ ├── 7460d3ea-b824-4271-bc81-c32403fc3954.type.Reference.xml │ ├── b1d6f92e-9f91-4ff2-9504-a1bc95925006.type.Reference.xml │ ├── c0ffe6a8-d714-4e92-a8ad-63211f5ef43d.type.Reference.xml │ ├── c9df657b-97ab-4ab8-8fa3-e10514f22919.type.Reference.xml │ ├── cb6c7542-0c4e-4c10-ad5a-b6fb7cccb769.type.Reference.xml │ ├── cc59fa76-3771-43bc-99a2-f7de887f811c.type.Reference.xml │ ├── d3ab7a4d-ec9f-43ee-89fc-09cbe2615b73.type.Reference.xml │ ├── d7bc00dd-486c-4c4f-8908-0f7ec49a1764.type.Reference.xml │ └── f9e77881-69b9-4568-9bc7-63ba9c0a6c25.type.Reference.xml └── uuid-9c6b8ba4-db12-4534-98c9-637a8600cf92.xml ├── BTMS_simulation_results └── .gitignore ├── Sim_BTMS.prj ├── battery_system_simulation ├── parameters │ └── cell_parameters_NCR18650PF.m └── subroutines │ └── deviations_stat.m ├── coolprop └── .gitignore ├── functions_BTMS_sim ├── SysPara_DeviationMap.m ├── calc_alpha_channel.m ├── calc_heat_transfer_matrix.m ├── calc_total_A_heat_transfer.m ├── check_results_mod.m ├── check_results_sys.m ├── create_channel_def_matrix.m ├── expand_config.m ├── get_BTMS_channel_cross_section.m ├── get_BTMS_channel_length.m ├── get_IDs_cells_channels.m ├── get_fluid_params_coolprop.m ├── main_create_BTMS_config.m ├── plot_system_architecture.m ├── save_sim_result.m ├── sim_module.m ├── sim_system.m ├── special_heat_transfer_positons.m └── starting_layers_mod_in.m ├── functions_sys_config ├── append_configs.m ├── append_configs_step_1.m ├── calc_cell_surface.m ├── check_feasible_configs.m ├── check_for_failed_tests.m ├── check_validity_BTMS_config.m ├── epe_distribution.m ├── get_cell_mass.m ├── get_config_ID.m ├── join_passed_structs.m ├── mod_test_dimensions_no_BTMS.m ├── mod_test_energy.m ├── preallocate_configs_1_mod_all.m ├── preallocate_configs_2_mod.m ├── preallocate_configs_3_sys.m ├── preallocate_configs_4_sys.m ├── preallocate_configs_5_BTMS.m ├── preallocate_configs_6_BTMS.m ├── sys_test_dimensions_no_BTMS.m ├── sys_test_energy.m └── test_dimensions_BTMS.m ├── input_and_parameters ├── 01_cell_data │ ├── Cyl_18650.m │ ├── Cyl_21700.m │ ├── Pouch_74Ah.m │ ├── Pris_BEV2.m │ ├── Pris_PHEV2.m │ └── scale_BatPara.m ├── 02_system_data │ └── system_para_BTMS_sim.m ├── 03_BTMS_config │ ├── liquid_bottom.m │ ├── liquid_bottom_xdir.m │ ├── liquid_full_system.m │ ├── liquid_inside_18650.m │ ├── liquid_inside_21700.m │ ├── liquid_inside_Pouch.m │ └── liquid_inside_xyz_dir.m └── 04_system_specifications │ ├── system_specifcations_Pouch_inside.m │ ├── system_specifcations_Pris_BEV2.m │ ├── system_specifcations_Pris_PHEV2.m │ ├── system_specifcations_cyl_Pouch.m │ └── system_specifcations_cyl_inside.m ├── main_sim_BTMS_1_system_setup.m ├── main_sim_BTMS_2_system_simulation.m └── sim_BTMS.slx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/README.md -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Extensions.type.Root/DependencyAnalysis.type.Extension/ExternalFiles.type.Extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Extensions.type.Root/DependencyAnalysis.type.Extension/ExternalFiles.type.Extension.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/ProjectData.type.Info.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/BTMS_simulation_results.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/BTMS_simulation_results.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/parameters.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/parameters.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/parameters.type.File/cell_parameters_NCR18650PF.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/parameters.type.File/cell_parameters_NCR18650PF.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/subroutines.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/subroutines.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/subroutines.type.File/deviations_stat.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/battery_system_simulation.type.File/subroutines.type.File/deviations_stat.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/coolprop.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/coolprop.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/SysPara_DeviationMap.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/SysPara_DeviationMap.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_alpha_channel.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_alpha_channel.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_heat_transfer_matrix.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_heat_transfer_matrix.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_total_A_heat_transfer.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/calc_total_A_heat_transfer.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/check_results_mod.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/check_results_mod.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/check_results_sys.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/check_results_sys.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/create_channel_def_matrix.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/create_channel_def_matrix.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/expand_config.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/expand_config.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_BTMS_channel_cross_section.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_BTMS_channel_cross_section.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_BTMS_channel_length.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_BTMS_channel_length.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_IDs_cells_channels.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_IDs_cells_channels.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_fluid_params_coolprop.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/get_fluid_params_coolprop.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/main_create_BTMS_config.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/main_create_BTMS_config.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/plot_system_architecture.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/plot_system_architecture.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/save_sim_result.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/save_sim_result.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/sim_module.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/sim_module.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/sim_system.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/sim_system.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/special_heat_transfer_positons.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/special_heat_transfer_positons.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/starting_layers_mod_in.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_BTMS_sim.type.File/starting_layers_mod_in.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/append_configs.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/append_configs.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/append_configs_step_1.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/append_configs_step_1.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/calc_cell_surface.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/calc_cell_surface.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_feasible_configs.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_feasible_configs.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_for_failed_tests.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_for_failed_tests.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_validity_BTMS_config.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/check_validity_BTMS_config.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/epe_distribution.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/epe_distribution.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/get_cell_mass.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/get_cell_mass.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/get_config_ID.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/get_config_ID.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/join_passed_structs.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/join_passed_structs.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/mod_test_dimensions_no_BTMS.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/mod_test_dimensions_no_BTMS.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/mod_test_energy.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/mod_test_energy.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_1_mod_all.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_1_mod_all.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_2_mod.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_2_mod.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_3_sys.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_3_sys.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_4_sys.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_4_sys.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_5_BTMS.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_5_BTMS.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_6_BTMS.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/preallocate_configs_6_BTMS.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/sys_test_dimensions_no_BTMS.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/sys_test_dimensions_no_BTMS.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/sys_test_energy.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/sys_test_energy.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/test_dimensions_BTMS.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/functions_sys_config.type.File/test_dimensions_BTMS.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Cyl_18650.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Cyl_18650.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Cyl_21700.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Cyl_21700.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pouch_74Ah.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pouch_74Ah.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pris_BEV2.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pris_BEV2.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pris_PHEV2.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/Pris_PHEV2.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/scale_BatPara.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/01_cell_data.type.File/scale_BatPara.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/02_system_data.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/02_system_data.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/02_system_data.type.File/system_para_BTMS_sim.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/02_system_data.type.File/system_para_BTMS_sim.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_bottom.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_bottom.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_bottom_xdir.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_bottom_xdir.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_full_system.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_full_system.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_inside_xyz_dir.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/03_BTMS_config.type.File/liquid_inside_xyz_dir.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_Pris_BEV2.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_Pris_BEV2.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_Pris_PHEV2.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_Pris_PHEV2.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_cyl_Pouch.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/04_system_specifications.type.File/system_specifcations_cyl_Pouch.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/input_and_parameters.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/main_sim_BTMS_1_system_setup.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/main_sim_BTMS_1_system_setup.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/main_sim_BTMS_2_system_simulation.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/main_sim_BTMS_2_system_simulation.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/sim_BTMS.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/sim_BTMS.slx.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/10dd7840-d1ae-432e-abd9-7d8aaa6395be.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/1d14a10c-76b3-4562-bd39-37520eaa6f79.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/1d14a10c-76b3-4562-bd39-37520eaa6f79.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/21d971dc-559a-4209-8f61-fabba3eaf72c.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/21d971dc-559a-4209-8f61-fabba3eaf72c.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/55cf8928-b2e3-430f-9a5d-ba6af04452df.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/55cf8928-b2e3-430f-9a5d-ba6af04452df.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/7460d3ea-b824-4271-bc81-c32403fc3954.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/7460d3ea-b824-4271-bc81-c32403fc3954.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/b1d6f92e-9f91-4ff2-9504-a1bc95925006.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/c0ffe6a8-d714-4e92-a8ad-63211f5ef43d.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/c9df657b-97ab-4ab8-8fa3-e10514f22919.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/c9df657b-97ab-4ab8-8fa3-e10514f22919.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/cb6c7542-0c4e-4c10-ad5a-b6fb7cccb769.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/cc59fa76-3771-43bc-99a2-f7de887f811c.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/d3ab7a4d-ec9f-43ee-89fc-09cbe2615b73.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/d7bc00dd-486c-4c4f-8908-0f7ec49a1764.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/f9e77881-69b9-4568-9bc7-63ba9c0a6c25.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/f9e77881-69b9-4568-9bc7-63ba9c0a6c25.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/uuid-9c6b8ba4-db12-4534-98c9-637a8600cf92.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/BTMS_simulation_results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/BTMS_simulation_results/.gitignore -------------------------------------------------------------------------------- /simulation_framework/Sim_BTMS.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/Sim_BTMS.prj -------------------------------------------------------------------------------- /simulation_framework/battery_system_simulation/parameters/cell_parameters_NCR18650PF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/battery_system_simulation/parameters/cell_parameters_NCR18650PF.m -------------------------------------------------------------------------------- /simulation_framework/battery_system_simulation/subroutines/deviations_stat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/battery_system_simulation/subroutines/deviations_stat.m -------------------------------------------------------------------------------- /simulation_framework/coolprop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/coolprop/.gitignore -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/SysPara_DeviationMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/SysPara_DeviationMap.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/calc_alpha_channel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/calc_alpha_channel.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/calc_heat_transfer_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/calc_heat_transfer_matrix.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/calc_total_A_heat_transfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/calc_total_A_heat_transfer.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/check_results_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/check_results_mod.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/check_results_sys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/check_results_sys.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/create_channel_def_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/create_channel_def_matrix.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/expand_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/expand_config.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/get_BTMS_channel_cross_section.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/get_BTMS_channel_cross_section.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/get_BTMS_channel_length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/get_BTMS_channel_length.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/get_IDs_cells_channels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/get_IDs_cells_channels.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/get_fluid_params_coolprop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/get_fluid_params_coolprop.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/main_create_BTMS_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/main_create_BTMS_config.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/plot_system_architecture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/plot_system_architecture.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/save_sim_result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/save_sim_result.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/sim_module.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/sim_module.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/sim_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/sim_system.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/special_heat_transfer_positons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/special_heat_transfer_positons.m -------------------------------------------------------------------------------- /simulation_framework/functions_BTMS_sim/starting_layers_mod_in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_BTMS_sim/starting_layers_mod_in.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/append_configs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/append_configs.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/append_configs_step_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/append_configs_step_1.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/calc_cell_surface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/calc_cell_surface.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/check_feasible_configs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/check_feasible_configs.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/check_for_failed_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/check_for_failed_tests.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/check_validity_BTMS_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/check_validity_BTMS_config.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/epe_distribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/epe_distribution.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/get_cell_mass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/get_cell_mass.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/get_config_ID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/get_config_ID.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/join_passed_structs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/join_passed_structs.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/mod_test_dimensions_no_BTMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/mod_test_dimensions_no_BTMS.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/mod_test_energy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/mod_test_energy.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_1_mod_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_1_mod_all.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_2_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_2_mod.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_3_sys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_3_sys.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_4_sys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_4_sys.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_5_BTMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_5_BTMS.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/preallocate_configs_6_BTMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/preallocate_configs_6_BTMS.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/sys_test_dimensions_no_BTMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/sys_test_dimensions_no_BTMS.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/sys_test_energy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/sys_test_energy.m -------------------------------------------------------------------------------- /simulation_framework/functions_sys_config/test_dimensions_BTMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/functions_sys_config/test_dimensions_BTMS.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/Cyl_18650.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/Cyl_18650.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/Cyl_21700.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/Cyl_21700.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/Pouch_74Ah.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/Pouch_74Ah.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/Pris_BEV2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/Pris_BEV2.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/Pris_PHEV2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/Pris_PHEV2.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/01_cell_data/scale_BatPara.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/01_cell_data/scale_BatPara.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/02_system_data/system_para_BTMS_sim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/02_system_data/system_para_BTMS_sim.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_bottom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_bottom.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_bottom_xdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_bottom_xdir.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_full_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_full_system.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_18650.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_18650.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_21700.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_21700.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_Pouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_Pouch.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_xyz_dir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/03_BTMS_config/liquid_inside_xyz_dir.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pouch_inside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pouch_inside.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pris_BEV2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pris_BEV2.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pris_PHEV2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_Pris_PHEV2.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_cyl_Pouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_cyl_Pouch.m -------------------------------------------------------------------------------- /simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_cyl_inside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/input_and_parameters/04_system_specifications/system_specifcations_cyl_inside.m -------------------------------------------------------------------------------- /simulation_framework/main_sim_BTMS_1_system_setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/main_sim_BTMS_1_system_setup.m -------------------------------------------------------------------------------- /simulation_framework/main_sim_BTMS_2_system_simulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/main_sim_BTMS_2_system_simulation.m -------------------------------------------------------------------------------- /simulation_framework/sim_BTMS.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_BTMS/HEAD/simulation_framework/sim_BTMS.slx --------------------------------------------------------------------------------