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

@@ -155,11 +155,11 @@ void MbD::Item::fillqsudotWeights(std::shared_ptr<DiagonalMatrix<double>> diagMa
{
}
void MbD::Item::fillVelICError(FColDsptr error)
void MbD::Item::fillVelICError(FColDsptr col)
{
}
void MbD::Item::fillVelICJacob(SpMatDsptr jacob)
void MbD::Item::fillVelICJacob(SpMatDsptr mat)
{
}
@@ -167,6 +167,35 @@ void MbD::Item::setqsudotlam(FColDsptr qsudotlam)
{
}
void MbD::Item::preAccIC()
{
this->calcPostDynCorrectorIteration();
}
void MbD::Item::postAccIC()
{
}
void MbD::Item::postAccICIteration()
{
}
void MbD::Item::fillqsuddotlam(FColDsptr col)
{
}
void MbD::Item::fillAccICIterError(FColDsptr col)
{
}
void MbD::Item::fillAccICIterJacob(SpMatDsptr mat)
{
}
void MbD::Item::setqsuddotlam(FColDsptr qsudotlam)
{
}
void MbD::Item::constraintsReport()
{
}