Files
solver/OndselSolver/GearConstraintIJ.cpp
aiksiongkoh de8759384c Mb dyn half sine and cosine (#42)
* (int) added

* size_t count

* add files

* MBDyn new joints, sine, cosine

* CompoundJoints debugged
2023-12-13 15:52:16 +01:00

105 lines
2.5 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "GearConstraintIJ.h"
#include "GearConstraintIqcJqc.h"
#include "EndFrameqc.h"
using namespace MbD;
MbD::GearConstraintIJ::GearConstraintIJ(EndFrmsptr frmi, EndFrmsptr frmj) : ConstraintIJ(frmi, frmj)
{
}
std::shared_ptr<GearConstraintIJ> MbD::GearConstraintIJ::With(EndFrmsptr frmi, EndFrmsptr frmj)
{
assert(frmi->isEndFrameqc());
assert(frmj->isEndFrameqc());
auto gearCon = std::make_shared<GearConstraintIqcJqc>(frmi, frmj);
gearCon->initorbitsIJ();
return gearCon;
}
void MbD::GearConstraintIJ::calcPostDynCorrectorIteration()
{
aG = orbitJeIe->value() + (this->ratio() * orbitIeJe->value()) - aConstant;
}
void MbD::GearConstraintIJ::initialize()
{
ConstraintIJ::initialize();
this->initorbitsIJ();
}
void MbD::GearConstraintIJ::initializeGlobally()
{
orbitIeJe->initializeGlobally();
orbitJeIe->initializeGlobally();
}
void MbD::GearConstraintIJ::initializeLocally()
{
orbitIeJe->initializeLocally();
orbitJeIe->initializeLocally();
}
void MbD::GearConstraintIJ::initorbitsIJ()
{
assert(false);
}
void MbD::GearConstraintIJ::postInput()
{
orbitIeJe->postInput();
orbitJeIe->postInput();
if (aConstant == std::numeric_limits<double>::min()) {
aConstant = orbitJeIe->value() + (this->ratio() * orbitIeJe->value());
}
ConstraintIJ::postInput();
}
void MbD::GearConstraintIJ::postPosICIteration()
{
orbitIeJe->postPosICIteration();
orbitJeIe->postPosICIteration();
ConstraintIJ::postPosICIteration();
}
void MbD::GearConstraintIJ::preAccIC()
{
orbitIeJe->preAccIC();
orbitJeIe->preAccIC();
ConstraintIJ::preAccIC();
}
void MbD::GearConstraintIJ::prePosIC()
{
orbitIeJe->prePosIC();
orbitJeIe->prePosIC();
ConstraintIJ::prePosIC();
}
void MbD::GearConstraintIJ::preVelIC()
{
orbitIeJe->preVelIC();
orbitJeIe->preVelIC();
ConstraintIJ::preVelIC();
}
double MbD::GearConstraintIJ::ratio()
{
return radiusI / radiusJ;
}
void MbD::GearConstraintIJ::simUpdateAll()
{
orbitIeJe->simUpdateAll();
orbitJeIe->simUpdateAll();
ConstraintIJ::simUpdateAll();
}