set states
This commit is contained in:
parent
ea8360cbe6
commit
6cc060ea09
|
|
@ -14,6 +14,7 @@ elements.ruthenium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 2334,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 12450,
|
||||
conduct: 0.45,
|
||||
hardness: 0.97593,
|
||||
|
|
@ -28,6 +29,7 @@ elements.rhodium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 1964,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 12410,
|
||||
conduct: 0.59,
|
||||
hardness: 0.94694,
|
||||
|
|
@ -42,6 +44,7 @@ elements.palladium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 1555,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 12023,
|
||||
conduct: 0.38,
|
||||
hardness: 0.82667,
|
||||
|
|
@ -58,6 +61,7 @@ elements.rhenium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 3186,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 21020,
|
||||
conduct: 0.29,
|
||||
hardness: 0.96061,
|
||||
|
|
@ -72,6 +76,7 @@ elements.osmium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 3033,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 22590,
|
||||
conduct: 0.40,
|
||||
hardness: 0.98673,
|
||||
|
|
@ -86,6 +91,7 @@ elements.iridium = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 2446,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 22560,
|
||||
conduct: 0.54,
|
||||
hardness: 0.96886,
|
||||
|
|
@ -100,6 +106,7 @@ elements.platinum = {
|
|||
behavior: behaviors.WALL,
|
||||
tempHigh: 1768,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
density: 21450,
|
||||
conduct: 0.38,
|
||||
hardness: 0.83226,
|
||||
|
|
@ -118,6 +125,7 @@ elements.mercury = {
|
|||
stateHigh: "mercury_gas",
|
||||
tempLow: -39,
|
||||
stateLow: "frozen_mercury",
|
||||
state: "solid",
|
||||
category: "liquids",
|
||||
density: 13534,
|
||||
conduct: 0.13,
|
||||
|
|
@ -133,6 +141,8 @@ elements.frozen_mercury = {
|
|||
temp: -50,
|
||||
stateHigh: "mercury",
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
state: "solid",
|
||||
hidden: true,
|
||||
hardness: 0.2775, //(desperately scaled Mohs hardness)
|
||||
},
|
||||
|
|
@ -147,5 +157,6 @@ elements.mercury_gas = { //hg d@bp extrapolated from density change with tempera
|
|||
temp: 400,
|
||||
stateLow: "mercury",
|
||||
category: "gases",
|
||||
state: "gas",
|
||||
hidden: true,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue