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

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

correction: if remaining distance is 0, try again with half of the simulation...

correction: if remaining distance is 0, try again with half of the simulation distance (assumption: acceleration is approx. the same as deceleration)
parent 01efb582
No related branches found
No related tags found
No related merge requests found
......@@ -292,9 +292,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
return response;
}
if (newds.IsSmallerOrEqual(0, 1e-3)) {
newds = ds;
DriverStrategy.CurrentDrivingMode = DefaultDriverStrategy.DrivingMode.DrivingModeBrake;
DriverStrategy.BrakeTrigger = DriverStrategy.NextDrivingAction;
newds = ds / 2.0;
//DriverStrategy.CurrentDrivingMode = DefaultDriverStrategy.DrivingMode.DrivingModeBrake;
//DriverStrategy.BrakeTrigger = DriverStrategy.NextDrivingAction;
}
Log.Debug("Exceeding next ActionDistance at {0}. Reducing max Distance from {2} to {1}",
DriverStrategy.NextDrivingAction.ActionDistance,
......
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