aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
blob: 460c320758e92e05333a6a6bf93885458192055b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "test.h"

int
main(void) {
	test_rad_per_sec();
	test_deg_per_sec();
	test_rpm();
	test_as_rad_per_sec();
	test_as_deg_per_sec();
	test_as_rpm();

	test_percent();
	test_as_percent();

	test_pascal();
	test_millibar();
	test_kilopascal();
	test_bar();
	test_psi();
	test_inch_mercury();
	test_as_pascal();
	test_as_millibar();
	test_as_kilopascal();
	test_as_bar();
	test_as_psi();
	test_as_inch_mercury();

	test_kelvin();
	test_celsius();
	test_fahrenheit();
	test_rankine();
	test_as_kelvin();
	test_as_celsius();
	test_as_fahrenheit();
	test_as_rankine();

	test_cubic_centimetre();
	test_litre();
	test_cubic_metre();
	test_cubic_inch();
	test_as_cubic_centimetre();
	test_as_litre();
	test_as_cubic_metre();
	test_as_cubic_inch();

	test_cubic_metre_per_sec();
	test_cubic_metre_per_min();
	test_cubic_foot_per_min();
	test_as_cubic_metre_per_sec();
	test_as_cubic_metre_per_min();
	test_as_cubic_foot_per_min();

	test_kilo_per_sec();
	test_pound_per_min();
	test_as_kilo_per_sec();
	test_as_pound_per_min();

	test_comp_outlet_pressure();
	test_pressure_ratio();
	test_pressure_ratio_intercooled();
	test_comp_outlet_temperature_adiabatic();
	test_comp_outlet_temperature();
	test_manifold_temperature();
	test_volume_flow_rate();
	test_mass_flow_rate();
}