1 #include "simulation/ElementCommon.h"
2 
Element_VOID()3 void Element::Element_VOID()
4 {
5 	Identifier = "DEFAULT_PT_VOID";
6 	Name = "VOID";
7 	Colour = PIXPACK(0x790B0B);
8 	MenuVisible = 1;
9 	MenuSection = SC_SPECIAL;
10 	Enabled = 1;
11 
12 	Advection = 0.0f;
13 	AirDrag = 0.00f * CFDS;
14 	AirLoss = 1.00f;
15 	Loss = 0.00f;
16 	Collision = 0.0f;
17 	Gravity = 0.0f;
18 	Diffusion = 0.00f;
19 	HotAir = -0.0003f* CFDS;
20 	Falldown = 0;
21 
22 	Flammable = 0;
23 	Explosive = 0;
24 	Meltable = 0;
25 	Hardness = 0;
26 
27 	Weight = 100;
28 
29 	HeatConduct = 251;
30 	Description = "Hole, will drain away any particles.";
31 
32 	Properties = TYPE_SOLID;
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