├── .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 │ ├── load_cycles.type.File.xml │ ├── load_cycles.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ └── load_cycle.mat.type.File.xml │ ├── main_sim_battery_system.m.type.File.xml │ ├── parameters.type.File.xml │ ├── parameters.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── LSA_parameters.m.type.File.xml │ │ ├── TempSens_parameters.m.type.File.xml │ │ ├── cell_parameters_NCR18650PF_2RC.m.type.File.xml │ │ ├── cell_parameters_NCR18650PF_4RC.m.type.File.xml │ │ ├── geometric_system_parameters.m.type.File.xml │ │ ├── heat_transfer_parameters.m.type.File.xml │ │ ├── system_initialization.m.type.File.xml │ │ └── system_parameters.m.type.File.xml │ ├── sim_battery_system.slx.type.File.xml │ ├── simulation_results.type.File.xml │ ├── simulation_results.type.File │ │ └── 1.type.DIR_SIGNIFIER.xml │ ├── subroutines.type.File.xml │ └── subroutines.type.File │ │ ├── 1.type.DIR_SIGNIFIER.xml │ │ ├── calc_LSA_bins.m.type.File.xml │ │ ├── calc_heat_transfer_matrix.m.type.File.xml │ │ ├── create_sensor_def_matrix.m.type.File.xml │ │ ├── deviations_stat.m.type.File.xml │ │ ├── get_save_folder_and_time.m.type.File.xml │ │ ├── plot_system_geometry.m.type.File.xml │ │ ├── plot_thermal_sys_archit.m.type.File.xml │ │ ├── plotting.m.type.File.xml │ │ ├── plotting_LSA.m.type.File.xml │ │ ├── saving.m.type.File.xml │ │ └── stop_function.m.type.File.xml ├── Root.type.ProjectPath │ ├── 381930e2-c073-43b1-85ce-930a2a44bece.type.Reference.xml │ ├── 5c402baf-0166-4eff-890e-f491a8a3afc6.type.Reference.xml │ ├── 9546a4f7-5673-4b26-8f71-26e94ef0e504.type.Reference.xml │ ├── cb85409d-f9b4-4663-9755-4526a2839a81.type.Reference.xml │ └── f18c7546-3ab2-40f6-8c1e-ec00670af42a.type.Reference.xml └── uuid-7027b0fb-6d3d-40f1-b70b-e83d124f9511.xml ├── load_cycles └── load_cycle.mat ├── main_sim_battery_system.m ├── parameters ├── LSA_parameters.m ├── TempSens_parameters.m ├── ambient_temperature_parameters.m ├── cell_parameters_NCR18650PF_2RC.m ├── cell_parameters_NCR18650PF_4RC.m ├── geometric_system_parameters.m ├── heat_transfer_parameters.m ├── system_initialization.m └── system_parameters.m ├── sim_battery_system.prj ├── sim_battery_system.slx ├── simulation_results └── .gitignore └── subroutines ├── calc_LSA_bins.m ├── calc_heat_transfer_matrix.m ├── create_sensor_def_matrix.m ├── deviations_stat.m ├── get_save_folder_and_time.m ├── plot_system_geometry.m ├── plot_thermal_sys_archit.m ├── plotting.m ├── plotting_LSA.m ├── saving.m └── stop_function.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/README.md -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Extensions.type.Root/DependencyAnalysis.type.Extension/ExternalFiles.type.Extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/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_battery_system/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/load_cycles.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/load_cycles.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/load_cycles.type.File/load_cycle.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/load_cycles.type.File/load_cycle.mat.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/main_sim_battery_system.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/main_sim_battery_system.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/LSA_parameters.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/LSA_parameters.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/TempSens_parameters.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/TempSens_parameters.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/cell_parameters_NCR18650PF_2RC.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/cell_parameters_NCR18650PF_2RC.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/cell_parameters_NCR18650PF_4RC.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/cell_parameters_NCR18650PF_4RC.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/geometric_system_parameters.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/geometric_system_parameters.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/heat_transfer_parameters.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/heat_transfer_parameters.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/system_initialization.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/system_initialization.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/system_parameters.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/parameters.type.File/system_parameters.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/sim_battery_system.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/sim_battery_system.slx.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/simulation_results.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/simulation_results.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/calc_LSA_bins.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/calc_LSA_bins.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/calc_heat_transfer_matrix.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/calc_heat_transfer_matrix.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/create_sensor_def_matrix.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/create_sensor_def_matrix.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/deviations_stat.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/deviations_stat.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/get_save_folder_and_time.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/get_save_folder_and_time.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plot_system_geometry.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plot_system_geometry.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plot_thermal_sys_archit.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plot_thermal_sys_archit.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plotting.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plotting.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plotting_LSA.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/plotting_LSA.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/saving.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/saving.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/stop_function.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.Files/subroutines.type.File/stop_function.m.type.File.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/381930e2-c073-43b1-85ce-930a2a44bece.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/5c402baf-0166-4eff-890e-f491a8a3afc6.type.Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/.SimulinkProject/Root.type.ProjectPath/5c402baf-0166-4eff-890e-f491a8a3afc6.type.Reference.xml -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/9546a4f7-5673-4b26-8f71-26e94ef0e504.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/cb85409d-f9b4-4663-9755-4526a2839a81.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/Root.type.ProjectPath/f18c7546-3ab2-40f6-8c1e-ec00670af42a.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/.SimulinkProject/uuid-7027b0fb-6d3d-40f1-b70b-e83d124f9511.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation_framework/load_cycles/load_cycle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/load_cycles/load_cycle.mat -------------------------------------------------------------------------------- /simulation_framework/main_sim_battery_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/main_sim_battery_system.m -------------------------------------------------------------------------------- /simulation_framework/parameters/LSA_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/LSA_parameters.m -------------------------------------------------------------------------------- /simulation_framework/parameters/TempSens_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/TempSens_parameters.m -------------------------------------------------------------------------------- /simulation_framework/parameters/ambient_temperature_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/ambient_temperature_parameters.m -------------------------------------------------------------------------------- /simulation_framework/parameters/cell_parameters_NCR18650PF_2RC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/cell_parameters_NCR18650PF_2RC.m -------------------------------------------------------------------------------- /simulation_framework/parameters/cell_parameters_NCR18650PF_4RC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/cell_parameters_NCR18650PF_4RC.m -------------------------------------------------------------------------------- /simulation_framework/parameters/geometric_system_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/geometric_system_parameters.m -------------------------------------------------------------------------------- /simulation_framework/parameters/heat_transfer_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/heat_transfer_parameters.m -------------------------------------------------------------------------------- /simulation_framework/parameters/system_initialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/system_initialization.m -------------------------------------------------------------------------------- /simulation_framework/parameters/system_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/parameters/system_parameters.m -------------------------------------------------------------------------------- /simulation_framework/sim_battery_system.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/sim_battery_system.prj -------------------------------------------------------------------------------- /simulation_framework/sim_battery_system.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/sim_battery_system.slx -------------------------------------------------------------------------------- /simulation_framework/simulation_results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/simulation_results/.gitignore -------------------------------------------------------------------------------- /simulation_framework/subroutines/calc_LSA_bins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/calc_LSA_bins.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/calc_heat_transfer_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/calc_heat_transfer_matrix.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/create_sensor_def_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/create_sensor_def_matrix.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/deviations_stat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/deviations_stat.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/get_save_folder_and_time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/get_save_folder_and_time.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/plot_system_geometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/plot_system_geometry.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/plot_thermal_sys_archit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/plot_thermal_sys_archit.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/plotting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/plotting.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/plotting_LSA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/plotting_LSA.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/saving.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/saving.m -------------------------------------------------------------------------------- /simulation_framework/subroutines/stop_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/sim_battery_system/HEAD/simulation_framework/subroutines/stop_function.m --------------------------------------------------------------------------------