1 #include "simulation/ElementCommon.h"
2 
Element_INSL()3 void Element::Element_INSL()
4 {
5 	Identifier = "DEFAULT_PT_INSL";
6 	Name = "INSL";
7 	Colour = PIXPACK(0x9EA3B6);
8 	MenuVisible = 1;
9 	MenuSection = SC_ELEC;
10 	Enabled = 1;
11 
12 	Advection = 0.0f;
13 	AirDrag = 0.00f * CFDS;
14 	AirLoss = 0.95f;
15 	Loss = 0.00f;
16 	Collision = 0.0f;
17 	Gravity = 0.0f;
18 	Diffusion = 0.00f;
19 	HotAir = 0.000f	* CFDS;
20 	Falldown = 0;
21 
22 	Flammable = 7;
23 	Explosive = 0;
24 	Meltable = 0;
25 	Hardness = 10;
26 
27 	Weight = 100;
28 
29 	HeatConduct = 0;
30 	Description = "Insulator, does not conduct heat and blocks electricity.";
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