runPosIC, VelIC, AccIC numerically correct

This commit is contained in:
Aik-Siong Koh
2023-06-24 23:08:29 -06:00
parent 371b13a9e0
commit c30ee64b89
110 changed files with 2171 additions and 129 deletions

View File

@@ -0,0 +1,16 @@
#include "AccICKineNewtonRaphson.h"
#include "SystemSolver.h"
void MbD::AccICKineNewtonRaphson::initializeGlobally()
{
AccNewtonRaphson::initializeGlobally();
iterMax = system->iterMaxAccKine;
dxTol = system->errorTolAccKine;
}
void MbD::AccICKineNewtonRaphson::preRun()
{
std::string str("MbD: Solving for quasi kinematic acceleration.");
system->logString(str);
AccNewtonRaphson::preRun();
}