Marine systems simulation
ResistanceCurve.h
1#ifndef _CRESISTANCE_CURVE_H_
2#define _CRESISTANCE_CURVE_H_
3
4namespace Ship{
6 {
7 public:
8 virtual ~ResistanceCurve() {}
9 enum CURVE
10 {
11 VISCOUS_FRICTION=0,
12 WAVEMAKING_RESISTANCE,
13 FORM_FACTOR_FRICITON,
14 SKIN_ROUGHNESS
15 };
16
17 virtual double GetValue( double _xvalue )=0;
18 };
19}
20
21#endif
Definition: ResistanceCurve.h:6
Simple waypoint object.
Definition: CableAttach.h:16