Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 04faae03 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Gearbox.vb: MockEngineeringVehicle: Removed readonly from VehicleType to set it in initializer

parent 25bd85a0
No related branches found
No related tags found
No related merge requests found
......@@ -265,8 +265,9 @@ Public Class Gearbox
.IEngineeringJobInputData_Vehicle =
New MockEngineeringVehicle() _
With { .GearboxInputData = gearbox,
.TorqueConverterInputData = gearbox}}
},
.TorqueConverterInputData = gearbox,
.VehicleType = jobType }
}},
New VectoRunData() _
With {.AxleGearData = axlegearData, .EngineData = engine,
.VehicleData =
......@@ -853,7 +854,7 @@ Public Class MockEngineeringVehicle
Implements IVehicleDeclarationInputData.ADAS
Public ReadOnly Property InitialSOC As Double Implements IVehicleEngineeringInputData.InitialSOC
Public ReadOnly Property VehicleType As VectoSimulationJobType Implements IVehicleEngineeringInputData.VehicleType
Public Property VehicleType As VectoSimulationJobType Implements IVehicleEngineeringInputData.VehicleType
Public ReadOnly Property PTO_DriveGear As GearshiftPosition Implements IVehicleEngineeringInputData.PTO_DriveGear
Public ReadOnly Property PTO_DriveEngineSpeed As PerSecond Implements IVehicleEngineeringInputData.PTO_DriveEngineSpeed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment