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

17
MbDCode/DataPosVelAcc.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include <ostream>
#include "DataPosVelAcc.h"
using namespace MbD;
std::ostream& DataPosVelAcc::printOn(std::ostream& s) const
{
s << "refData = " << *refData << std::endl;
s << "rFfF = " << *rFfF << std::endl;
s << "vFfF = " << *vFfF << std::endl;
s << "omeFfF = " << *omeFfF << std::endl;
s << "aFfF = " << *aFfF << std::endl;
s << "alpFfF = " << *alpFfF << std::endl;
s << "aAFf = " << *aAFf;
return s;
}