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