1 #include "simulation/ElementCommon.h"
2 
Element_E116()3 void Element::Element_E116()
4 {
5 	Identifier = "DEFAULT_PT_116";
6 	Name = "EQVE";
7 	Colour = PIXPACK(0xFFE0A0);
8 	MenuVisible = 0;
9 	MenuSection = SC_CRACKER2;
10 	Enabled = 1;
11 
12 	Advection = 0.7f;
13 	AirDrag = 0.02f * CFDS;
14 	AirLoss = 0.96f;
15 	Loss = 0.80f;
16 	Collision = 0.0f;
17 	Gravity = 0.1f;
18 	Diffusion = 0.00f;
19 	HotAir = 0.000f	* CFDS;
20 	Falldown = 1;
21 
22 	Flammable = 0;
23 	Explosive = 0;
24 	Meltable = 0;
25 	Hardness = 30;
26 
27 	Weight = 85;
28 
29 	HeatConduct = 70;
30 	Description = "A failed shared velocity test.";
31 
32 	Properties = TYPE_PART;
33 
34 	LowPressure = IPL;
35 	LowPressureTransition = NT;
36 	HighPressure = IPH;
37 	HighPressureTransition = NT;
38 	LowTemperature = ITL;
39 	LowTemperatureTransition = NT;
40 	HighTemperature = ITH;
41 	HighTemperatureTransition = NT;
42 }
43