Marine systems simulation
WaveDrift.h
1#ifndef WaveDrift_h__
2#define WaveDrift_h__
3
4
5using std::complex;
6using std::vector;
7
8namespace Ship{
10 {
11 public:
12 virtual void Read( const std::string &fname ) = 0;
13
14 virtual std::complex<double> GetRAOValue(int DOF, double ShipSpeed, double WaveFrequency, double WaveDirection) = 0;
15 private:
16 };
17}
18#endif // WaveDrift_h__
Definition: WaveDrift.h:10
Simple waypoint object.
Definition: CableAttach.h:16