11#ifndef C_CCOUPLING_PLATE_H
12#define C_CCOUPLING_PLATE_H
30#ifdef FH_VISUALIZATION
32 virtual void RenderInit(Ogre::Root*
const ogreRoot, ISimObjectCreator*
const creator);
35 virtual void RenderUpdate(
const double T,
const double*
const X);
39 virtual void OdeFcn(
const double dT,
const double*
const adX,
40 double*
const adXDot,
const bool bIsMajorTimeStep);
43 virtual const double* Position(
const double dT,
const double*
const adX);
44 virtual const double* Velocity(
const double dT,
const double*
const adX);
55#ifdef FH_VISUALIZATION
56 std::string m_sMaterial;
57 std::string m_sMeshName;
59 Ogre::Entity* m_pRenderEntity;
60 Ogre::SceneNode* m_pRenderNode;
61 Ogre::SceneManager* m_pSceneMgr;
Definition: CCouplingPlate.h:25
double m_dGravity
Accelleration of gravity.
Definition: CCouplingPlate.h:47
int m_IStateVel
The index of the velocity state.
Definition: CCouplingPlate.h:51
CouplingPlate(std::string sSimObjectName, ISimObjectCreator *pCreator)
The constructor sets the pointer to the output object and the parser object.
double m_damp
Added mass and damping (linear) used in equation of motion (ODE).
Definition: CCouplingPlate.h:48
virtual void OdeFcn(const double dT, const double *const adX, double *const adXDot, const bool bIsMajorTimeStep)
Calculates the state derivatives.
double m_dMass
The mass of the object.
Definition: CCouplingPlate.h:46
int m_IStatePos
The index of the position state.
Definition: CCouplingPlate.h:50
ISignalPort * m_pInForce
A pointer to the input force.
Definition: CCouplingPlate.h:49
Class modelling a flexible bottom ring, inheriting from CRing in RMCable lib.
Definition: CCable.h:142