Skip to content
Snippets Groups Projects
Commit 52f9339a authored by James Goppert's avatar James Goppert
Browse files

Decreased absolute tolerance.

parent bd19ab13
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ FGSimplexTrim::FGSimplexTrim(FGFDMExec * fdmPtr, TrimMode mode)
constraints.altitude = fdm.GetPropagate()->GetAltitudeASL();
std::string aircraft = fdm.GetAircraft()->GetAircraftName();
double rtol = std::numeric_limits<float>::epsilon();
double abstol =10*std::numeric_limits<float>::epsilon();
double abstol =std::numeric_limits<float>::epsilon();
double speed = 1.1; // > 1
double random = 0; // random scale factor added to all simplex calcs
int iterMax = 2000;
......
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