├── .gitattributes ├── .gitignore ├── Experiment_Data ├── SimSmartFortwoExperiment.m └── SmartFortwo_Experiments.mat ├── LIB ├── Auxiliaries │ ├── DCAC_Converter │ │ ├── DCAC_Converter.slx │ │ ├── Data │ │ │ ├── DCAC_Converter.svg │ │ │ └── InitPlotInverter.m │ │ └── ParaFile_DCAC_Converter.m │ ├── DCDC_Converter │ │ ├── DATA │ │ │ ├── DCDC_Converter.svg │ │ │ ├── Extended │ │ │ │ ├── Berechnung Wirkungsgradkennlinie DCDC-Wandler.xlsx │ │ │ │ ├── Simulationsergebnisse │ │ │ │ │ ├── Validierung DCDC-Modell.mat │ │ │ │ │ ├── Variation Leistung.mat │ │ │ │ │ └── Variation Spannung.mat │ │ │ │ └── Validierung DCDC-Wandler-Modell.xlsx │ │ │ ├── InitDCDCConverter.m │ │ │ └── Kennlinie_DCDC.mat │ │ └── DCDC_Converter.slx │ ├── LIB_Auxiliaries.slx │ └── Simple_Auxiliary │ │ ├── Data │ │ └── Simple_Auxiliary.svg │ │ └── Simple_Auxiliary.slx ├── Brake_System │ ├── Brake_System_Completion_of_Recuperation │ │ ├── Brake_System_Completion_of_Recuperation.slx │ │ └── Data │ │ │ └── Brake_System_Completion_of_Recuperation.svg │ └── LIB_Brake_System.slx ├── Control_Unit │ ├── Control_Unit_Simple │ │ ├── Control_Unit_Simple.slx │ │ └── Data │ │ │ └── Control_Unit_Simple.svg │ └── LIB_Control_Unit.slx ├── Driver_and_Environment │ ├── Driver │ │ ├── Driver_PI │ │ │ ├── Data │ │ │ │ ├── Driver_PI.svg │ │ │ │ └── init_DriverPI.m │ │ │ └── Driver_PI.slx │ │ └── LIB_Driver.slx │ ├── Driving_Cycle │ │ ├── Lib_Driving_Cycles.slx │ │ └── Longitudinal_DrivingCycles │ │ │ ├── Data │ │ │ ├── AppendNonuniformTimeseries_inDrivingcycle.m │ │ │ ├── EUROPE_ARTEMIS_MOTORWAY_130.mat │ │ │ ├── EUROPE_ARTEMIS_MOTORWAY_150.mat │ │ │ ├── EUROPE_ARTEMIS_ROAD.mat │ │ │ ├── EUROPE_ARTEMIS_URBAN.mat │ │ │ ├── EUROPE_City.mat │ │ │ ├── EUROPE_EUDC.mat │ │ │ ├── EUROPE_NEDC.mat │ │ │ ├── EUROPE_UDC.mat │ │ │ ├── JAPAN_10_15_MODE.mat │ │ │ ├── JAPAN_10_MODE.mat │ │ │ ├── JAPAN_10_MODE_3.mat │ │ │ ├── JAPAN_11_MODE.mat │ │ │ ├── JAPAN_11_MODE_4.mat │ │ │ ├── JAPAN_15_MODE.mat │ │ │ ├── Longitudinal_DrivingCycle.PNG │ │ │ ├── Longitudinal_DrivingCycles.svg │ │ │ ├── USA_CITY_I.mat │ │ │ ├── USA_CITY_II.mat │ │ │ ├── USA_FTP_72.mat │ │ │ ├── USA_FTP_75.mat │ │ │ ├── USA_FTP_HIGHWAY.mat │ │ │ ├── USA_NECC.mat │ │ │ ├── USA_SFTP_SC03.mat │ │ │ ├── USA_SFTP_US06.mat │ │ │ ├── WLTP_class_1.mat │ │ │ ├── WLTP_class_2.mat │ │ │ ├── WLTP_class_3.mat │ │ │ └── init_driving_cycle.m │ │ │ └── Longitudinal_DrivingCycles.slx │ ├── Environment │ │ ├── Constant_Environment │ │ │ ├── Constant_Environment.slx │ │ │ └── Data │ │ │ │ └── Constant_Environment.svg │ │ └── LIB_Environment.slx │ └── LIB_Driver_and_Environment.slx ├── Energy_Source │ ├── LIB_Energy_Source.slx │ └── Power_Source │ │ ├── Constant_Power_Source.slx │ │ └── Data │ │ └── Constant_Power_Source.svg ├── Engines │ ├── Electric_Drive │ │ ├── Electric_Drive_Simple_Efficiency │ │ │ ├── Data │ │ │ │ └── Electric_Drive_Simple_Efficiency.svg │ │ │ └── Electric_Drive_Simple_Efficiency.slx │ │ ├── Electric_Drive_Tabled_Consumption │ │ │ ├── Data │ │ │ │ ├── ConvertToMonotonousMap.m │ │ │ │ ├── Electric_Drive_Tabled_Consumption.svg │ │ │ │ ├── Full_Load_Mot.mat │ │ │ │ ├── Leistungskennfeld_Mot.mat │ │ │ │ ├── Min_Load_Mot.mat │ │ │ │ ├── PlotMaps.m │ │ │ │ ├── init_Electric_Drive_Tabled_Consumption.m │ │ │ │ ├── inittest.m │ │ │ │ └── invert3dMap.m │ │ │ └── Electric_Drive_Tabled_Consumption.slx │ │ └── LIB_Electric_Drive.slx │ └── LIB_Engines.slx ├── FTM_LIB.slx ├── Gearbox │ ├── Gear_Stage │ │ ├── Data │ │ │ └── Gear_Stage.svg │ │ └── Gear_Stage.slx │ └── LIB_Gearbox.slx ├── Utilities │ ├── Analysis │ │ ├── Electrical_Vehicle_Data_Calculation │ │ │ └── Electrical_Vehicle_Data_Calculation.slx │ │ └── LIB_Analysis.slx │ ├── BUS │ │ ├── BUS_Subsystem │ │ │ ├── BUS_Subsystem.slx │ │ │ └── BUS_Subsystem_Parts │ │ │ │ ├── BUS_IN │ │ │ │ ├── BUS_IN.slx │ │ │ │ └── DATA │ │ │ │ │ └── BusInInitFct.m │ │ │ │ └── BUS_OUT │ │ │ │ ├── BUS_OUT.slx │ │ │ │ └── DATA │ │ │ │ ├── BusRefreshBusSelector.m │ │ │ │ ├── BusRefreshInputs.m │ │ │ │ └── BusRefreshLineNames.m │ │ ├── BUS_Time_Bus_Reset │ │ │ ├── BUS_Time_Bus_Reset.slx │ │ │ └── DATA │ │ │ │ └── TimerandBusResetRefreshBus.m │ │ ├── LIB_BUS.slx │ │ └── README.txt │ ├── BlockActivation │ │ ├── ActivationContainerCommented │ │ │ ├── ActivationContainerCommented.slx │ │ │ └── Data │ │ │ │ ├── ContainerSymbol.jpg │ │ │ │ ├── Delete_Button_Commented.m │ │ │ │ ├── Init_ActivationContainer_Commented.m │ │ │ │ ├── New_Subsystem_Commented.m │ │ │ │ └── reconfig_add_block.m │ │ ├── ActivationContainerEnabled │ │ │ ├── ActivationContainerEnabled.slx │ │ │ └── Data │ │ │ │ ├── init_activation_container.m │ │ │ │ ├── init_delete_button.m │ │ │ │ ├── init_new_subsystem.m │ │ │ │ └── reconfig_add_block.m │ │ └── LIB_BlockActivation.slx │ ├── Functions │ │ ├── CalcBlockPicturePosition.m │ │ ├── CalcGlobalSampleTime.m │ │ ├── DATA_BlockFolderPriorise.m │ │ ├── GetMaskParameters.m │ │ ├── WriteParaFile.m │ │ └── get_workspace_parameter.m │ ├── Graphics │ │ ├── Scopes_Simulation.svg │ │ ├── forwardsimulation.png │ │ └── reset.png │ └── LIB_Utilities.slx ├── Vehicle_Dynamics │ ├── Acceleration_Calculation │ │ ├── Acceleration_Calculation.slx │ │ └── Data │ │ │ └── Acceleration_Calculation.svg │ ├── Air_Resistance │ │ ├── Air_Resistance.slx │ │ └── Data │ │ │ └── Air_Resistance.svg │ ├── LIB_Vehicle_Dynamics.slx │ ├── Roll_Resistance │ │ ├── Data │ │ │ └── Roll_Resistance.svg │ │ └── Roll_Resistance.slx │ └── Slope_Resistance │ │ ├── Data │ │ └── Slope_Resistance.svg │ │ └── Slope_Resistance.slx ├── Wheel_System │ ├── LIB_Wheel_System.slx │ └── Wheel_System_Const_R │ │ ├── Data │ │ └── Wheel_System_Const_R.svg │ │ └── Wheel_System_Const_R.slx └── slblocks.m ├── LICENSE ├── Laengsdynamikmodell ├── Longitudinaldynamicmodel_SmartFortwo.slx └── Longitudinaldynamicmodel_SmartFortwo_Parameterfile.m ├── README.md └── Start_FullVehicle_Simulation_NEmo.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/.gitignore -------------------------------------------------------------------------------- /Experiment_Data/SimSmartFortwoExperiment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/Experiment_Data/SimSmartFortwoExperiment.m -------------------------------------------------------------------------------- /Experiment_Data/SmartFortwo_Experiments.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/Experiment_Data/SmartFortwo_Experiments.mat -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCAC_Converter/DCAC_Converter.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCAC_Converter/DCAC_Converter.slx -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCAC_Converter/Data/DCAC_Converter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCAC_Converter/Data/DCAC_Converter.svg -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCAC_Converter/Data/InitPlotInverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCAC_Converter/Data/InitPlotInverter.m -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCAC_Converter/ParaFile_DCAC_Converter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCAC_Converter/ParaFile_DCAC_Converter.m -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/DCDC_Converter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/DCDC_Converter.svg -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Berechnung Wirkungsgradkennlinie DCDC-Wandler.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Berechnung Wirkungsgradkennlinie DCDC-Wandler.xlsx -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Validierung DCDC-Modell.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Validierung DCDC-Modell.mat -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Variation Leistung.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Variation Leistung.mat -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Variation Spannung.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Simulationsergebnisse/Variation Spannung.mat -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Validierung DCDC-Wandler-Modell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Extended/Validierung DCDC-Wandler-Modell.xlsx -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/InitDCDCConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/InitDCDCConverter.m -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DATA/Kennlinie_DCDC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DATA/Kennlinie_DCDC.mat -------------------------------------------------------------------------------- /LIB/Auxiliaries/DCDC_Converter/DCDC_Converter.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/DCDC_Converter/DCDC_Converter.slx -------------------------------------------------------------------------------- /LIB/Auxiliaries/LIB_Auxiliaries.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/LIB_Auxiliaries.slx -------------------------------------------------------------------------------- /LIB/Auxiliaries/Simple_Auxiliary/Data/Simple_Auxiliary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/Simple_Auxiliary/Data/Simple_Auxiliary.svg -------------------------------------------------------------------------------- /LIB/Auxiliaries/Simple_Auxiliary/Simple_Auxiliary.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Auxiliaries/Simple_Auxiliary/Simple_Auxiliary.slx -------------------------------------------------------------------------------- /LIB/Brake_System/Brake_System_Completion_of_Recuperation/Brake_System_Completion_of_Recuperation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Brake_System/Brake_System_Completion_of_Recuperation/Brake_System_Completion_of_Recuperation.slx -------------------------------------------------------------------------------- /LIB/Brake_System/Brake_System_Completion_of_Recuperation/Data/Brake_System_Completion_of_Recuperation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Brake_System/Brake_System_Completion_of_Recuperation/Data/Brake_System_Completion_of_Recuperation.svg -------------------------------------------------------------------------------- /LIB/Brake_System/LIB_Brake_System.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Brake_System/LIB_Brake_System.slx -------------------------------------------------------------------------------- /LIB/Control_Unit/Control_Unit_Simple/Control_Unit_Simple.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Control_Unit/Control_Unit_Simple/Control_Unit_Simple.slx -------------------------------------------------------------------------------- /LIB/Control_Unit/Control_Unit_Simple/Data/Control_Unit_Simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Control_Unit/Control_Unit_Simple/Data/Control_Unit_Simple.svg -------------------------------------------------------------------------------- /LIB/Control_Unit/LIB_Control_Unit.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Control_Unit/LIB_Control_Unit.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driver/Driver_PI/Data/Driver_PI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driver/Driver_PI/Data/Driver_PI.svg -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driver/Driver_PI/Data/init_DriverPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driver/Driver_PI/Data/init_DriverPI.m -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driver/Driver_PI/Driver_PI.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driver/Driver_PI/Driver_PI.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driver/LIB_Driver.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driver/LIB_Driver.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Lib_Driving_Cycles.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Lib_Driving_Cycles.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/AppendNonuniformTimeseries_inDrivingcycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/AppendNonuniformTimeseries_inDrivingcycle.m -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_MOTORWAY_130.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_MOTORWAY_130.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_MOTORWAY_150.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_MOTORWAY_150.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_ROAD.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_ROAD.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_URBAN.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_ARTEMIS_URBAN.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_City.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_City.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_EUDC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_EUDC.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_NEDC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_NEDC.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_UDC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/EUROPE_UDC.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_15_MODE.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_15_MODE.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_MODE.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_MODE.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_MODE_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_10_MODE_3.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_11_MODE.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_11_MODE.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_11_MODE_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_11_MODE_4.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_15_MODE.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/JAPAN_15_MODE.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/Longitudinal_DrivingCycle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/Longitudinal_DrivingCycle.PNG -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/Longitudinal_DrivingCycles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/Longitudinal_DrivingCycles.svg -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_CITY_I.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_CITY_I.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_CITY_II.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_CITY_II.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_72.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_72.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_75.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_75.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_HIGHWAY.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_FTP_HIGHWAY.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_NECC.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_NECC.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_SFTP_SC03.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_SFTP_SC03.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_SFTP_US06.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/USA_SFTP_US06.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_1.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_2.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/WLTP_class_3.mat -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/init_driving_cycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Data/init_driving_cycle.m -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Longitudinal_DrivingCycles.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Driving_Cycle/Longitudinal_DrivingCycles/Longitudinal_DrivingCycles.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Environment/Constant_Environment/Constant_Environment.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Environment/Constant_Environment/Constant_Environment.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Environment/Constant_Environment/Data/Constant_Environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Environment/Constant_Environment/Data/Constant_Environment.svg -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/Environment/LIB_Environment.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/Environment/LIB_Environment.slx -------------------------------------------------------------------------------- /LIB/Driver_and_Environment/LIB_Driver_and_Environment.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Driver_and_Environment/LIB_Driver_and_Environment.slx -------------------------------------------------------------------------------- /LIB/Energy_Source/LIB_Energy_Source.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Energy_Source/LIB_Energy_Source.slx -------------------------------------------------------------------------------- /LIB/Energy_Source/Power_Source/Constant_Power_Source.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Energy_Source/Power_Source/Constant_Power_Source.slx -------------------------------------------------------------------------------- /LIB/Energy_Source/Power_Source/Data/Constant_Power_Source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Energy_Source/Power_Source/Data/Constant_Power_Source.svg -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Simple_Efficiency/Data/Electric_Drive_Simple_Efficiency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Simple_Efficiency/Data/Electric_Drive_Simple_Efficiency.svg -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Simple_Efficiency/Electric_Drive_Simple_Efficiency.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Simple_Efficiency/Electric_Drive_Simple_Efficiency.slx -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/ConvertToMonotonousMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/ConvertToMonotonousMap.m -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Electric_Drive_Tabled_Consumption.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Electric_Drive_Tabled_Consumption.svg -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Full_Load_Mot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Full_Load_Mot.mat -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Leistungskennfeld_Mot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Leistungskennfeld_Mot.mat -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Min_Load_Mot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/Min_Load_Mot.mat -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/PlotMaps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/PlotMaps.m -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/init_Electric_Drive_Tabled_Consumption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/init_Electric_Drive_Tabled_Consumption.m -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/inittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/inittest.m -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/invert3dMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Data/invert3dMap.m -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Electric_Drive_Tabled_Consumption.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/Electric_Drive_Tabled_Consumption/Electric_Drive_Tabled_Consumption.slx -------------------------------------------------------------------------------- /LIB/Engines/Electric_Drive/LIB_Electric_Drive.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/Electric_Drive/LIB_Electric_Drive.slx -------------------------------------------------------------------------------- /LIB/Engines/LIB_Engines.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Engines/LIB_Engines.slx -------------------------------------------------------------------------------- /LIB/FTM_LIB.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/FTM_LIB.slx -------------------------------------------------------------------------------- /LIB/Gearbox/Gear_Stage/Data/Gear_Stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Gearbox/Gear_Stage/Data/Gear_Stage.svg -------------------------------------------------------------------------------- /LIB/Gearbox/Gear_Stage/Gear_Stage.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Gearbox/Gear_Stage/Gear_Stage.slx -------------------------------------------------------------------------------- /LIB/Gearbox/LIB_Gearbox.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Gearbox/LIB_Gearbox.slx -------------------------------------------------------------------------------- /LIB/Utilities/Analysis/Electrical_Vehicle_Data_Calculation/Electrical_Vehicle_Data_Calculation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Analysis/Electrical_Vehicle_Data_Calculation/Electrical_Vehicle_Data_Calculation.slx -------------------------------------------------------------------------------- /LIB/Utilities/Analysis/LIB_Analysis.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Analysis/LIB_Analysis.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_IN/BUS_IN.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_IN/BUS_IN.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_IN/DATA/BusInInitFct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_IN/DATA/BusInInitFct.m -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/BUS_OUT.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/BUS_OUT.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshBusSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshBusSelector.m -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshInputs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshInputs.m -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshLineNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Subsystem/BUS_Subsystem_Parts/BUS_OUT/DATA/BusRefreshLineNames.m -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Time_Bus_Reset/BUS_Time_Bus_Reset.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Time_Bus_Reset/BUS_Time_Bus_Reset.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/BUS_Time_Bus_Reset/DATA/TimerandBusResetRefreshBus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/BUS_Time_Bus_Reset/DATA/TimerandBusResetRefreshBus.m -------------------------------------------------------------------------------- /LIB/Utilities/BUS/LIB_BUS.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/LIB_BUS.slx -------------------------------------------------------------------------------- /LIB/Utilities/BUS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BUS/README.txt -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/ActivationContainerCommented.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/ActivationContainerCommented.slx -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/ContainerSymbol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/ContainerSymbol.jpg -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/Delete_Button_Commented.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/Delete_Button_Commented.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/Init_ActivationContainer_Commented.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/Init_ActivationContainer_Commented.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/New_Subsystem_Commented.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/New_Subsystem_Commented.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/reconfig_add_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerCommented/Data/reconfig_add_block.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerEnabled/ActivationContainerEnabled.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerEnabled/ActivationContainerEnabled.slx -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_activation_container.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_activation_container.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_delete_button.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_delete_button.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_new_subsystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/init_new_subsystem.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/reconfig_add_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/ActivationContainerEnabled/Data/reconfig_add_block.m -------------------------------------------------------------------------------- /LIB/Utilities/BlockActivation/LIB_BlockActivation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/BlockActivation/LIB_BlockActivation.slx -------------------------------------------------------------------------------- /LIB/Utilities/Functions/CalcBlockPicturePosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/CalcBlockPicturePosition.m -------------------------------------------------------------------------------- /LIB/Utilities/Functions/CalcGlobalSampleTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/CalcGlobalSampleTime.m -------------------------------------------------------------------------------- /LIB/Utilities/Functions/DATA_BlockFolderPriorise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/DATA_BlockFolderPriorise.m -------------------------------------------------------------------------------- /LIB/Utilities/Functions/GetMaskParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/GetMaskParameters.m -------------------------------------------------------------------------------- /LIB/Utilities/Functions/WriteParaFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/WriteParaFile.m -------------------------------------------------------------------------------- /LIB/Utilities/Functions/get_workspace_parameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Functions/get_workspace_parameter.m -------------------------------------------------------------------------------- /LIB/Utilities/Graphics/Scopes_Simulation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Graphics/Scopes_Simulation.svg -------------------------------------------------------------------------------- /LIB/Utilities/Graphics/forwardsimulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Graphics/forwardsimulation.png -------------------------------------------------------------------------------- /LIB/Utilities/Graphics/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/Graphics/reset.png -------------------------------------------------------------------------------- /LIB/Utilities/LIB_Utilities.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Utilities/LIB_Utilities.slx -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Acceleration_Calculation/Acceleration_Calculation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Acceleration_Calculation/Acceleration_Calculation.slx -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Acceleration_Calculation/Data/Acceleration_Calculation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Acceleration_Calculation/Data/Acceleration_Calculation.svg -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Air_Resistance/Air_Resistance.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Air_Resistance/Air_Resistance.slx -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Air_Resistance/Data/Air_Resistance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Air_Resistance/Data/Air_Resistance.svg -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/LIB_Vehicle_Dynamics.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/LIB_Vehicle_Dynamics.slx -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Roll_Resistance/Data/Roll_Resistance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Roll_Resistance/Data/Roll_Resistance.svg -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Roll_Resistance/Roll_Resistance.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Roll_Resistance/Roll_Resistance.slx -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Slope_Resistance/Data/Slope_Resistance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Slope_Resistance/Data/Slope_Resistance.svg -------------------------------------------------------------------------------- /LIB/Vehicle_Dynamics/Slope_Resistance/Slope_Resistance.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Vehicle_Dynamics/Slope_Resistance/Slope_Resistance.slx -------------------------------------------------------------------------------- /LIB/Wheel_System/LIB_Wheel_System.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Wheel_System/LIB_Wheel_System.slx -------------------------------------------------------------------------------- /LIB/Wheel_System/Wheel_System_Const_R/Data/Wheel_System_Const_R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Wheel_System/Wheel_System_Const_R/Data/Wheel_System_Const_R.svg -------------------------------------------------------------------------------- /LIB/Wheel_System/Wheel_System_Const_R/Wheel_System_Const_R.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/Wheel_System/Wheel_System_Const_R/Wheel_System_Const_R.slx -------------------------------------------------------------------------------- /LIB/slblocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LIB/slblocks.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/LICENSE -------------------------------------------------------------------------------- /Laengsdynamikmodell/Longitudinaldynamicmodel_SmartFortwo.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/Laengsdynamikmodell/Longitudinaldynamicmodel_SmartFortwo.slx -------------------------------------------------------------------------------- /Laengsdynamikmodell/Longitudinaldynamicmodel_SmartFortwo_Parameterfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/Laengsdynamikmodell/Longitudinaldynamicmodel_SmartFortwo_Parameterfile.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/README.md -------------------------------------------------------------------------------- /Start_FullVehicle_Simulation_NEmo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUMFTM/Component_Library_for_Full_Vehicle_Simulations/HEAD/Start_FullVehicle_Simulation_NEmo.m --------------------------------------------------------------------------------