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 22fce00b authored by Michael KRISPER's avatar Michael KRISPER
Browse files

enhanced data range of loss maps for generic vehicle, reset extrapolated flag...

enhanced data range of loss maps for generic vehicle, reset extrapolated flag in transmission loss map
parent 6be850fd
No related branches found
No related tags found
No related merge requests found
......@@ -183,4 +183,6 @@ engine speed [1/min],torque [Nm],fuel consumption [g/h]
2600,400,23315
2600,480,28351
2700,-150,0
2700,0,5900
\ No newline at end of file
2700,0,5900
3000,1200,40000
600,1200,40000
\ No newline at end of file
......@@ -111,3 +111,5 @@
2100,800,35717
2100,1000,45643
2100,1100,50653
2100,2400,60000
560,2400,60000
\ No newline at end of file
......@@ -191,3 +191,4 @@ Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm]
1700,-1000,18.662
1900,-1000,19.674
2100,-1000,20.686
0,0,0
\ No newline at end of file
......@@ -191,3 +191,4 @@ Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm]
1700,-1000,33.662
1900,-1000,34.674
2100,-1000,35.686
0,0,0
......@@ -64,6 +64,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
public bool Extrapolated
{
get { return _lossMap.Extrapolated; }
set { _lossMap.Extrapolated = value; }
}
public string GearName { get; private set; }
......
......@@ -448,6 +448,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
Disengaged = false;
_engageTime = -double.MaxValue.SI<Second>();
}
ModelData.Gears[Gear].LossMap.Extrapolated = false;
AdvanceState();
}
......
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