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

Skip to content
Snippets Groups Projects
Commit a2ae1ac0 authored by Raphael LUZ's avatar Raphael LUZ
Browse files

* Fixed bug that caused engine power > full load

parent 2cb3a7ef
No related branches found
Tags milestones/2.0.4-beta1
No related merge requests found
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
* Various bugfixes in AT model * Various bugfixes in AT model
* rdyn validation * rdyn validation
* Fixed bug in map interpolation * Fixed bug in map interpolation
* Added ..\Developer Guide\Segment Table Description.xlsx
* Fixed bug that caused engine power > full load
### VECTO 2.0.4-beta ### VECTO 2.0.4-beta
* AT update for 1C2C gearboxes * AT update for 1C2C gearboxes
......
...@@ -1112,7 +1112,7 @@ lb_nOK: ...@@ -1112,7 +1112,7 @@ lb_nOK:
If VECTOworker.CancellationPending Then Return True If VECTOworker.CancellationPending Then Return True
'Check whether P above Full-load => Reduce Speed 'Check whether P above Full-load => Reduce Speed
If Pplus And P > Pmax Then If P > Pmax Then
If EngState0 = tEngState.Load Or EngState0 = tEngState.FullLoad Then If EngState0 = tEngState.Load Or EngState0 = tEngState.FullLoad Then
If Vact > 0.01 Then If Vact > 0.01 Then
Vh.ReduceSpeed(jz, 0.9999) Vh.ReduceSpeed(jz, 0.9999)
......
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