1 #include "simulation/ElementCommon.h"
2 
Element_LO2()3 void Element::Element_LO2()
4 {
5 	Identifier = "DEFAULT_PT_LO2";
6 	Name = "LOXY";
7 	Colour = PIXPACK(0x80A0EF);
8 	MenuVisible = 1;
9 	MenuSection = SC_LIQUID;
10 	Enabled = 1;
11 
12 	Advection = 0.6f;
13 	AirDrag = 0.01f * CFDS;
14 	AirLoss = 0.98f;
15 	Loss = 0.95f;
16 	Collision = 0.0f;
17 	Gravity = 0.1f;
18 	Diffusion = 0.00f;
19 	HotAir = 0.000f	* CFDS;
20 	Falldown = 2;
21 
22 	Flammable = 5000;
23 	Explosive = 0;
24 	Meltable = 0;
25 	Hardness = 0;
26 
27 	Weight = 30;
28 
29 	DefaultProperties.temp = 80.0f;
30 	HeatConduct = 70;
31 	Description = "Liquid Oxygen. Very cold. Reacts with fire.";
32 
33 	Properties = TYPE_LIQUID;
34 
35 	LowPressure = IPL;
36 	LowPressureTransition = NT;
37 	HighPressure = IPH;
38 	HighPressureTransition = NT;
39 	LowTemperature = ITL;
40 	LowTemperatureTransition = NT;
41 	HighTemperature = 90.1f;
42 	HighTemperatureTransition = PT_O2;
43 }
44