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

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

calculate max vehicle speed and make it available on data bus

parent a2a67206
No related branches found
No related tags found
No related merge requests found
......@@ -642,6 +642,11 @@ namespace TUGraz.VectoCommon.Utils
return SIBase<PerSquareSecond>.Create(perSecond.Val / second.Value());
}
public static MeterPerSecond operator *(PerSecond perSecond, Meter meter)
{
return SIBase<MeterPerSecond>.Create(perSecond.Val * meter.Value());
}
public double AsRPM
{
get { return Val * 60 / (2 * Math.PI); }
......
......@@ -59,5 +59,8 @@ namespace TUGraz.VectoCore.Models.Simulation.DataBus
Newton RollingResistance(Radian gradient);
Newton SlopeResistance(Radian gradient);
MeterPerSecond MaxVehicleSpeed { get; }
}
}
\ No newline at end of file
......@@ -242,6 +242,11 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
return Vehicle.SlopeResistance(gradient);
}
public MeterPerSecond MaxVehicleSpeed
{
get { return Vehicle.MaxVehicleSpeed; }
}
#endregion
public VehicleContainer(ExecutionMode executionMode, IModalDataContainer modData = null,
......
......@@ -157,6 +157,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
throw new System.NotImplementedException();
}
public MeterPerSecond MaxVehicleSpeed { get { return null; } }
/// <summary>
/// Always Driving.
/// </summary>
......
......@@ -30,6 +30,7 @@
*/
using System;
using System.Linq;
using TUGraz.VectoCommon.Exceptions;
using TUGraz.VectoCommon.Models;
using TUGraz.VectoCommon.Utils;
......@@ -60,6 +61,13 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
if (AirdragData.CrossWindCorrectionCurve != null) {
AirdragData.CrossWindCorrectionCurve.SetDataBus(container);
}
var model = container.RunData;
if (model?.GearboxData == null || model.AxleGearData == null) {
return;
}
MaxVehicleSpeed = model.EngineData.FullLoadCurves[0].N95hSpeed /
model.GearboxData.Gears[model.GearboxData.Gears.Keys.Max()].Ratio / model.AxleGearData.AxleGear.Ratio /
(model.AngledriveData?.Angledrive.Ratio ?? 1.0) * model.VehicleData.DynamicTyreRadius * 0.995;
}
......@@ -178,6 +186,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
return retVal;
}
public MeterPerSecond MaxVehicleSpeed { get; }
public Newton AirDragResistance(MeterPerSecond previousVelocity, MeterPerSecond nextVelocity)
{
var vAverage = (previousVelocity + nextVelocity) / 2;
......
......@@ -48,7 +48,10 @@ namespace TUGraz.VectoCore.Tests.Utils
internal RequestData LastRequest = new RequestData();
public MockVehicle(IVehicleContainer cockpit) : base(cockpit) {}
public MockVehicle(IVehicleContainer cockpit) : base(cockpit)
{
}
protected override void DoWriteModalResults(IModalDataContainer container) {}
protected override void DoCommitSimulationStep() {}
......@@ -105,6 +108,8 @@ namespace TUGraz.VectoCore.Tests.Utils
return 0.SI<Newton>();
}
public MeterPerSecond MaxVehicleSpeed { get { return null; } }
public void Connect(IFvOutPort other)
{
NextComponent = other;
......
......@@ -147,6 +147,8 @@ namespace TUGraz.VectoCore.Tests.Utils
return 0.SI<Newton>();
}
public MeterPerSecond MaxVehicleSpeed { get { return null; } }
public Meter Distance { get; set; }
public bool SetClutchClosed
......
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