Skip to content

Commit

Permalink
removed another using
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAD committed Nov 21, 2023
1 parent 0597cb7 commit 7576126
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
36 changes: 18 additions & 18 deletions OndselSolver/DirectionCosineIecJec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@
#include <memory>

#include "DirectionCosineIecJec.h"
#include "FullColumn.h"
#include "EndFramec.h"

using namespace MbD;
namespace MbD {
DirectionCosineIecJec::DirectionCosineIecJec()
{
}

DirectionCosineIecJec::DirectionCosineIecJec()
{
}
DirectionCosineIecJec::DirectionCosineIecJec(EndFrmsptr frmi, EndFrmsptr frmj, int axisi, int axisj) :
KinematicIeJe(frmi, frmj), axisI(axisi), axisJ(axisj)
{

DirectionCosineIecJec::DirectionCosineIecJec(EndFrmsptr frmi, EndFrmsptr frmj, int axisi, int axisj) :
KinematicIeJe(frmi, frmj), axisI(axisi), axisJ(axisj)
{
}

}
void DirectionCosineIecJec::calcPostDynCorrectorIteration()
{
aAjOIe = frmI->aAjOe(axisI);
aAjOJe = frmJ->aAjOe(axisJ);
aAijIeJe = aAjOIe->fcDot(aAjOJe);
}

void DirectionCosineIecJec::calcPostDynCorrectorIteration()
{
aAjOIe = frmI->aAjOe(axisI);
aAjOJe = frmJ->aAjOe(axisJ);
aAijIeJe = aAjOIe->fcDot(aAjOJe);
double MbD::DirectionCosineIecJec::value()
{
return aAijIeJe;
}
}

double MbD::DirectionCosineIecJec::value()
{
return aAijIeJe;
}
3 changes: 1 addition & 2 deletions OndselSolver/DirectionCosineIecJec.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
#include <memory>

#include "KinematicIeJe.h"
#include "FullColumn.h"

namespace MbD {
template<typename T>
class FullColumn;

class DirectionCosineIecJec : public KinematicIeJe
{
Expand Down

0 comments on commit 7576126

Please sign in to comment.