Fhsim
Marine systems simulation
Loading...
Searching...
No Matches
SimpleThruster.h
1
#ifndef CSimpleThruster_h__
2
#define CSimpleThruster_h__
3
4
#include <vector>
5
6
namespace
Ship
{
7
class
SimpleThruster
8
{
9
public
:
10
11
SimpleThruster
(
double
D ,
double
Fmax);
12
~SimpleThruster
( );
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__
Ship::SimpleThruster
Definition
SimpleThruster.h:8
Ship
Simple waypoint object.
Definition
CableAttach.h:16
update_root
webfhsim
reloadrepos
fhsim_marine_elements
src
ship
Ship
Actuators
SimpleThruster.h
Generated by
1.9.8