Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 4bf3162d authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

removing files not part of the project

parent 982f1f7e
No related branches found
No related tags found
No related merge requests found

Public Class Signals
Implements ISignals
Private _smartElectrics As Boolean
Public Property ClutchEngaged As Boolean Implements ISignals.ClutchEngaged
Public Property EngineDrivelinePower As Single Implements ISignals.EngineDrivelinePower
Public Property EngineDrivelineTorque As Single Implements ISignals.EngineDrivelineTorque
Public Property EngineMotoringPower As Single Implements ISignals.EngineMotoringPower
Public Property EngineSpeed As Integer Implements ISignals.EngineSpeed
Public Property SmartElectrics As Boolean Implements ISignals.SmartElectrics
Get
Return _smartElectrics
End Get
Set(value As Boolean)
_smartElectrics=value
Debug.WriteLine(String.Format("SmartElectrics {0}", _smartElectrics))
End Set
end property
Public Property SmartPneumatics As Boolean Implements ISignals.SmartPneumatics
Public Property TotalCycleTimeSeconds As Integer Implements ISignals.TotalCycleTimeSeconds
Public Property PreExistingAuxPower As Single Implements ISignals.PreExistingAuxPower
Public Property Idle As Boolean Implements ISignals.Idle
Public Property InNeutral As Boolean Implements ISignals.InNeutral
End Class

Public Class VectoInputs
Implements IVectoInputs
Public Property Cycle As String Implements IVectoInputs.Cycle
Public Property VehicleWeightKG As Single Implements IVectoInputs.VehicleWeightKG
Public Property PowerNetVoltage As Single Implements IVectoInputs.PowerNetVoltage
Public Property CycleDurationMinutes As Single Implements IVectoInputs.CycleDurationMinutes
Public Property FuelMap As String Implements IVectoInputs.FuelMap
End Class
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