28 lines
989 B
C++
28 lines
989 B
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#include "PosICKineNewtonRaphson.h"
|
|
#include "SystemSolver.h"
|
|
#include "Part.h"
|
|
#include "Constraint.h"
|
|
|
|
using namespace MbD;
|
|
|
|
void PosICKineNewtonRaphson::initializeGlobally()
|
|
{
|
|
AnyPosICNewtonRaphson::initializeGlobally();
|
|
iterMax = system->iterMaxPosKine;
|
|
dxTol = system->errorTolPosKine;
|
|
}
|
|
|
|
void MbD::PosICKineNewtonRaphson::preRun()
|
|
{
|
|
system->Solver::logString("MbD: Solving for quasi kinematic position.");
|
|
PosNewtonRaphson::preRun();
|
|
}
|