[4158989] | 1 | %YAML 1.2
|
---|
| 2 | # Default complete template follows
|
---|
| 3 | # ---
|
---|
| 4 | # name: alphanumeric word, required
|
---|
| 5 | # geochemistry: (Can be a chemical formula, an empirical formula, or an array of hashes of chemical formulae paired with relative ratios as with an empirical formula
|
---|
| 6 | # - H2S04: 0.45
|
---|
| 7 | # MgCO3: 0.55
|
---|
| 8 | # melting_point: kelvins
|
---|
| 9 | # boiling_point: kelvins
|
---|
| 10 | # triple_point: 2-element array of kelvins
|
---|
| 11 | # critical_point: 2-element array
|
---|
| 12 | # density: Overall and units of g/cm3
|
---|
| 13 | # fusion_enthalpy: Yeah
|
---|
| 14 | # vapor_enthalpy: Oh heck yeah
|
---|
| 15 | # submlimate_enthalpy: Now you're gettin' it
|
---|
| 16 | # thermal_mass: # Thermal mass split into three categories each having a list of J/(mol K) and Kelvin pairs
|
---|
| 17 | # solid:
|
---|
| 18 | # - [12.2,73]
|
---|
| 19 | # - [24.8,173]
|
---|
| 20 | # - [35.2,252.2]
|
---|
| 21 | # liquid:
|
---|
| 22 | # - [75.97,273]
|
---|
| 23 | # - [75.30,353]
|
---|
| 24 | # - [75.94,373]
|
---|
| 25 | # gas:
|
---|
| 26 | # - [36.5,373]
|
---|
| 27 | # - [36.2,673]
|
---|
| 28 | # - [41.4,1273]
|
---|
| 29 | # genesis:
|
---|
| 30 | # - environment: one of "igneous_extrusive", "igneous_intrusive", "metamorphic_hydrothermal", "metamorphic_contact", "sedimentary_evaporative", "sedimentary_clastic"
|
---|
| 31 | # abundance: 1-5, point scale
|
---|
| 32 | # association: single mineral or an array of minerals this one "often" (but not necessarily) occurs with
|
---|
| 33 | # grade: 1-5, defines grade-level of metamorphosis (default 0 = N/A).
|
---|
| 34 | # distribution: one of "cluster" or "vein"
|
---|
| 35 | # ...
|
---|
| 36 |
|
---|
| 37 | ---
|
---|
| 38 | mineral: "ice"
|
---|
| 39 | geochemistry: "H2O"
|
---|
| 40 | genesis:
|
---|
| 41 | - environment: "sedimentary"
|
---|
| 42 | distribution: "sill"
|
---|
| 43 | triple_point: [ 273.16, 0.006037 ]
|
---|
| 44 | critical_point: [ 647, 218.11 ]
|
---|
| 45 | density: 0.998 # Overall and units of g/cm3
|
---|
| 46 | fusion_enthalpy: 6.01
|
---|
| 47 | vapor_enthalpy: 40.68
|
---|
| 48 | submlimate_enthalpy: 46.70
|
---|
| 49 | thermal_mass: # Thermal mass split into three categories each having a list of J/(mol K) and Kelvin pairs
|
---|
| 50 | solid:
|
---|
| 51 | - [12.2,73]
|
---|
| 52 | - [24.8,173]
|
---|
| 53 | - [35.2,252.2]
|
---|
| 54 | liquid:
|
---|
| 55 | - [75.97,273]
|
---|
| 56 | - [75.30,353]
|
---|
| 57 | - [75.94,373]
|
---|
| 58 | gas:
|
---|
| 59 | - [36.5,373]
|
---|
| 60 | - [36.2,673]
|
---|
| 61 | - [41.4,1273]
|
---|
| 62 | ...
|
---|
| 63 | ---
|
---|
| 64 | mineral: "cardice"
|
---|
| 65 | geochemistry: "CO2"
|
---|
| 66 | genesis:
|
---|
| 67 | - environment: "sedimentary"
|
---|
| 68 | distribution: "sill"
|
---|
| 69 | sublimation_point: [ 194.65, 1 ] # Sublimiation, triple, and critical points are always a two-element array of K/atm pairs (Kelvins followed by physical atmosphere pressure units)
|
---|
| 70 | triple_point: [ 216.55, 5.11 ]
|
---|
| 71 | critical_point: [ 304.18, 72.83 ]
|
---|
| 72 | ...
|
---|
| 73 | # Defining pegmatites
|
---|
| 74 | ---
|
---|
| 75 | mineral: "pegmatite"
|
---|
| 76 | class: "pegmatic"
|
---|
| 77 | genesis:
|
---|
| 78 | - distribution: [ "vein", "sill", "stock", "dike" ]
|
---|
| 79 | association: { mineral: "granite", distribution: "laccolith" }
|
---|
| 80 | ...
|
---|
| 81 | ---
|
---|
| 82 | mineral: "biotite"
|
---|
| 83 | geochemistry: "KMg2.5Fe0.5AlSi3O10(OH)1.75F0.25" # Empirical formula, harder to read but more accurate
|
---|
| 84 | genesis:
|
---|
| 85 | - distribution: "cluster"
|
---|
| 86 | host: "pegmatite"
|
---|
| 87 | size: 1
|
---|
| 88 | - distribution: "cluster"
|
---|
| 89 | size: 1
|
---|
| 90 | association: "schist"
|
---|
| 91 | ...
|
---|
| 92 | ---
|
---|
| 93 | mineral: "lepidolite" # Associated minerals include: quartz, feldspar, spodumene, amblygonite, tourmaline, columbite, cassiterite, topaz, and beryl.
|
---|
| 94 | geochemistry: KLi2Al(Al,Si)3O10(F,OH)2
|
---|
| 95 | deposit: { distribution: "cluster", size: 1 }
|
---|
| 96 | genesis:
|
---|
| 97 | - host: "pegmatite"
|
---|
| 98 | frequency: 5
|
---|
| 99 | - association: { mineral: "quartz", distribution: "vein" }
|
---|
| 100 | frequency: 3
|
---|
| 101 | - association: "granite"
|
---|
| 102 | frequency: 1
|
---|
| 103 | ...
|
---|
| 104 |
|
---|
| 105 | ---
|
---|
| 106 | mineral: orthoclase
|
---|
| 107 | geochemistry: KAlSi3O8
|
---|
| 108 | class: "feldspar"
|
---|
| 109 | genesis:
|
---|
| 110 | - distribution: "cluster"
|
---|
| 111 | ...
|
---|
| 112 | ---
|
---|
| 113 | mineral: microcline
|
---|
| 114 | geochemistry: KAlSi3O8
|
---|
| 115 | class: "feldspar"
|
---|
| 116 | genesis:
|
---|
| 117 | - distribution: "cluster"
|
---|
| 118 | ...
|
---|
| 119 | ---
|
---|
| 120 | mineral: albite
|
---|
| 121 | class: "na-plagioclase"
|
---|
| 122 | geochemistry:
|
---|
| 123 | - NaAlSi3O8: 0.95
|
---|
| 124 | CaAl2Si2O8: 0.05
|
---|
| 125 | deposit: { distribution: "cluster", size: 1 }
|
---|
| 126 | genesis:
|
---|
| 127 | - host: "pegmatite"
|
---|
| 128 | abundance: 3
|
---|
| 129 | frequency: 1
|
---|
| 130 | - environment: "hydrothermal"
|
---|
| 131 | frequency: 2
|
---|
| 132 | - environment: "metamorphic"
|
---|
| 133 | association: "greenschist"
|
---|
| 134 | frequency: 3
|
---|
| 135 | ...
|
---|
| 136 | ---
|
---|
| 137 | mineral: oligoclase
|
---|
| 138 | class: "na-plagioclase"
|
---|
| 139 | geochemistry:
|
---|
| 140 | - NaAlSi3O8: 0.80
|
---|
| 141 | CaAl2Si2O8: 0.20
|
---|
| 142 | genesis:
|
---|
| 143 | - association: [ granite, syenite, diorite, gneiss, orthoclase, { mineral: "diabase", distribution: [ "sill", "dike" ] } ]
|
---|
| 144 | abundance: 3
|
---|
| 145 | distribution: cluster
|
---|
| 146 | ...
|
---|
| 147 | ---
|
---|
| 148 | mineral: andesine
|
---|
| 149 | class: "na-plagioclase"
|
---|
| 150 | geochemistry:
|
---|
| 151 | - NaAlSi3O8: 0.60
|
---|
| 152 | CaAl2Si2O8: 0.40
|
---|
| 153 | genesis:
|
---|
| 154 | - association: [ diorite, andesite ]
|
---|
| 155 | abundance: 3
|
---|
| 156 | distribution: cluster
|
---|
| 157 | ...
|
---|
| 158 | ---
|
---|
| 159 | mineral: labradorite
|
---|
| 160 | class: "ca-plagioclase"
|
---|
| 161 | geochemistry:
|
---|
| 162 | - NaAlSi3O8: 0.40
|
---|
| 163 | CaAl2Si2O8: 0.60
|
---|
| 164 | genesis:
|
---|
| 165 | - distribution: cluster
|
---|
| 166 | abundance: 2
|
---|
| 167 | ...
|
---|
| 168 | ---
|
---|
| 169 | mineral: bytownite
|
---|
| 170 | class: "ca-plagioclase"
|
---|
| 171 | geochemistry:
|
---|
| 172 | - NaAlSi3O8: 0.20
|
---|
| 173 | CaAl2Si2O8: 0.80
|
---|
| 174 | genesis:
|
---|
| 175 | - association: [ diorite, gabbro, andesite, basalt, pyroxene ]
|
---|
| 176 | distribution: cluster
|
---|
| 177 | abundance: 3
|
---|
| 178 | ...
|
---|
| 179 | ---
|
---|
| 180 | mineral: anorthite
|
---|
| 181 | class: "ca-plagioclase"
|
---|
| 182 | geochemistry:
|
---|
| 183 | - NaAlSi3O8: 0.05
|
---|
| 184 | CaAl2Si2O8: 0.95
|
---|
| 185 | genesis:
|
---|
| 186 | - environment: metamorphic_orogenic # Associated with the formation of mountains by tectonic collision, thus not present on Mars.
|
---|
| 187 | distribution: cluster # Could have formed in the northern low-lands if we assume the massive planetoid collision theory and that it would have had similar characteristics to tectonic activity
|
---|
| 188 | abundance: 2
|
---|
| 189 | ...
|
---|
| 190 | ---
|
---|
| 191 | mineral: quartzite # Forms in low pH (acidic)
|
---|
| 192 | geochemistry: SiO2
|
---|
| 193 | genesis:
|
---|
| 194 | - association: pegmatites
|
---|
| 195 | distribution: cluster
|
---|
| 196 | abundance: 2
|
---|
| 197 | - environment: "sedimentary-clastic"
|
---|
| 198 | abundance: 4
|
---|
| 199 | ...
|
---|
| 200 |
|
---|
| 201 | # Now for something we hope you'll REALLY enjoy!
|
---|
| 202 | ---
|
---|
| 203 | mineral: epsomite
|
---|
| 204 | geochemistry: MgSO4.7H2O
|
---|
| 205 | class: "evaporative"
|
---|
| 206 | ...
|
---|
| 207 | ---
|
---|
| 208 | mineral: hematite
|
---|
| 209 | geochemistry: Fe2O3
|
---|
| 210 | # Environments: Magmatic, hydrothermal, metamorphic and sedimentary
|
---|
| 211 | ...
|
---|
| 212 | ---
|
---|
| 213 | mineral: "gypsum"
|
---|
| 214 | geochemistry: "CaSO4.2H2O"
|
---|
| 215 | class: "evaporative"
|
---|
| 216 | ...
|
---|
| 217 | ---
|
---|
| 218 | mineral: kaolinite
|
---|
| 219 | geochemistry: Al2Si2O5O4H4
|
---|
| 220 | class: "clay"
|
---|
| 221 | ...
|
---|
| 222 | # Now for phyllosilicates
|
---|
| 223 | ---
|
---|
| 224 | group: phyllosilicates
|
---|
| 225 | members:
|
---|
| 226 | - mineral: biotite
|
---|
| 227 | geochemistry:
|
---|
| 228 | - KMg3AlSi3O10F2
|
---|
| 229 | - KFe3AlSi3O10F2
|
---|
| 230 | - KMg3AlSi3O10O2H2
|
---|
| 231 | - KFe3AlSi3O10O2H2
|
---|
| 232 | genesis:
|
---|
| 233 | - association: pegmatites
|
---|
| 234 | distribution: cluster
|
---|
| 235 | abundance: 1
|
---|
| 236 | - mineral: talc
|
---|
| 237 | geochemistry:
|
---|
| 238 | - H2Mg3(SiO3)4: 1.0
|
---|
| 239 | - Mg3Si4O10(OH)2: 1.0
|
---|
| 240 | genesis:
|
---|
| 241 | - metamorphism: "hydrothermal"
|
---|
| 242 | protolith: [ "pyroxene", amphibole, olivine ]
|
---|
| 243 | abundance: 2
|
---|
| 244 | ...
|
---|
| 245 | ---
|
---|
| 246 | mineral: perchlorates
|
---|
| 247 | genesis:
|
---|
| 248 | - environment: "evaporative"
|
---|
| 249 | geochemistry:
|
---|
| 250 | - NaClO4: 0.4
|
---|
| 251 | MgClO4: 0.6
|
---|
| 252 | ...
|
---|
| 253 | ---
|
---|
| 254 | mineral: olivine
|
---|
| 255 | melting_point: 2173
|
---|
| 256 | genesis:
|
---|
| 257 | - distribution: cluster
|
---|
| 258 | association: [ gabbro, basalt ]
|
---|
| 259 | abundance: 4
|
---|
| 260 | geochemistry:
|
---|
| 261 | - MgO: 0.52
|
---|
| 262 | SiO2: 0.48
|
---|
| 263 | - FeO: 0.32
|
---|
| 264 | SiO2: 0.68
|
---|
| 265 | ...
|
---|
| 266 | ---
|
---|
| 267 | mineral: "serpentine"
|
---|
| 268 | class: "pyroxene"
|
---|
| 269 | genesis:
|
---|
| 270 | - distribution: "cluster"
|
---|
| 271 | metamorphism: "hydrothermal"
|
---|
| 272 | protolith: [ "olivine" ]
|
---|
| 273 | size: 2
|
---|
| 274 | ...
|
---|
| 275 | ---
|
---|
| 276 | mineral: "magnetite"
|
---|
| 277 | geochemistry: Fe3O4
|
---|
| 278 | deposit:
|
---|
| 279 | distribution: cluster
|
---|
| 280 | genesis:
|
---|
| 281 | - association: [ "serpentine" ]
|
---|
| 282 | abundance: 2
|
---|
| 283 | ...
|
---|
| 284 | ---
|
---|
| 285 | mineral: magnesite
|
---|
| 286 | geochemistry: MgCO3
|
---|
| 287 | genesis:
|
---|
| 288 | - protolith: [ "pyroxene", "olivine", "amphibole" ]
|
---|
| 289 | ...
|
---|
| 290 | ---
|
---|
| 291 | mineral: barringtonite
|
---|
| 292 | geochemistry:
|
---|
| 293 | - MgCO3: 0.5
|
---|
| 294 | H2O: 0.5
|
---|
| 295 | ...
|
---|
| 296 | ---
|
---|
| 297 | mineral: nesquehonite
|
---|
| 298 | geochemistry:
|
---|
| 299 | - MgCO3: 0.4
|
---|
| 300 | 3H2O: 0.6
|
---|
| 301 | ...
|
---|
| 302 | ---
|
---|
| 303 | mineral: lansfordite
|
---|
| 304 | geochemistry:
|
---|
| 305 | - MgCO3: 0.3
|
---|
| 306 | H2O: 0.7
|
---|
| 307 | ...
|
---|
| 308 | ---
|
---|
| 309 | mineral: calcite
|
---|
| 310 | geochemistry: CaCO3
|
---|
| 311 | genesis:
|
---|
| 312 | distribution: cluster
|
---|
| 313 | abundance: 2
|
---|
| 314 | ...
|
---|
| 315 | ---
|
---|
| 316 | mineral: dolomite
|
---|
| 317 | melting_point: 3615 # Average between ~2570 - 4660
|
---|
| 318 | genesis:
|
---|
| 319 | - environment: sedimentary
|
---|
| 320 | abundance: 1
|
---|
| 321 | geochemistry: CaMgC2O6
|
---|
| 322 | ...
|
---|
| 323 | ---
|
---|
| 324 | mineral: ilmenite
|
---|
| 325 | geochemistry:
|
---|
| 326 | - FeTiO3: 0.4
|
---|
| 327 | MgTiO3: 0.3
|
---|
| 328 | MnTiO3: 0.2
|
---|
| 329 | TiO3: 0.1
|
---|
| 330 | genesis:
|
---|
| 331 | - association: basalt
|
---|
| 332 | abundance: 2
|
---|
| 333 | distribution: cluster
|
---|
| 334 | ...
|
---|
| 335 | ---
|
---|
| 336 | mineral: rutile
|
---|
| 337 | geochemistry: TiO2
|
---|
| 338 | genesis: # Incomplete, does not include sedimentary sources
|
---|
| 339 | - association: [ kimberlite, lamproite ]
|
---|
| 340 | abundance: 1
|
---|
| 341 | - association: [ pegmatite, skarn, greisen ]
|
---|
| 342 | abundance: 3
|
---|
| 343 | - association: [ gneiss, schist ]
|
---|
| 344 | abundance: 1
|
---|
| 345 | ...
|
---|
| 346 | ---
|
---|
| 347 | mineral: palagonite
|
---|
| 348 | geochemistry:
|
---|
| 349 | - SiO2: 0.5
|
---|
| 350 | MgO: 0.15
|
---|
| 351 | - SiO2: 0.5
|
---|
| 352 | CaO: 0.10
|
---|
| 353 | genesis:
|
---|
| 354 | - environment: metamorphic_hydrothermal
|
---|
| 355 | protolith: [ obsidian, perlite ]
|
---|
| 356 | ...
|
---|
| 357 | ---
|
---|
| 358 | mineral: jarosite
|
---|
| 359 | geochemistry: KFe3(OH)6(SO4)2
|
---|
| 360 | genesis:
|
---|
| 361 | - environment: "sedimentary-evaporative"
|
---|
| 362 | abundance: 1
|
---|
| 363 | ...
|
---|
| 364 | ---
|
---|
| 365 | mineral: saponite
|
---|
| 366 | family: smectite
|
---|
| 367 | genesis:
|
---|
| 368 | - association:
|
---|
| 369 | mineral: serpentine
|
---|
| 370 | distribution: vein
|
---|
| 371 | distribution: cluster
|
---|
| 372 | ...
|
---|
| 373 | ---
|
---|
| 374 | mineral: chlorite
|
---|
| 375 | genesis:
|
---|
| 376 | - environment: igneous
|
---|
| 377 | association: [ pyroxene, amphibole, biotite ]
|
---|
| 378 | - environment: metamorphic_hydrothermal
|
---|
| 379 | association: sulfides
|
---|
| 380 | members:
|
---|
| 381 | - name: clinoclore
|
---|
| 382 | geochemistry: (Mg,Fe)5Al(Si3Al)O10(OH)8
|
---|
| 383 | members:
|
---|
| 384 | - name: seraphinite
|
---|
| 385 | - name: pennantite
|
---|
| 386 | geochemistry: (Mn5Al)(Si3Al)O10(OH)8
|
---|
| 387 | - name: chamosite
|
---|
| 388 | geochemistry: (Fe,Mg)5Al(Si3Al)O10(OH)8
|
---|
| 389 | ...
|
---|
| 390 | ---
|
---|
| 391 | mineral: goethite
|
---|
| 392 | geochemistry: FeO(OH)
|
---|
| 393 | genesis:
|
---|
| 394 | - environment: "sedimentary-evaporative"
|
---|
| 395 | - environment: metamorphic_hydrothermal
|
---|
| 396 | ...
|
---|
| 397 | ---
|
---|
| 398 | mineral: niningerite
|
---|
| 399 | class: "enstatite-chondrites"
|
---|
| 400 | geochemistry: "(Mn,Fe,Mn)S"
|
---|
| 401 | genesis: { environment: "enstatite-chondrites" }
|
---|
| 402 | ...
|
---|
| 403 | ---
|
---|
| 404 | group: sulfides
|
---|
| 405 | genesis:
|
---|
| 406 | - environment: igneous_intrusive
|
---|
| 407 | distribution: vein
|
---|
| 408 | members:
|
---|
| 409 | - mineral: niningerite
|
---|
| 410 | geochemistry: (Mg,Fe,Mn)S
|
---|
| 411 | - mineral: cinnabar
|
---|
| 412 | geochemistry: HgS
|
---|
| 413 | - mineral: realgar
|
---|
| 414 | geochemistry: AsS
|
---|
| 415 | - mineral: opriment
|
---|
| 416 | geochemistry: As2S3
|
---|
| 417 | - mineral: stibnite
|
---|
| 418 | geochemistry: Sb2S3
|
---|
| 419 | - mineral: pyrite
|
---|
| 420 | geochemistry: FeS2
|
---|
| 421 | - mineral: marcasite
|
---|
| 422 | geochemistry: FeS2
|
---|
| 423 | - mineral: molybdenite
|
---|
| 424 | geochemistry: MoS2
|
---|
| 425 | - mineral: covellite
|
---|
| 426 | geochemistry: CuS
|
---|
| 427 | - mineral: sphalerite
|
---|
| 428 | geochemistry: ZnS
|
---|
| 429 | - mineral: galena
|
---|
| 430 | geochemistry: PbS
|
---|
| 431 | - mineral: bornite
|
---|
| 432 | geochemistry: Cu5FeS4
|
---|
| 433 | - mineral: chalcocite
|
---|
| 434 | geochemistry: Cu2S
|
---|
| 435 | - mineral: acanthite
|
---|
| 436 | geochemistry: Ag2S
|
---|
| 437 | ... |
---|