222 {
223
225
226 for (
unsigned int i=0; i<m_fdm->
GetPropulsion()->GetNumEngines(); i++) {
228 }
229
230
231 double cost = stateSum();
232 for(int i=0;i<1000;i++) {
234 m_fdm->SetTrimStatus(true);
238 m_fdm->SetTrimStatus(false);
241
242 double costNew = stateSum();
243 double dcost = fabs(costNew - cost);
244 if (dcost < std::numeric_limits<double>::epsilon()) {
246 std::cout << "cost convergd, i: " << i << std::endl;
247 }
248 break;
249 }
250 if (i > 1000) {
252 std::cout << "cost failed to converge, dcost: "
253 << std::scientific
254 << dcost << std::endl;
255 }
256 break;
257 }
258 cost = costNew;
259 }
260 }
void EnableOutput(void)
Enables data logging to all outputs.
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
int GetDebugLevel(void) const
Retrieves the current debug level setting.
bool Run(void)
This function executes each scheduled model in succession.
void DisableOutput(void)
Disables data logging to all outputs.
std::shared_ptr< FGPropulsion > GetPropulsion(void) const
Returns the FGPropulsion pointer.
void SuspendIntegration(void)
Suspends the simulation and sets the delta T to zero.
void Initialize(const FGInitialCondition *FGIC)
Initializes the simulation with initial conditions.
void ResumeIntegration(void)
Resumes the simulation by resetting delta T to the correct value.