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

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

Pull request #131: remove dividing SP power demand for technology "electric"...

Pull request #131: remove dividing SP power demand for technology "electric" by alternator efficiency as the lookup-table already contains mechanical power demand

Merge in VECTO/vecto-dev from VECTO/mq_vecto-dev:feature/VECTO-1509-check-aux-power-demand-of-electric-steering-pump to develop

* commit 'b3ab3701':
  remove dividing SP power demand for technology "electric" by alternator efficiency as the lookup-table already contains mechanical power demand
parents 1c773dbc b3ab3701
No related branches found
No related tags found
No related merge requests found
......@@ -121,11 +121,6 @@ namespace TUGraz.VectoCore.Models.Declaration
public SteeringPumpValues<double> Lookup(string tech, MissionType mission)
{
var values = base.Lookup(tech);
if (tech == "Electric") {
var alternator = new ElectricSystem.Alternator();
values.Banking /= alternator.Lookup(mission);
values.Steering /= alternator.Lookup(mission);
}
return values;
}
......
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