runOndselPiston, runPiston execute correctly

This commit is contained in:
Aik-Siong Koh
2023-06-30 19:48:30 -06:00
parent c30ee64b89
commit cb27f2344b
154 changed files with 2786 additions and 1605 deletions

View File

@@ -12,6 +12,11 @@ EndFramec::EndFramec() {
EndFramec::EndFramec(const char* str) : CartesianFrame(str) {
}
System* EndFramec::root()
{
return markerFrame->root();
}
void EndFramec::initialize()
{
}
@@ -35,18 +40,38 @@ void EndFramec::initEndFrameqct()
assert(false);
}
void MbD::EndFramec::calcPostDynCorrectorIteration()
void EndFramec::calcPostDynCorrectorIteration()
{
rOeO = markerFrame->rOmO;
aAOe = markerFrame->aAOm;
}
FColDsptr MbD::EndFramec::aAjOe(int j)
FColDsptr EndFramec::aAjOe(int j)
{
return aAOe->column(j);
}
double MbD::EndFramec::riOeO(int i)
double EndFramec::riOeO(int i)
{
return rOeO->at(i);
}
FColDsptr EndFramec::rmeO()
{
return rOeO->minusFullColumn(markerFrame->rOmO);
}
FColDsptr EndFramec::rpep()
{
return FColDsptr();
}
FColFMatDsptr EndFramec::pAOppE()
{
return FColFMatDsptr();
}
FMatDsptr EndFramec::aBOp()
{
return FMatDsptr();
}