blob: eaa7dc697ed30ae103fac56ca2ae3b96eb16e24c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
typedef struct {
Volume displacement;
AngularSpeed rpm;
Pressure map;
Fraction ve;
} Engine;
void init_engine(Engine *e);
VolumeFlowRate volume_flow_rate(const Engine *e);
|