Marine systems simulation
SimpleThruster.h
1#ifndef CSimpleThruster_h__
2#define CSimpleThruster_h__
3
4#include <vector>
5
6namespace Ship{
8 {
9 public:
10
11 SimpleThruster( double D , double Fmax);
13
14 void SetData( std::vector<double> &pitch_axis, std::vector<double> &n_axis, double**data);
15
16 double GetForce( double pitch, double n);
17
18 private:
19 bool FixedPitch;
20
21 double D;
22 double Fmax;
23
24 std::vector<double> pitch_axis;
25 std::vector<double> n_axis;
26
27 double ** thrust_table;
28 };
29}
30#endif // CSimpleThruster_h__
Definition: SimpleThruster.h:8
Simple waypoint object.
Definition: CableAttach.h:16