Marine systems simulation
CNetSolidityMesh.h
1#ifndef CNetMeshElement_h__
2#define CNetMeshElement_h__
3
4#include <CEnvironment.h>
5
6#include "CNetSolidityMeshSpec.h"
7
9{
10private:
12public:
14/* CNetSolidityMesh( const CNetSolidityMeshSpec* p);
15
16 void update( const double *const X, CEnvironment*env);
17 inline double getCl() {return m_cl;}
18 inline double getCd() {return m_cd;}
19
20private:
21
22 double m_cl;
23 double m_cd;
24
25 double m_area;
26 double m_aoa;
27 double m_rnlen;
28
29 unsigned int m_nodeA;
30 unsigned int m_nodeB;
31 unsigned int m_nodeC;*/
32};
33
34#endif // CNetMeshElement_h__
Definition: CNetSolidityMeshSpec.h:5
Definition: CNetSolidityMesh.h:9