From 598db4cf7f480877b6e59734b3e983dc6332a00c Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Tue, 12 Jul 2016 14:30:59 +0200 Subject: [PATCH] added AngularGearPowerRequest in IResponse --- VectoCommon/VectoCommon/Models/IResponse.cs | 24 ++++++--------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/VectoCommon/VectoCommon/Models/IResponse.cs b/VectoCommon/VectoCommon/Models/IResponse.cs index 55ff42f628..4b419eb6af 100644 --- a/VectoCommon/VectoCommon/Models/IResponse.cs +++ b/VectoCommon/VectoCommon/Models/IResponse.cs @@ -34,36 +34,26 @@ using TUGraz.VectoCommon.Utils; namespace TUGraz.VectoCommon.Models { /// <summary> - /// Defines an interface for a Response. + /// The Interface for a Response. Carries over result data to higher components. /// </summary> public interface IResponse { + Second AbsTime { get; set; } + Meter SimulationDistance { get; set; } Second SimulationInterval { get; set; } - MeterPerSquareSecond Acceleration { get; set; } - - Meter SimulationDistance { get; set; } + PerSecond EngineSpeed { get; set; } + OperatingPoint OperatingPoint { get; set; } Watt EnginePowerRequest { get; set; } - - Watt AuxiliariesPowerDemand { get; set; } - Watt ClutchPowerRequest { get; set; } - Watt GearboxPowerRequest { get; set; } - Watt AxlegearPowerRequest { get; set; } - Watt WheelsPowerRequest { get; set; } - Watt VehiclePowerRequest { get; set; } - Watt BrakePower { get; set; } + Watt AngularGearPowerRequest { get; set; } - PerSecond EngineSpeed { get; set; } - - Second AbsTime { get; set; } - - OperatingPoint OperatingPoint { get; set; } + Watt AuxiliariesPowerDemand { get; set; } } } \ No newline at end of file -- GitLab