1 #include "simulation/ElementCommon.h"
2 
Element_NICE()3 void Element::Element_NICE()
4 {
5 	Identifier = "DEFAULT_PT_NICE";
6 	Name = "NICE";
7 	Colour = PIXPACK(0xC0E0FF);
8 	MenuVisible = 1;
9 	MenuSection = SC_SOLIDS;
10 	Enabled = 1;
11 
12 	Advection = 0.0f;
13 	AirDrag = 0.00f * CFDS;
14 	AirLoss = 0.90f;
15 	Loss = 0.00f;
16 	Collision = 0.0f;
17 	Gravity = 0.0f;
18 	Diffusion = 0.00f;
19 	HotAir = -0.0005f* CFDS;
20 	Falldown = 0;
21 
22 	Flammable = 0;
23 	Explosive = 0;
24 	Meltable = 0;
25 	Hardness = 20;
26 
27 	Weight = 100;
28 
29 	DefaultProperties.temp = 35.0f;
30 	HeatConduct = 46;
31 	Description = "Nitrogen Ice. Very cold, will melt into LN2 when heated only slightly.";
32 
33 	Properties = TYPE_SOLID;
34 
35 	LowPressure = IPL;
36 	LowPressureTransition = NT;
37 	HighPressure = IPH;
38 	HighPressureTransition = NT;
39 	LowTemperature = ITL;
40 	LowTemperatureTransition = NT;
41 	HighTemperature = 63.1f;
42 	HighTemperatureTransition = PT_LNTG;
43 }
44