diff --git a/VECTOAux/VectoAuxiliariesTests/UnitTests/M14Tests.vb b/VECTOAux/VectoAuxiliariesTests/UnitTests/M14Tests.vb
index d52c732212cf7abfdc6c522249587b16c17be11d..5c227c571efd00083a3e367f4b60ade4c5b79156 100644
--- a/VECTOAux/VectoAuxiliariesTests/UnitTests/M14Tests.vb
+++ b/VECTOAux/VectoAuxiliariesTests/UnitTests/M14Tests.vb
@@ -23,7 +23,6 @@ Namespace UnitTests
 		Implements ISSMTOOL
 
         Public Property Calculate As ISSMCalculate Implements ISSMTOOL.Calculate
-        Public Property SSMDisabled As Boolean Implements ISSMTOOL.SSMDisabled
         Public Property HVACConstants As IHVACConstants Implements ISSMTOOL.HVACConstants
 
         'Public Sub Clone(from As ISSMTOOL) Implements ISSMTOOL.Clone
diff --git a/VECTOAux/VectoAuxiliariesTests/UnitTests/SSMTOOLTests.vb b/VECTOAux/VectoAuxiliariesTests/UnitTests/SSMTOOLTests.vb
index f461d5b0bd444c433e1498316d0f17d804c67689..4709dc41fc1cb94ba608b09b5e1390dc7bddef84 100644
--- a/VECTOAux/VectoAuxiliariesTests/UnitTests/SSMTOOLTests.vb
+++ b/VECTOAux/VectoAuxiliariesTests/UnitTests/SSMTOOLTests.vb
@@ -83,7 +83,7 @@ Namespace UnitTests
             Dim auxInput as IBusAuxiliariesDeclarationData = nothing
 
             Dim dao = New DeclarationDataAdapterPrimaryBus()
-            Dim target As ISSMInputs = dao.CreateSSMModelParameters(auxInput, Utils.GetDefaultVehicleData(), mission, FuelData.Diesel)
+            Dim target As ISSMInputs = dao.CreateSSMModelParameters(auxInput, mission, FuelData.Diesel)
 
             If section = "BusParameterisation" Then
                 'BUS Parameterisation
@@ -583,7 +583,7 @@ Namespace UnitTests
             Dim auxInput as IBusAuxiliariesDeclarationData = nothing
 
             Dim dao = New DeclarationDataAdapterPrimaryBus()
-            Dim target As SSMTOOL = New SSMTOOL(dao.CreateSSMModelParameters(auxInput, Utils.GetDefaultVehicleData(), mission,
+            Dim target As SSMTOOL = New SSMTOOL(dao.CreateSSMModelParameters(auxInput, mission,
                                                                              FuelData.Diesel))
 
             success = BusAuxWriter.SaveSSMConfig(target.SSMInputs, filePath)
diff --git a/VectoCommon/VectoCommon/BusAuxiliaries/ISSMInputs.cs b/VectoCommon/VectoCommon/BusAuxiliaries/ISSMInputs.cs
index 62c8c616d0a21a847e3d4da0b2df17bf1844b243..25ab8d335d72743fbf0d060c0d000b7fc6bde12f 100644
--- a/VectoCommon/VectoCommon/BusAuxiliaries/ISSMInputs.cs
+++ b/VectoCommon/VectoCommon/BusAuxiliaries/ISSMInputs.cs
@@ -7,8 +7,7 @@ namespace TUGraz.VectoCommon.BusAuxiliaries
 {
 	public interface ISSMInputs
 	{
-		bool SSMDisabled { get; }
-
+		
 		ISSMBusParameters BusParameters { get; }
 
 		ISSMTechnologyBenefits Technologies { get; }
@@ -27,25 +26,10 @@ namespace TUGraz.VectoCommon.BusAuxiliaries
 
 	public interface ISSMBusParameters
 	{
-		// Bus Parameterisation	
-		//string BusModel { get; }
-
 		double NumberOfPassengers { get; }
 		FloorType BusFloorType { get; }
-		//bool DoubleDecker { get; }
-		//Meter BusLength { get; }
-		//Meter BusWidth { get; }
-		//Meter BusHeight { get; }
-
-		//SquareMeter BusFloorSurfaceArea { get; }
 		SquareMeter BusWindowSurface { get; }
 		SquareMeter BusSurfaceArea { get; }
-		//CubicMeter BusVolume { get; }
-
-		//PerSquareMeter PassengerDensityLowFloor { get; }
-		//PerSquareMeter PassengerDensitySemiLowFloor { get; }
-		//PerSquareMeter PassengerDensityRaisedFloor { get; }
-		//double CalculatedPassengerNumber { get; }
 	}
 
 	public interface ISSMBoundaryConditions
@@ -75,11 +59,9 @@ namespace TUGraz.VectoCommon.BusAuxiliaries
 	public interface IEnvironmentalConditions
 	{
 		// EnviromentalConditions				
-
 		IEnvironmentalConditionsMapEntry DefaultConditions { get; }
 
 		IEnvironmentalConditionsMap EnvironmentalConditionsMap { get; }
-		//string EnviromentalConditions_BatchFile { get; }
 		bool BatchMode { get; }
 
 		string Source { get; }
@@ -173,9 +155,6 @@ namespace TUGraz.VectoCommon.BusAuxiliaries
 
 	public interface IAuxHeater
 	{
-		// Aux. Heater				
-		//Watt EngineWasteHeatkW { get; }
-
 		Watt FuelFiredHeaterPower { get; }
 		double FuelEnergyToHeatToCoolant { get; }
 		double CoolantHeatTransferredToAirCabinHeater { get; }
diff --git a/VectoCommon/VectoCommon/BusAuxiliaries/IVehicleData.cs b/VectoCommon/VectoCommon/BusAuxiliaries/IVehicleData.cs
index f93ae39c396b7a92d6712e4b457bd1b21053679e..e1375f3ecc7ceca2c559bd2d2ecd2988b5b0bdd4 100644
--- a/VectoCommon/VectoCommon/BusAuxiliaries/IVehicleData.cs
+++ b/VectoCommon/VectoCommon/BusAuxiliaries/IVehicleData.cs
@@ -3,14 +3,6 @@
 namespace TUGraz.VectoCommon.BusAuxiliaries {
 	public interface IVehicleData
 	{
-		string ModelName { get; }
-		double PassengerCount { get; }
-
 		Kilogram TotalVehicleMass { get; }
-		FloorType FloorType { get; }
-		bool DoubleDecker { get; }
-		Meter Length { get; }
-		Meter Width { get; }
-		Meter Height { get; }
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/VectoCore/Configuration/Constants.cs b/VectoCore/VectoCore/Configuration/Constants.cs
index cbf706f21aee0a7390765b99d6cba95295daca9e..2cccc249901de685b2e12a7d5ee8c8feb0981bec 100644
--- a/VectoCore/VectoCore/Configuration/Constants.cs
+++ b/VectoCore/VectoCore/Configuration/Constants.cs
@@ -174,14 +174,6 @@ namespace TUGraz.VectoCore.Configuration
 				public const double CompressorGearEfficiency = 0.97;
 
 				public const double PneumaticOverrunUtilisation = 0.97;
-				//public const ConsumerTechnology AdBlueDosing = ConsumerTechnology.Pneumatic; // "Pneumatic";
-				//public const ConsumerTechnology AirSuspensionControl = ConsumerTechnology.Mechanical; // "Mechanically";
-				//public const ConsumerTechnology Doors = ConsumerTechnology.Pneumatic; // "Pneumatic";
-				//public static readonly Meter KneelingHeightMillimeters = 70.SI(Unit.SI.Milli.Meter).Cast<Meter>();
-				//public IPneumaticActuationsMap ActuationsMap = null;
-				//public const bool RetarderBrake = true;
-				//public const bool SmartAirCompression = false;
-				//public const bool SmartRegeneration = false;
 			}
 
 			public static class Heater {
@@ -193,6 +185,7 @@ namespace TUGraz.VectoCore.Configuration
 		public static class BusParameters
 		{
 			public static readonly Meter DriverCompartmentLength = 1.2.SI<Meter>();
+
 			public static readonly Kilogram PassengerWeightLow = 68.SI<Kilogram>();
 			public static readonly Kilogram PassengerWeightHigh = 71.SI<Kilogram>();
 
@@ -202,6 +195,8 @@ namespace TUGraz.VectoCore.Configuration
 			public static readonly SquareMeter FrontAndRearWindowAreaSingleDecker = 5.SI<SquareMeter>();
 			public static readonly SquareMeter FrontAndRearWindowAreaDoubleDecker = 8.SI<SquareMeter>();
 
+			public static readonly Meter InternalHeightDoubleDecker = 1.8.SI<Meter>();
+			public static readonly Meter HeightLuggageCompartment = 0.5.SI<Meter>();
 
 			public static class Auxiliaries
 			{
diff --git a/VectoCore/VectoCore/InputData/FileIO/JSON/SSMInputData.cs b/VectoCore/VectoCore/InputData/FileIO/JSON/SSMInputData.cs
index f35378f52f01f73be005b9e248183afa5c75516f..3c578d15977dcc05bbaae6cd3ae269921da1e18a 100644
--- a/VectoCore/VectoCore/InputData/FileIO/JSON/SSMInputData.cs
+++ b/VectoCore/VectoCore/InputData/FileIO/JSON/SSMInputData.cs
@@ -36,7 +36,6 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON
 			var genInput = ((JObject)body["SSMInputs"]);
 
 			var retVal = new SSMInputs(fileName);
-			retVal.SSMDisabled = body.GetEx<bool>("SSMDisabled");
 			
 			retVal.GFactor = genInput.GetEx<double>("BC_GFactor");
 			//retVal.PassengerBoundaryTemperature = genInput.GetEx<double>("BC_PassengerBoundaryTemperature").DegCelsiusToKelvin();
diff --git a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/DeclarationDataAdapterPrimaryBus.cs b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/DeclarationDataAdapterPrimaryBus.cs
index 852000aa9de2b4b2dc2c271bdb0ba78812b06a59..e038ac525c7c68dd62b298bbba544d218872b22b 100644
--- a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/DeclarationDataAdapterPrimaryBus.cs
+++ b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/DeclarationDataAdapterPrimaryBus.cs
@@ -85,7 +85,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 				PneumaticAuxillariesConfig = CreatePneumaticAuxConfig(runData.Retarder.Type),
 				Actuations = actuations,
 				SSMInputs = CreateSSMModelParameters(
-					vehicleData.Components.BusAuxiliaries, runData.VehicleData, mission, FuelData.Diesel),
+					vehicleData.Components.BusAuxiliaries, mission, FuelData.Diesel),
 				VehicleData = runData.VehicleData,
 				FuelMap = runData.EngineData.Fuels.First().ConsumptionMap
 			};
@@ -105,6 +105,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 				AverageCurrentDemandWithoutBaseLoad = currentDemand.Item2,
 				AlternatorMap = new SimpleAlternator(CalculateAlternatorEfficiency(busAux.ElectricSupply.Alternators)),
 				PowerNetVoltage = Constants.BusAuxiliaries.ElectricSystem.PowernetVoltage,
+				StoredEnergyEfficiency = Constants.BusAuxiliaries.ElectricSystem.StoredEnergyEfficiency,
 				ResultCardIdle = busAux.ElectricSupply.ResultCards != null
 					? new ResultCard(
 						busAux.ElectricSupply.ResultCards.Idle.Select(x => new SmartResult(x.Current, x.SmartCurrent)).ToList())
@@ -202,6 +203,9 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 				CompressorMap = GetCompressorMap(busAux.PneumaticSupply.CompressorSize),
 				SmartAirCompression = busAux.PneumaticSupply.SmartAirCompression,
 				SmartRegeneration = busAux.PneumaticSupply.SmartRegeneration,
+				AdBlueDosing = busAux.PneumaticConsumers.AdBlueDosing,
+				Doors = ConsumerTechnology.Pneumatically,
+				AirSuspensionControl = busAux.PneumaticConsumers.AirsuspensionControl,
 			};
 		}
 
@@ -241,19 +245,16 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 				RessourceHelper.ReadStream(DeclarationData.DeclarationDataResourcePrefix + ".VAUXBus." + resource));
 		}
 
-		public virtual ISSMInputs CreateSSMModelParameters(
-			IBusAuxiliariesDeclarationData busAuxInputData, IVehicleData vehicleData, Mission mission,
-			IFuelProperties heatingFuel)
+		public virtual ISSMInputs CreateSSMModelParameters(IBusAuxiliariesDeclarationData busAuxInputData, Mission mission, IFuelProperties heatingFuel)
 		{
 			var busParams = mission.BusParameter;
 
 			var hvacBusLength = busParams.HVACConfiguration == BusHVACSystemConfiguration.Configuration2
 				? 2 * Constants.BusParameters.DriverCompartmentLength
 				: busParams.VehicleLength;
-			var hvacBusheight = DeclarationData.BusAuxiliaries.CalculateInternalHeight(mission.VehicleHeight);
-			var coolingPower = CalculateMaxCoolingPower(vehicleData, mission);
+			var hvacBusheight = DeclarationData.BusAuxiliaries.CalculateInternalHeight(mission.BusParameter.FloorType, mission.BusParameter.DoubleDecker, busParams.BodyHeight);
+			var coolingPower = CalculateMaxCoolingPower(mission);
 			var retVal = new SSMInputs(null, heatingFuel) {
-				SSMDisabled = false,
 				Technologies = GetSSMTechnologyBenefits(busAuxInputData, mission.BusParameter.FloorType),
 				DefaultConditions = new EnvironmentalConditionMapEntry(
 					Constants.BusAuxiliaries.SteadyStateModel.DefaultTemperature,
@@ -280,8 +281,8 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 
 				BusWindowSurface = DeclarationData.BusAuxiliaries.WindowHeight(busParams.DoubleDecker) * hvacBusLength +
 									DeclarationData.BusAuxiliaries.FrontAndRearWindowArea(busParams.DoubleDecker),
-				BusSurfaceArea = 2 * (hvacBusLength * busParams.VehicleWidth + hvacBusLength * mission.VehicleHeight +
-									busParams.VehicleWidth * mission.VehicleHeight),
+				BusSurfaceArea = 2 * (hvacBusLength * busParams.VehicleWidth + hvacBusLength * busParams.BodyHeight +
+									busParams.VehicleWidth * busParams.BodyHeight),
 				BusVolume = hvacBusLength * busParams.VehicleWidth * hvacBusheight,
 
 				UValue = DeclarationData.BusAuxiliaries.UValue(busParams.FloorType),
@@ -291,7 +292,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 				VentilationRate = DeclarationData.BusAuxiliaries.VentilationRate(busParams.HVACConfiguration),
 
 				HVACMaxCoolingPower = coolingPower.Item1 + coolingPower.Item2,
-				HVACCompressorType = busParams.HVACCompressorType,
+				HVACCompressorType = busParams.HVACCompressorType, // use passenger compartment
 				COP = DeclarationData.BusAuxiliaries.CalculateCOP(
 					coolingPower.Item1, ACCompressorType.None, coolingPower.Item2, busParams.HVACCompressorType,
 					busParams.FloorType),
@@ -348,18 +349,16 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter
 		}
 
 
-		private Tuple<Watt, Watt> CalculateMaxCoolingPower(IVehicleData vehicleData, Mission mission)
+		private Tuple<Watt, Watt> CalculateMaxCoolingPower(Mission mission)
 		{
 			var busParams = mission.BusParameter;
 
 			var length = DeclarationData.BusAuxiliaries.CalculateInternalLength(
 				busParams.VehicleLength, busParams.DoubleDecker, busParams.FloorType,
 				busParams.NumberPassengersLowerDeck);
-			var height = DeclarationData.BusAuxiliaries.CalculateInternalHeight(mission.VehicleHeight);
+			var height = DeclarationData.BusAuxiliaries.CalculateInternalHeight(busParams.FloorType, busParams.DoubleDecker, busParams.BodyHeight);
 			var volume = length * height * busParams.VehicleWidth;
 
-			// todo: subtract driver compartment from passenger compartment for certain configurations.
-
 			var driver = DeclarationData.BusAuxiliaries.HVACMaxCoolingPower.DriverMaxCoolingPower(
 				busParams.HVACConfiguration, mission.MissionType);
 			var passenger = DeclarationData.BusAuxiliaries.HVACMaxCoolingPower.PassengerMaxCoolingPower(
diff --git a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMInputs.cs b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMInputs.cs
index 9252d09bbb9f8178ce43be0bd7c0fd413234ce21..2a53575a7432a4caaad6abb02f25feff8a7e92b7 100644
--- a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMInputs.cs
+++ b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMInputs.cs
@@ -23,13 +23,6 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 
 		//public IVehicleData Vehicle { get; }
 
-		public bool SSMDisabled { get; set; }
-
-		// C4/D4
-		//public string BusModel
-		//{
-		//	get { return Vehicle.ModelName; }
-		//}
 
 		// C5/D5
 		public double NumberOfPassengers
diff --git a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMRun.cs b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMRun.cs
index 047751b42e56df36ac0536d9d424f9e6a1af05fe..0d50ccec5ede5b9978d4a51db60c0af37c57fb93 100644
--- a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMRun.cs
+++ b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMRun.cs
@@ -40,10 +40,7 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 				}
 
 				return gen.BusParameters.BusFloorType == FloorType.LowFloor
-					? (enviromentalTemperature - gen.BoundaryConditions.CoolingBoundaryTemperature) <
-					gen.BoundaryConditions.MaxTemperatureDeltaForLowFloorBusses
-						? gen.BoundaryConditions.CoolingBoundaryTemperature
-						: enviromentalTemperature - 3.SI<Kelvin>()
+					? VectoMath.Max(gen.BoundaryConditions.CoolingBoundaryTemperature, enviromentalTemperature - gen.BoundaryConditions.MaxTemperatureDeltaForLowFloorBusses)
 					: gen.BoundaryConditions.CoolingBoundaryTemperature;
 			
 		}
diff --git a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMTOOL.cs b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMTOOL.cs
index 44b41eb34f8446007c3ec1f7960e63e8d3fef3d5..b6a0c93dc58fc405c8ed5841d78eaf89e56e8b29 100644
--- a/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMTOOL.cs
+++ b/VectoCore/VectoCore/Models/BusAuxiliaries/DownstreamModules/Impl/HVAC/SSMTOOL.cs
@@ -1,6 +1,7 @@
 using System.Linq;
 using System.Text;
 using TUGraz.VectoCommon.BusAuxiliaries;
+using TUGraz.VectoCommon.Models;
 using TUGraz.VectoCommon.Utils;
 using TUGraz.VectoCore.Models.BusAuxiliaries.Interfaces;
 using TUGraz.VectoCore.Models.BusAuxiliaries.Interfaces.DownstreamModules.HVAC;
@@ -31,7 +32,6 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 
 		public ISSMTechnologyBenefits TechList { get; set; }
 		public ISSMCalculate Calculate { get; set; }
-		public bool SSMDisabled { get { return SSMInputs.SSMDisabled; } }
 		public IHVACConstants HVACConstants { get; set; }
 
 		// Repeat Warning Flags
@@ -41,21 +41,21 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 		public Watt ElectricalWBase
 		{
 			get {
-				return SSMDisabled ? 0.SI<Watt>() : Calculate.ElectricalWBase; // .SI(Of Watt)()
+				return Calculate.ElectricalWBase; // .SI(Of Watt)()
 			}
 		}
 
 		public Watt MechanicalWBase
 		{
 			get {
-				return SSMDisabled ? 0.SI<Watt>() : Calculate.MechanicalWBase; // .SI(Of Watt)()
+				return Calculate.MechanicalWBase; // .SI(Of Watt)()
 			}
 		}
 
 		public KilogramPerSecond FuelPerHBase
 		{
 			get {
-				return SSMDisabled ? 0.SI<KilogramPerSecond>() : Calculate.FuelPerHBase; // .SI(Of LiterPerHour)()
+				return Calculate.FuelPerHBase; // .SI(Of LiterPerHour)()
 			}
 		}
 
@@ -63,17 +63,17 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 		public Watt ElectricalWAdjusted
 		{
 			get {
-				return SSMDisabled ? 0.SI<Watt>() : Calculate.ElectricalWAdjusted; // .SI(Of Watt)()
+				return Calculate.ElectricalWAdjusted; // .SI(Of Watt)()
 			}
 		}
 
 		public Watt MechanicalWBaseAdjusted
 		{
 			get {
-				var mechAdjusted = SSMDisabled ? 0.SI<Watt>() : Calculate.MechanicalWBaseAdjusted;
+				var mechAdjusted = Calculate.MechanicalWBaseAdjusted;
 
 				if (CompressorCapacityInsufficientWarned == false && (mechAdjusted) / (1000 * SSMInputs.ACSystem.COP) > SSMInputs.ACSystem.HVACMaxCoolingPower) {
-					OnMessage(this, "HVAC SSM :AC-Compressor Capacity unable to service cooling, run continues as if capacity was sufficient.", AdvancedAuxiliaryMessageType.Warning);
+					LoggingObject.Logger<SSMTOOL>().Warn("HVAC SSM :AC-Compressor Capacity unable to service cooling, run continues as if capacity was sufficient.");
 					CompressorCapacityInsufficientWarned = true;
 				}
 
@@ -85,7 +85,7 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 		public KilogramPerSecond FuelPerHBaseAdjusted
 		{
 			get {
-				return SSMDisabled ? 0.SI<KilogramPerSecond>() : Calculate.FuelPerHBaseAdjusted; // .SI(Of LiterPerHour)()
+				return Calculate.FuelPerHBaseAdjusted; // .SI(Of LiterPerHour)()
 			}
 		}
 
@@ -96,10 +96,6 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 		// Dynamicly Get Fuel having re-adjusted Engine Heat Waste, this was originally supposed to be Solid State. Late adjustment request 24/3/2015
 		public KilogramPerSecond FuelPerHBaseAsjusted(Watt AverageUseableEngineWasteHeatKW)
 		{
-			if (SSMDisabled) {
-				return 0.SI<KilogramPerSecond>();
-			}
-
 			// Set Engine Waste Heat
 			//SSMInputs.AuxHeater.EngineWasteHeatkW = AverageUseableEngineWasteHeatKW;
 			EngineWasteHeatkW = AverageUseableEngineWasteHeatKW;
@@ -119,16 +115,5 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.DownstreamModules.Impl.HVAC
 			return fba;
 		}
 
-		// Events
-		public event MessageEventHandler Message;
-
-		// Raise Message Event.
-		private void OnMessage(object sender, string message, AdvancedAuxiliaryMessageType messageType)
-		{
-			if (message != null) {
-				object ssmtool = this;
-				Message?.Invoke(ref ssmtool, message: message, messageType: messageType);
-			}
-		}
 	}
 }
diff --git a/VectoCore/VectoCore/Models/BusAuxiliaries/Interfaces/DownstreamModules/HVAC/ISSMTOOL.cs b/VectoCore/VectoCore/Models/BusAuxiliaries/Interfaces/DownstreamModules/HVAC/ISSMTOOL.cs
index 11b00e630377fd5c82eb4e314ec61473a55fe42f..ad18a9fc981de27c87c7baed0247e7a2fc2af5be 100644
--- a/VectoCore/VectoCore/Models/BusAuxiliaries/Interfaces/DownstreamModules/HVAC/ISSMTOOL.cs
+++ b/VectoCore/VectoCore/Models/BusAuxiliaries/Interfaces/DownstreamModules/HVAC/ISSMTOOL.cs
@@ -7,7 +7,6 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.Interfaces.DownstreamModules.HV
 		ISSMInputs SSMInputs { get;  }
 		ISSMTechnologyBenefits TechList { get;  }
 		ISSMCalculate Calculate { get;  }
-		bool SSMDisabled { get; }
 		IHVACConstants HVACConstants { get; set; }
 
 		Watt ElectricalWBase { get; } // Watt
@@ -29,8 +28,6 @@ namespace TUGraz.VectoCore.Models.BusAuxiliaries.Interfaces.DownstreamModules.HV
 		/// <remarks></remarks>
 		KilogramPerSecond FuelPerHBaseAsjusted(Watt AverageUseableEngineWasteHeatKW);
 
-		event MessageEventHandler Message;
-
 	}
 
 	public delegate void MessageEventHandler(ref object sender, string message, AdvancedAuxiliaryMessageType messageType);
diff --git a/VectoCore/VectoCore/Models/Declaration/BusSegments.cs b/VectoCore/VectoCore/Models/Declaration/BusSegments.cs
index d4975e4900802ec357b099d71ee5d7bfc3b1edfd..34015fd2a4b92516883e7f5251c927ec5b569499 100644
--- a/VectoCore/VectoCore/Models/Declaration/BusSegments.cs
+++ b/VectoCore/VectoCore/Models/Declaration/BusSegments.cs
@@ -118,12 +118,13 @@ namespace TUGraz.VectoCore.Models.Declaration
 						MaxLoad = null,
 						LowLoad = refLoad * 0.2,
 						RefLoad = refLoad,
-						VehicleHeight = row.ParseDouble("height").SI<Meter>(),
+						VehicleHeight = 0.SI<Meter>(), //row.ParseDouble("height").SI<Meter>(),
 						TotalCargoVolume = 0.SI<CubicMeter>(),
 						DefaultCDxA = row.ParseDouble("cdxastandard").SI<SquareMeter>(),
 						BusParameter = new BusParameters() {
 							VehicleLength = row.ParseDouble("length").SI<Meter>(),
 							VehicleWidth = row.ParseDouble("width").SI<Meter>(),
+							BodyHeight = row.ParseDouble("bodyheight").SI<Meter>(),
 							NumberPassengersLowerDeck = row.ParseDouble("passengerslowerdeck"),
 							NumberPassengersUpperDeck = row.ParseDouble("passengersupperdeck"),
 							PassengerDensity = passengerDensity,
diff --git a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs
index 8fddcc710c016f4714d7603c1b8c29dcbdbdf8d4..a8a39a1cfba8914c9cc5145e1fdee4c9b4d007ee 100644
--- a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs
+++ b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs
@@ -248,10 +248,20 @@ namespace TUGraz.VectoCore.Models.Declaration
 				return CalculateInternalLength(vehicleLength, doubleDecker, floorType, numPassLowFloor);
 			}
 
-			public static Meter CalculateInternalHeight(Meter vehicleHeight)
+			public static Meter CalculateInternalHeight(FloorType floorType, bool doubleDecker, Meter vehicleHeight)
 			{
-				// MQ: 2020-01-23 TODO! how to calculate?
-				return 1.8.SI<Meter>();
+				if (doubleDecker) {
+					return Constants.BusParameters.InternalHeightDoubleDecker;
+				}
+
+				switch (floorType) {
+					case FloorType.LowFloor:
+						return vehicleHeight;
+					case FloorType.HighFloor:
+						return vehicleHeight - Constants.BusParameters.HeightLuggageCompartment;
+				}
+
+				throw new VectoException("Internal height for vehicle type '{0}' {1} not defined", floorType.ToString(), doubleDecker ? "double decker" : "single decker");
 			}
 
 			public static Meter WindowHeight(bool doubleDecker)
diff --git a/VectoCore/VectoCore/Models/Declaration/Mission.cs b/VectoCore/VectoCore/Models/Declaration/Mission.cs
index ddd06303d99f44b5e668ee43555cde878dae42fe..7246046f673d1d1ed341d23e5b9088dd5d7ed1fa 100644
--- a/VectoCore/VectoCore/Models/Declaration/Mission.cs
+++ b/VectoCore/VectoCore/Models/Declaration/Mission.cs
@@ -96,6 +96,8 @@ namespace TUGraz.VectoCore.Models.Declaration
 
 		public Meter VehicleLength { get; internal set; }
 
+		public Meter BodyHeight { get; internal set; }
+
 		public double NumberPassengersLowerDeck { get; internal set; }
 
 		public double NumberPassengersUpperDeck { get; internal set; }
diff --git a/VectoCore/VectoCore/OutputData/FileIO/BusAuxWriter.cs b/VectoCore/VectoCore/OutputData/FileIO/BusAuxWriter.cs
index 9bec902633bf0261162abe3e47cf7afcf3072db6..282baeaa22318078127ed7ae371f7928326b6429 100644
--- a/VectoCore/VectoCore/OutputData/FileIO/BusAuxWriter.cs
+++ b/VectoCore/VectoCore/OutputData/FileIO/BusAuxWriter.cs
@@ -163,7 +163,6 @@ namespace TUGraz.VectoCore.OutputData.FileIO
 			var returnValue = true;
 			try {
 				var body = new Dictionary<string, object>();
-				body["SSMDisabled"] = ssmInput.SSMDisabled;
 				body["SSMInputs"] = SaveGenInputs(ssmInput);
 				//body["TechList"] = SaveTechlist(ssmInput);
 
diff --git a/VectoCore/VectoCore/Resources/Declaration/HeavyBusSegmentationTable.csv b/VectoCore/VectoCore/Resources/Declaration/HeavyBusSegmentationTable.csv
index 8d87f5ce08f6dcf38972eeeb5861133adc6e87e3..c6c79aeee3446dd5d2d2f4a049e1cf2983085c55 100644
--- a/VectoCore/VectoCore/Resources/Declaration/HeavyBusSegmentationTable.csv
+++ b/VectoCore/VectoCore/Resources/Declaration/HeavyBusSegmentationTable.csv
@@ -1,26 +1,26 @@
-HDV group , Production Stage , Vehicle Category , HDV SuperGroup , Articulated , Num Axles , TPMLM_Min , TPMLM_Max , doubledecker , floor type , DesignSpeed , Body , .vacc file , Cross Wind Correction , CdxA Standard , AxlesWeights        , Width , Length , Height , CurbMass , PassengersLowerDeck , PassengersUpperDeck , Heavy Urban , Urban , Suburban , Interurban , Coach , External displays , Internal displays , Fridge , Kitchen Standard , HVAC System Configuration , HVAC Compressor type , HVAC Aux Heater , HVAC Double Glasing , HVAC Heatpump , HVAC Adjustable AuxiliaryHeater , HVAC SeparateAirDistributionDucts
+HDV group , Production Stage , Vehicle Category , HDV SuperGroup , Articulated , Num Axles , TPMLM_Min , TPMLM_Max , doubledecker , floor type , DesignSpeed , Body , .vacc file , Cross Wind Correction , CdxA Standard , AxlesWeights        , Width , Length , Body Height , CurbMass , PassengersLowerDeck , PassengersUpperDeck , Heavy Urban , Urban , Suburban , Interurban , Coach , External displays , Internal displays , Fridge , Kitchen Standard , HVAC System Configuration , HVAC Compressor type , HVAC Aux Heater , HVAC Double Glasing , HVAC Heatpump , HVAC Adjustable AuxiliaryHeater , HVAC SeparateAirDistributionDucts
 ## Heavy Bus Primary Vehicles
-P31SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 4.9           , 37.5/62.5           , 2.55  , 12     , 2.7    , 10000    , 80                  , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 2                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P31DD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.2           , 37.5/62.5           , 2.55  , 12     , 3.7    , 10000    , 60                  , 40                  , 3.7         , 3.7   , 3.7      ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P32SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.6           , 37.5/62.5           , 2.55  , 12     , 3.0    , 10000    , 45                  , 0                   ,             ,       ,          , 2.2        , 1.4   , 2                 , 2                 , 0.5    , 0.5              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
-P32SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.2           , 37.5/62.5           , 2.55  , 12     , 3.9    , 10000    , 25                  , 35                  ,             ,       ,          , 3          , 2     , 1                 , 2                 , 1      , 1                , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P31SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 4.9           , 37.5/62.5           , 2.55  , 12     , 2.7         , 10000    , 80                  , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 2                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P31DD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.2           , 37.5/62.5           , 2.55  , 12     , 3.7         , 10000    , 60                  , 40                  , 3.7         , 3.7   , 3.7      ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P32SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.6           , 37.5/62.5           , 2.55  , 12     , 3.0         , 10000    , 45                  , 0                   ,             ,       ,          , 2.2        , 1.4   , 2                 , 2                 , 0.5    , 0.5              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P32SD     , 1                , HeavyBus         , PB41           , -           , 2         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.2           , 37.5/62.5           , 2.55  , 12     , 3.9         , 10000    , 25                  , 35                  ,             ,       ,          , 3          , 2     , 1                 , 2                 , 1      , 1                , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
 ##
-P33SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.0           , 27.3/45.4/27.3      , 2.55  , 14     , 2.7    , 12000    , 104                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 2                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P33DD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.3           , 27.3/45.4/27.3      , 2.55  , 14     , 3.7    , 12000    , 78                  , 52                  , 3.7         , 3.7   , 3.7      ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P34SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.7           , 27.3/45.4/27.3      , 2.55  , 14     , 3.0    , 12000    , 59                  , 0                   ,             ,       ,          , 2.2        , 1.4   , 2                 , 2                 , 0.5    , 0.5              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
-P34SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.3           , 27.3/45.4/27.3      , 2.55  , 14     , 3.9    , 12000    , 33                  , 46                  ,             ,       ,          , 3          , 2     , 1                 , 4                 , 1      , 1.0              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P33SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.0           , 27.3/45.4/27.3      , 2.55  , 14     , 2.7         , 12000    , 104                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 2                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P33DD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.3           , 27.3/45.4/27.3      , 2.55  , 14     , 3.7         , 12000    , 78                  , 52                  , 3.7         , 3.7   , 3.7      ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P34SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.7           , 27.3/45.4/27.3      , 2.55  , 14     , 3.0         , 12000    , 59                  , 0                   ,             ,       ,          , 2.2        , 1.4   , 2                 , 2                 , 0.5    , 0.5              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P34SD     , 1                , HeavyBus         , PB42           , 0           , 3         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.3           , 27.3/45.4/27.3      , 2.55  , 14     , 3.9         , 12000    , 33                  , 46                  ,             ,       ,          , 3          , 2     , 1                 , 4                 , 1      , 1.0              , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
 #
-P35SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.1           , 24.3/35.2/40.5      , 2.55  , 18     , 2.7    , 12000    , 104                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P35DD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.4           , 24.3/35.2/40.5      , 2.55  , 18     , 3.7    , 12000    , 78                  , 52                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P36SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.8           , 24.3/35.2/40.5      , 2.55  , 18     , 3.0    , 12000    , 59                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
-P36SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.4           , 24.3/35.2/40.5      , 2.55  , 18     , 3.9    , 12000    , 33                  , 46                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P35SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.1           , 24.3/35.2/40.5      , 2.55  , 18     , 2.7         , 12000    , 104                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P35DD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.4           , 24.3/35.2/40.5      , 2.55  , 18     , 3.7         , 12000    , 78                  , 52                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P36SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.8           , 24.3/35.2/40.5      , 2.55  , 18     , 3.0         , 12000    , 59                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P36SD     , 1                , HeavyBus         , PB43           , 1           , 3         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.4           , 24.3/35.2/40.5      , 2.55  , 18     , 3.9         , 12000    , 33                  , 46                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
 ##        ,
-P37SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.1           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 2.7    , 14000    , 125                 , 0                   , 3           , 3     , 3        ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P37DD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.4           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.7    , 14000    , 94                  , 62                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P38SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.8           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.0    , 14000    , 70                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
-P38SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.4           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.9    , 14000    , 39                  , 55                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P37SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.1           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 2.7         , 14000    , 125                 , 0                   , 3           , 3     , 3        ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P37DD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.4           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.7         , 14000    , 94                  , 62                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P38SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.8           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.0         , 14000    , 70                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P38SD     , 1                , HeavyBus         , PB44           , 0           , 4         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.4           , 21.4/21.4/35.8/21.4 , 2.55  , 15     , 3.9         , 14000    , 39                  , 55                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
 #
-P39SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.2           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 2.7    , 14000    , 125                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P39DD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.5           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.7    , 14000    , 94                  , 62                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
-P40SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.9           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.0    , 14000    , 70                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
-P40SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.5           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.9    , 14000    , 39                  , 55                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P39SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 0            , low        , 100         ,      , Bus.vacc   , CoachBus              , 5.2           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 2.7         , 14000    , 125                 , 0                   , 3           , 3     , 3        ,            ,       , 3                 , 3                 , 0      , 0                , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P39DD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 1            , low        , 100         ,      , Bus.vacc   , CoachBus              , 6.5           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.7         , 14000    , 94                  , 62                  , 3.7         , 3.7   , 3.7      ,            ,       ,                   ,                   ,        ,                  , 6                         , 2-stage              , 15              , 0                   , 0             , 0                               , 0
+P40SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 0            , high       , 100         ,      , Bus.vacc   , CoachBus              , 4.9           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.0         , 14000    , 70                  , 0                   ,             ,       ,          , 2.2        , 1.4   ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
+P40SD     , 1                , HeavyBus         , PB45           , 1           , 4         , 7.4       , 999       , 1            , high       , 100         ,      , Bus.vacc   , CoachBus              , 5.5           , 20.0/28.2/32.4/19.4 , 2.55  , 20     , 3.9         , 14000    , 39                  , 55                  ,             ,       ,          , 3          , 2     ,                   ,                   ,        ,                  , 6                         , 2-stage              , 30              , 1                   , 0             , 0                               , 1
diff --git a/VectoCore/VectoCoreTest/Models/Declaration/BusFactoryTest.cs b/VectoCore/VectoCoreTest/Models/Declaration/BusFactoryTest.cs
index 2b504ffe49eb132ca5d2370158e2692c83f0ba7a..ac26029b430fca5812f737db5e9a620c2241ed59 100644
--- a/VectoCore/VectoCoreTest/Models/Declaration/BusFactoryTest.cs
+++ b/VectoCore/VectoCoreTest/Models/Declaration/BusFactoryTest.cs
@@ -44,11 +44,14 @@ namespace TUGraz.VectoCore.Tests.Models.Declaration
 			};
 			var jobContainer = new JobContainer(new MockSumWriter());
 
-			var runs = factory.SimulationRuns().ToArray();
+			//var runs = factory.SimulationRuns().ToArray();
 			//jobContainer.AddRun(runs[runIdx]);
-			runs[runIdx].Run();
+			//runs[runIdx].Run();
 
-			Assert.IsTrue(runs[runIdx].FinishedWithoutErrors);
+			var run = factory.SimulationRuns().First();
+			run.Run();
+
+			//Assert.IsTrue(runs[runIdx].FinishedWithoutErrors);
 		}
 	}
 }