Files
solver/MbDCode/EndFramec.h
2023-06-30 19:48:30 -06:00

43 lines
1.2 KiB
C++

#pragma once
#include <memory>
#include "CartesianFrame.h"
#include "FullColumn.h" //FColDsptr is defined
#include "FullMatrix.h" //FMatDsptr is defined
namespace MbD {
class MarkerFrame;
//template<typename T>
//class FullColumn;
//template<typename T>
//class FullMatrix;
class EndFramec : public CartesianFrame
{
//markerFrame rOeO aAOe
public:
EndFramec();
EndFramec(const char* str);
System* root() override;
void initialize() override;
void setMarkerFrame(MarkerFrame* markerFrm);
MarkerFrame* getMarkerFrame();
void initializeLocally() override;
virtual void initEndFrameqct();
void calcPostDynCorrectorIteration() override;
FColDsptr aAjOe(int j);
double riOeO(int i);
virtual FColDsptr rmeO();
virtual FColDsptr rpep();
virtual FColFMatDsptr pAOppE();
virtual FMatDsptr aBOp();
MarkerFrame* markerFrame; //Use raw pointer when pointing backwards.
FColDsptr rOeO = std::make_shared<FullColumn<double>>(3);
FMatDsptr aAOe = std::make_shared<FullMatrix<double>>(3, 3);
};
using EndFrmcptr = std::shared_ptr<EndFramec>;
}