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

Skip to content
Snippets Groups Projects
Commit 0b18005c authored by Markus QUARITSCH's avatar Markus QUARITSCH
Browse files

Pull request #278: Bugfix/VECTO-1708 gear selection with ecms

Merge in VECTO/vecto-dev from VECTO/mq_vecto-dev:bugfix/VECTO-1708-gear-selection-with-ecms to develop

* commit '01ac0658':
  VectoRun: in case no followUp run creator is provided, use noFollowUp creator as default
  correct wrong column headers in electric motor file
parents 344bf931 01ac0658
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
public virtual double Progress => CyclePort.Progress * (PostProcessingDone ? 1.0 : 0.99) * (WritingResultsDone ? 1.0 : 0.99);
protected VectoRun(IVehicleContainer container)
protected VectoRun(IVehicleContainer container, IFollowUpRunCreator followUpCreator = null)
{
Container = container;
RunIdentifier = Interlocked.Increment(ref _runIdCounter);
......@@ -79,11 +79,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
CyclePort = container.GetCycleOutPort();
PostProcessingDone = false;
WritingResultsDone = false;
}
protected VectoRun(IVehicleContainer container, IFollowUpRunCreator followUpCreator) : this(container)
{
_followUpCreator = followUpCreator;
_followUpCreator = followUpCreator ?? new NoFollowUpRunCreator();
}
public IVehicleContainer GetContainer() => Container;
......
n [rpm], T [Nm], P_bat [W]
n [rpm], T [Nm], P_el [W]
0 , -1600 , 19.6898
0 , -1550 , 18.5438
0 , -1500 , 17.4322
......
n [rpm], T [Nm], P_bat [W]
n [rpm], T [Nm], P_el [W]
0, -900, 0.000
0, -855, 0.000
0, -810, 0.000
......
n[rpm], T[Nm], P_el[kW]
n[rpm] , T [Nm] , P_el [kW]
0.00, -58.50, 2.46
0.00, -56.67, 2.32
0.00, -54.84, 2.18
......
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