Files
solver/OndselSolver/AccICKineNewtonRaphson.cpp

27 lines
956 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "AccICKineNewtonRaphson.h"
#include "SystemSolver.h"
using namespace MbD;
void AccICKineNewtonRaphson::initializeGlobally()
{
AccNewtonRaphson::initializeGlobally();
iterMax = system->iterMaxAccKine;
dxTol = system->errorTolAccKine;
}
void AccICKineNewtonRaphson::preRun()
{
std::string str("MbD: Solving for quasi kinematic acceleration.");
system->logString(str);
AccNewtonRaphson::preRun();
}