aboutsummaryrefslogtreecommitdiffstats
path: root/engine.h
blob: 3922ab8f89d5fa6f5c16ccc747f44cda4cfba94c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef struct {
	Volume displacement;
	Temperature ambient_temperature;
	Pressure ambient_pressure;
	AngularSpeed rpm;
	Pressure map;
	Fraction ve;
	Fraction comp_efficiency;
	Fraction intercooler_efficiency;
} Engine;

void init_engine(Engine *e);
VolumeFlowRate volume_flow_rate(const Engine *e);