gebpy 1.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. gebpy/__init__.py +55 -0
  2. gebpy/__pycache__/__init__.cpython-310.pyc +0 -0
  3. gebpy/adapters/__init__.py +0 -0
  4. gebpy/cli/__init__.py +0 -0
  5. gebpy/core/__init__.py +0 -0
  6. gebpy/core/chemistry/__init__.py +0 -0
  7. gebpy/core/chemistry/common.py +1369 -0
  8. gebpy/core/chemistry/elements.py +317 -0
  9. gebpy/core/chemistry/geochemistry.py +1728 -0
  10. gebpy/core/fluids/__init__.py +0 -0
  11. gebpy/core/io/__init__.py +0 -0
  12. gebpy/core/mathematics/__init__.py +0 -0
  13. gebpy/core/minerals/__init__.py +0 -0
  14. gebpy/core/minerals/carbonates.py +412 -0
  15. gebpy/core/minerals/common.py +555 -0
  16. gebpy/core/minerals/config.py +77 -0
  17. gebpy/core/minerals/cyclosilicates.py +0 -0
  18. gebpy/core/minerals/halides.py +0 -0
  19. gebpy/core/minerals/inosilicates.py +0 -0
  20. gebpy/core/minerals/nesosilicates.py +0 -0
  21. gebpy/core/minerals/organics.py +0 -0
  22. gebpy/core/minerals/oxides.py +589 -0
  23. gebpy/core/minerals/phosphates.py +0 -0
  24. gebpy/core/minerals/phospides.py +0 -0
  25. gebpy/core/minerals/phyllosilicates.py +436 -0
  26. gebpy/core/minerals/sorosilicates.py +0 -0
  27. gebpy/core/minerals/sulfates.py +0 -0
  28. gebpy/core/minerals/sulfides.py +459 -0
  29. gebpy/core/minerals/synthesis.py +201 -0
  30. gebpy/core/minerals/tectosilicates.py +433 -0
  31. gebpy/core/physics/__init__.py +0 -0
  32. gebpy/core/physics/common.py +53 -0
  33. gebpy/core/physics/geophysics.py +351 -0
  34. gebpy/core/rocks/__init__.py +0 -0
  35. gebpy/core/rocks/anisotropic_rocks.py +395 -0
  36. gebpy/core/rocks/common.py +95 -0
  37. gebpy/core/rocks/config.py +77 -0
  38. gebpy/core/rocks/isotropic_rocks.py +395 -0
  39. gebpy/core/rocks/sedimentary.py +385 -0
  40. gebpy/core/subsurface/__init__.py +0 -0
  41. gebpy/data_minerals/__init__.py +0 -0
  42. gebpy/data_minerals/albite.yaml +59 -0
  43. gebpy/data_minerals/anatase.yaml +43 -0
  44. gebpy/data_minerals/ankerite.yaml +47 -0
  45. gebpy/data_minerals/annite.yaml +57 -0
  46. gebpy/data_minerals/anorthite.yaml +59 -0
  47. gebpy/data_minerals/antigorite.yaml +53 -0
  48. gebpy/data_minerals/aragonite.yaml +48 -0
  49. gebpy/data_minerals/argutite.yaml +43 -0
  50. gebpy/data_minerals/arsenolite.yaml +40 -0
  51. gebpy/data_minerals/au3oxide.yaml +46 -0
  52. gebpy/data_minerals/avicennite.yaml +40 -0
  53. gebpy/data_minerals/azurite.yaml +53 -0
  54. gebpy/data_minerals/baddeleyite.yaml +49 -0
  55. gebpy/data_minerals/bismite.yaml +49 -0
  56. gebpy/data_minerals/boehmite.yaml +48 -0
  57. gebpy/data_minerals/brookite.yaml +46 -0
  58. gebpy/data_minerals/brucite.yaml +45 -0
  59. gebpy/data_minerals/bunsenite.yaml +40 -0
  60. gebpy/data_minerals/calcite.yaml +45 -0
  61. gebpy/data_minerals/cassiterite.yaml +43 -0
  62. gebpy/data_minerals/cerussite.yaml +48 -0
  63. gebpy/data_minerals/chamosite.yaml +56 -0
  64. gebpy/data_minerals/chlorite.yaml +75 -0
  65. gebpy/data_minerals/chromite.yaml +42 -0
  66. gebpy/data_minerals/chrysotile.yaml +53 -0
  67. gebpy/data_minerals/claudetite.yaml +49 -0
  68. gebpy/data_minerals/clinochlore.yaml +55 -0
  69. gebpy/data_minerals/cochromite.yaml +42 -0
  70. gebpy/data_minerals/corundum.yaml +43 -0
  71. gebpy/data_minerals/crocoite.yaml +51 -0
  72. gebpy/data_minerals/cuprite.yaml +40 -0
  73. gebpy/data_minerals/cuprospinel.yaml +42 -0
  74. gebpy/data_minerals/diaspore.yaml +48 -0
  75. gebpy/data_minerals/dolomite.yaml +47 -0
  76. gebpy/data_minerals/eastonite.yaml +57 -0
  77. gebpy/data_minerals/eskolaite.yaml +43 -0
  78. gebpy/data_minerals/fechlorite.yaml +61 -0
  79. gebpy/data_minerals/fecolumbite.yaml +48 -0
  80. gebpy/data_minerals/ferberite.yaml +51 -0
  81. gebpy/data_minerals/fetantalite.yaml +48 -0
  82. gebpy/data_minerals/franklinite.yaml +42 -0
  83. gebpy/data_minerals/gahnite.yaml +42 -0
  84. gebpy/data_minerals/galaxite.yaml +42 -0
  85. gebpy/data_minerals/geikielite.yaml +45 -0
  86. gebpy/data_minerals/gibbsite.yaml +51 -0
  87. gebpy/data_minerals/glauconite.yaml +69 -0
  88. gebpy/data_minerals/goethite.yaml +48 -0
  89. gebpy/data_minerals/groutite.yaml +48 -0
  90. gebpy/data_minerals/hematite.yaml +43 -0
  91. gebpy/data_minerals/hercynite.yaml +42 -0
  92. gebpy/data_minerals/huebnerite.yaml +51 -0
  93. gebpy/data_minerals/ikaite.yaml +53 -0
  94. gebpy/data_minerals/illite.yaml +55 -0
  95. gebpy/data_minerals/ilmenite.yaml +45 -0
  96. gebpy/data_minerals/jacobsite.yaml +42 -0
  97. gebpy/data_minerals/kalsilite.yaml +47 -0
  98. gebpy/data_minerals/kaolinite.yaml +59 -0
  99. gebpy/data_minerals/karelianite.yaml +43 -0
  100. gebpy/data_minerals/lime.yaml +40 -0
  101. gebpy/data_minerals/litharge.yaml +43 -0
  102. gebpy/data_minerals/magnesiochromite.yaml +42 -0
  103. gebpy/data_minerals/magnesioferrite.yaml +42 -0
  104. gebpy/data_minerals/magnesite.yaml +45 -0
  105. gebpy/data_minerals/magnetite.yaml +41 -0
  106. gebpy/data_minerals/malachite.yaml +53 -0
  107. gebpy/data_minerals/manganite.yaml +51 -0
  108. gebpy/data_minerals/manganochromite.yaml +42 -0
  109. gebpy/data_minerals/manganosite.yaml +40 -0
  110. gebpy/data_minerals/marialite.yaml +49 -0
  111. gebpy/data_minerals/massicot.yaml +46 -0
  112. gebpy/data_minerals/meionite.yaml +49 -0
  113. gebpy/data_minerals/mgchlorite.yaml +61 -0
  114. gebpy/data_minerals/mgcolumbite.yaml +48 -0
  115. gebpy/data_minerals/mgtantalite.yaml +48 -0
  116. gebpy/data_minerals/microcline.yaml +59 -0
  117. gebpy/data_minerals/minium.yaml +44 -0
  118. gebpy/data_minerals/mnchlorite.yaml +61 -0
  119. gebpy/data_minerals/mncolumbite.yaml +48 -0
  120. gebpy/data_minerals/mntantalite.yaml +48 -0
  121. gebpy/data_minerals/monteponite.yaml +40 -0
  122. gebpy/data_minerals/montmorillonite.yaml +77 -0
  123. gebpy/data_minerals/muscovite.yaml +55 -0
  124. gebpy/data_minerals/nanepheline.yaml +47 -0
  125. gebpy/data_minerals/nichlorite.yaml +61 -0
  126. gebpy/data_minerals/nichromite.yaml +42 -0
  127. gebpy/data_minerals/nimite.yaml +55 -0
  128. gebpy/data_minerals/nontronite.yaml +73 -0
  129. gebpy/data_minerals/orthoclase.yaml +53 -0
  130. gebpy/data_minerals/paratellurite.yaml +43 -0
  131. gebpy/data_minerals/pennantite.yaml +61 -0
  132. gebpy/data_minerals/periclase.yaml +40 -0
  133. gebpy/data_minerals/phlogopite.yaml +57 -0
  134. gebpy/data_minerals/plattnerite.yaml +43 -0
  135. gebpy/data_minerals/powellite.yaml +45 -0
  136. gebpy/data_minerals/pyrite.yaml +40 -0
  137. gebpy/data_minerals/pyrolusite.yaml +43 -0
  138. gebpy/data_minerals/pyrophanite.yaml +45 -0
  139. gebpy/data_minerals/pyrophyllite.yaml +59 -0
  140. gebpy/data_minerals/quartz.yaml +43 -0
  141. gebpy/data_minerals/rhodochrosite.yaml +45 -0
  142. gebpy/data_minerals/rutile.yaml +43 -0
  143. gebpy/data_minerals/saponite.yaml +77 -0
  144. gebpy/data_minerals/scheelite.yaml +45 -0
  145. gebpy/data_minerals/scrutinyite.yaml +46 -0
  146. gebpy/data_minerals/senarmontite.yaml +40 -0
  147. gebpy/data_minerals/siderite.yaml +45 -0
  148. gebpy/data_minerals/siderophyllite.yaml +57 -0
  149. gebpy/data_minerals/smithsonite.yaml +45 -0
  150. gebpy/data_minerals/spinel.yaml +42 -0
  151. gebpy/data_minerals/stishovite.yaml +43 -0
  152. gebpy/data_minerals/stolzite.yaml +45 -0
  153. gebpy/data_minerals/talc.yaml +53 -0
  154. gebpy/data_minerals/tistarite.yaml +43 -0
  155. gebpy/data_minerals/trevorite.yaml +42 -0
  156. gebpy/data_minerals/ulvoespinel.yaml +42 -0
  157. gebpy/data_minerals/uraninite.yaml +40 -0
  158. gebpy/data_minerals/valentinite.yaml +46 -0
  159. gebpy/data_minerals/vermiculite.yaml +69 -0
  160. gebpy/data_minerals/wulfenite.yaml +45 -0
  161. gebpy/data_minerals/wustite.yaml +40 -0
  162. gebpy/data_minerals/zincite.yaml +43 -0
  163. gebpy/data_minerals/zincochromite.yaml +42 -0
  164. gebpy/data_rocks/__init__.py +0 -0
  165. gebpy/data_rocks/dolostone.yaml +40 -0
  166. gebpy/data_rocks/limestone.yaml +40 -0
  167. gebpy/data_rocks/marl.yaml +50 -0
  168. gebpy/data_rocks/sandstone.yaml +39 -0
  169. gebpy/data_rocks/shale.yaml +50 -0
  170. gebpy/gebpy_app.py +8732 -0
  171. gebpy/gui/__init__.py +0 -0
  172. gebpy/lib/images/GebPy_Header.png +0 -0
  173. gebpy/lib/images/GebPy_Icon.png +0 -0
  174. gebpy/lib/images/GebPy_Logo.png +0 -0
  175. gebpy/main.py +29 -0
  176. gebpy/modules/__init__.py +0 -0
  177. gebpy/modules/__pycache__/__init__.cpython-310.pyc +0 -0
  178. gebpy/modules/__pycache__/metamorphics.cpython-310.pyc +0 -0
  179. gebpy/modules/__pycache__/silicates.cpython-310.pyc +0 -0
  180. gebpy/modules/carbonates.py +2658 -0
  181. gebpy/modules/chemistry.py +1369 -0
  182. gebpy/modules/core.py +1805 -0
  183. gebpy/modules/elements.py +317 -0
  184. gebpy/modules/evaporites.py +1299 -0
  185. gebpy/modules/exploration.py +1145 -0
  186. gebpy/modules/fluids.py +339 -0
  187. gebpy/modules/geochemistry.py +1727 -0
  188. gebpy/modules/geophysics.py +351 -0
  189. gebpy/modules/gui.py +9093 -0
  190. gebpy/modules/gui_elements.py +145 -0
  191. gebpy/modules/halides.py +485 -0
  192. gebpy/modules/igneous.py +2241 -0
  193. gebpy/modules/metamorphics.py +3222 -0
  194. gebpy/modules/mineralogy.py +442 -0
  195. gebpy/modules/minerals.py +7954 -0
  196. gebpy/modules/ore.py +1648 -0
  197. gebpy/modules/organics.py +530 -0
  198. gebpy/modules/oxides.py +9057 -0
  199. gebpy/modules/petrophysics.py +98 -0
  200. gebpy/modules/phosphates.py +589 -0
  201. gebpy/modules/phospides.py +194 -0
  202. gebpy/modules/plotting.py +619 -0
  203. gebpy/modules/pyllosilicates.py +380 -0
  204. gebpy/modules/sedimentary_rocks.py +908 -0
  205. gebpy/modules/sequences.py +2166 -0
  206. gebpy/modules/series.py +1625 -0
  207. gebpy/modules/silicates.py +11102 -0
  208. gebpy/modules/siliciclastics.py +1846 -0
  209. gebpy/modules/subsurface_2d.py +179 -0
  210. gebpy/modules/sulfates.py +1629 -0
  211. gebpy/modules/sulfides.py +4786 -0
  212. gebpy/plotting/__init__.py +0 -0
  213. gebpy/ui_nb/__init__.py +0 -0
  214. gebpy/user_data/.gitkeep +0 -0
  215. gebpy-1.1.3.dist-info/LICENSE +165 -0
  216. gebpy-1.1.3.dist-info/METADATA +207 -0
  217. gebpy-1.1.3.dist-info/RECORD +254 -0
  218. gebpy-1.1.3.dist-info/WHEEL +5 -0
  219. gebpy-1.1.3.dist-info/entry_points.txt +2 -0
  220. gebpy-1.1.3.dist-info/top_level.txt +1 -0
  221. modules/__init__.py +0 -0
  222. modules/carbonates.py +2658 -0
  223. modules/chemistry.py +1369 -0
  224. modules/core.py +1805 -0
  225. modules/elements.py +317 -0
  226. modules/evaporites.py +1299 -0
  227. modules/exploration.py +765 -0
  228. modules/fluids.py +339 -0
  229. modules/geochemistry.py +1727 -0
  230. modules/geophysics.py +337 -0
  231. modules/gui.py +9093 -0
  232. modules/gui_elements.py +145 -0
  233. modules/halides.py +485 -0
  234. modules/igneous.py +2196 -0
  235. modules/metamorphics.py +2699 -0
  236. modules/mineralogy.py +442 -0
  237. modules/minerals.py +7954 -0
  238. modules/ore.py +1628 -0
  239. modules/organics.py +530 -0
  240. modules/oxides.py +9057 -0
  241. modules/petrophysics.py +98 -0
  242. modules/phosphates.py +589 -0
  243. modules/phospides.py +194 -0
  244. modules/plotting.py +619 -0
  245. modules/pyllosilicates.py +380 -0
  246. modules/sedimentary_rocks.py +908 -0
  247. modules/sequences.py +2166 -0
  248. modules/series.py +1625 -0
  249. modules/silicates.py +11102 -0
  250. modules/siliciclastics.py +1830 -0
  251. modules/subsurface_2d.py +179 -0
  252. modules/sulfates.py +1629 -0
  253. modules/sulfides.py +4786 -0
  254. notebooks/__init__.py +0 -0
@@ -0,0 +1,53 @@
1
+ mineral: Antigorite
2
+ group: Phyllosilicates
3
+ formula: Mg3 Si2 O5 (OH)4
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Atg"
8
+ crystal_system: "monoclinic"
9
+
10
+ chemistry:
11
+ Mg: 3
12
+ Si: 2
13
+ O: 9
14
+ H: 4
15
+
16
+ oxides:
17
+ MgO: 1
18
+ SiO2: 1
19
+ H2O: 1
20
+
21
+ physical_properties:
22
+ K:
23
+ value: 108.82e9
24
+ ref: "unknown"
25
+ G:
26
+ value: 58.17e9
27
+ ref: "unknown"
28
+
29
+ cell_data:
30
+ space_group:
31
+ value: "Cm"
32
+ ref: "www.handbookofmineralogy.org"
33
+ a:
34
+ value: 43.53
35
+ ref: "www.handbookofmineralogy.org"
36
+ b:
37
+ value: 9.259
38
+ ref: "www.handbookofmineralogy.org"
39
+ c:
40
+ value: 7.263
41
+ ref: "www.handbookofmineralogy.org"
42
+ beta:
43
+ value: 91.633
44
+ ref: "www.webmineral.com"
45
+ Z:
46
+ value: 16
47
+ ref: "www.handbookofmineralogy.org"
48
+
49
+ sources:
50
+ - author: "unknown"
51
+ title: "unknown"
52
+ publisher: "www.handbookofmineralogy.org"
53
+ url: ["www.handbookofmineralogy.org", "www.webmineral.com"]
@@ -0,0 +1,48 @@
1
+ mineral: Aragonite
2
+ group: Carbonates
3
+ formula: Ca C O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Arg"
8
+ crystal_system: "orthorhombic"
9
+
10
+ chemistry:
11
+ Ca: 1
12
+ C: 1
13
+ O: 3
14
+
15
+ oxides:
16
+ CaO: 1
17
+ CO2: 1
18
+
19
+ physical_properties:
20
+ K:
21
+ value: 69.0e9
22
+ ref: "unknown"
23
+ G:
24
+ value: 33.0e9
25
+ ref: "unknown"
26
+
27
+ cell_data:
28
+ space_group:
29
+ value: "Pmcn"
30
+ ref: "www.handbookofmineralogy.org"
31
+ a:
32
+ value: 4.9611
33
+ ref: "www.handbookofmineralogy.org"
34
+ b:
35
+ value: 7.9672
36
+ ref: "www.handbookofmineralogy.org"
37
+ c:
38
+ value: 5.7407
39
+ ref: "www.handbookofmineralogy.org"
40
+ Z:
41
+ value: 4
42
+ ref: "www.handbookofmineralogy.org"
43
+
44
+ sources:
45
+ - author: "unknown"
46
+ title: "unknown"
47
+ publisher: "www.handbookofmineralogy.org"
48
+ url: ["www.handbookofmineralogy.org", "www.webmineral.com"]
@@ -0,0 +1,43 @@
1
+ mineral: Argutite
2
+ group: Oxides
3
+ formula: GeO2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Argt"
8
+ crystal_system: "tetragonal"
9
+
10
+ chemistry:
11
+ Ge: 1
12
+ O: 2
13
+
14
+ oxides:
15
+ GeO2: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 206.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 123.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "P4mnm"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 4.3963
31
+ ref: "www.webmineral.com"
32
+ c:
33
+ value: 2.8626
34
+ ref: "www.webmineral.com"
35
+ Z:
36
+ value: 2
37
+ ref: "www.webmineral.com"
38
+
39
+ sources:
40
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
41
+ title: "Handbook of Mineralogy"
42
+ publisher: "Mineralogical Society of America, Chantilly, VA"
43
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,40 @@
1
+ mineral: Arsenolite
2
+ group: Oxides
3
+ formula: As2O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Aso"
8
+ crystal_system: "cubic"
9
+
10
+ chemistry:
11
+ As: 2
12
+ O: 3
13
+
14
+ oxides:
15
+ As2O3: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 51.65e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 21.5e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "Fd3m"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 11.0457
31
+ ref: "www.webmineral.com"
32
+ Z:
33
+ value: 16
34
+ ref: "www.webmineral.com"
35
+
36
+ sources:
37
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
38
+ title: "Handbook of Mineralogy"
39
+ publisher: "Mineralogical Society of America, Chantilly, VA"
40
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,46 @@
1
+ mineral: Au(III)-Oxide
2
+ group: Oxides
3
+ formula: Au2O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Au2O3"
8
+ crystal_system: "orthorhombic"
9
+
10
+ chemistry:
11
+ Au: 2
12
+ O: 3
13
+
14
+ oxides:
15
+ Au2O3: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 81.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 38.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "Fdd2"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 3.91
31
+ ref: "www.webmineral.com"
32
+ b:
33
+ value: 10.54
34
+ ref: "www.webmineral.com"
35
+ c:
36
+ value: 12.88
37
+ ref: "www.webmineral.com"
38
+ Z:
39
+ value: 8
40
+ ref: "www.webmineral.com"
41
+
42
+ sources:
43
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
44
+ title: "Handbook of Mineralogy"
45
+ publisher: "Mineralogical Society of America, Chantilly, VA"
46
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,40 @@
1
+ mineral: Avicennite
2
+ group: Oxides
3
+ formula: Tl2O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Avcn"
8
+ crystal_system: "cubic"
9
+
10
+ chemistry:
11
+ Tl: 2
12
+ O: 3
13
+
14
+ oxides:
15
+ Tl2O3: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 109.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 32.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "Ia3"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 10.5468
31
+ ref: "www.webmineral.com"
32
+ Z:
33
+ value: 10
34
+ ref: "www.webmineral.com"
35
+
36
+ sources:
37
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
38
+ title: "Handbook of Mineralogy"
39
+ publisher: "Mineralogical Society of America, Chantilly, VA"
40
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,53 @@
1
+ mineral: Azurite
2
+ group: Carbonates
3
+ formula: Cu3 (CO3)2 (OH)2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Az"
8
+ crystal_system: "monoclinic"
9
+
10
+ chemistry:
11
+ Cu: 3
12
+ C: 2
13
+ O: 8
14
+ H: 2
15
+
16
+ oxides:
17
+ CuO: 1
18
+ CO2: 1
19
+ H2O: 1
20
+
21
+ physical_properties:
22
+ K:
23
+ value: 112.35e9
24
+ ref: "unknown"
25
+ G:
26
+ value: 49.33e9
27
+ ref: "unknown"
28
+
29
+ cell_data:
30
+ space_group:
31
+ value: "P21c"
32
+ ref: "www.handbookofmineralogy.org"
33
+ a:
34
+ value: 5.0109
35
+ ref: "www.handbookofmineralogy.org"
36
+ b:
37
+ value: 5.8485
38
+ ref: "www.handbookofmineralogy.org"
39
+ c:
40
+ value: 10.345
41
+ ref: "www.handbookofmineralogy.org"
42
+ beta:
43
+ value: 92.43
44
+ ref: "www.handbookofmineralogy.org"
45
+ Z:
46
+ value: 2
47
+ ref: "www.handbookofmineralogy.org"
48
+
49
+ sources:
50
+ - author: "unknown"
51
+ title: "unknown"
52
+ publisher: "www.handbookofmineralogy.org"
53
+ url: ["www.handbookofmineralogy.org", "www.webmineral.com"]
@@ -0,0 +1,49 @@
1
+ mineral: Baddeleyite
2
+ group: Oxides
3
+ formula: ZrO2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Bdy"
8
+ crystal_system: "monoclinic"
9
+
10
+ chemistry:
11
+ Zr: 1
12
+ O: 2
13
+
14
+ oxides:
15
+ ZrO2: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 183.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 85.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "P4mnm"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 5.1477
31
+ ref: "www.webmineral.com"
32
+ b:
33
+ value: 5.203
34
+ ref: "www.webmineral.com"
35
+ c:
36
+ value: 5.3156
37
+ ref: "www.webmineral.com"
38
+ beta:
39
+ value: 99.38
40
+ ref: "www.webmineral.com"
41
+ Z:
42
+ value: 4
43
+ ref: "www.webmineral.com"
44
+
45
+ sources:
46
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
47
+ title: "Handbook of Mineralogy"
48
+ publisher: "Mineralogical Society of America, Chantilly, VA"
49
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,49 @@
1
+ mineral: Bismite
2
+ group: Oxides
3
+ formula: Bi2O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Bism"
8
+ crystal_system: "monoclinic"
9
+
10
+ chemistry:
11
+ Bi: 2
12
+ O: 3
13
+
14
+ oxides:
15
+ Bi2O3: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 54.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 30.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "P21c"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 5.83
31
+ ref: "www.webmineral.com"
32
+ b:
33
+ value: 8.14
34
+ ref: "www.webmineral.com"
35
+ c:
36
+ value: 7.48
37
+ ref: "www.webmineral.com"
38
+ beta:
39
+ value: 67.066
40
+ ref: "www.webmineral.com"
41
+ Z:
42
+ value: 4
43
+ ref: "www.webmineral.com"
44
+
45
+ sources:
46
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
47
+ title: "Handbook of Mineralogy"
48
+ publisher: "Mineralogical Society of America, Chantilly, VA"
49
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,48 @@
1
+ mineral: Boehmite
2
+ group: Oxides
3
+ formula: AlO(OH)
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Bhm"
8
+ crystal_system: "orthorhombic"
9
+
10
+ chemistry:
11
+ Al: 1
12
+ O: 2
13
+ H: 1
14
+
15
+ oxides:
16
+ Al2O3: 1
17
+ H2O: 1
18
+
19
+ physical_properties:
20
+ K:
21
+ value: 46.0e9
22
+ ref: "unknown"
23
+ G:
24
+ value: 34.0e9
25
+ ref: "unknown"
26
+
27
+ cell_data:
28
+ space_group:
29
+ value: "Amam"
30
+ ref: "www.webmineral.com"
31
+ a:
32
+ value: 2.868
33
+ ref: "www.webmineral.com"
34
+ b:
35
+ value: 12.227
36
+ ref: "www.webmineral.com"
37
+ c:
38
+ value: 3.7
39
+ ref: "www.webmineral.com"
40
+ Z:
41
+ value: 4
42
+ ref: "www.webmineral.com"
43
+
44
+ sources:
45
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
46
+ title: "Handbook of Mineralogy"
47
+ publisher: "Mineralogical Society of America, Chantilly, VA"
48
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,46 @@
1
+ mineral: Brookite
2
+ group: Oxides
3
+ formula: TiO2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Brk"
8
+ crystal_system: "orthorhombic"
9
+
10
+ chemistry:
11
+ Ti: 1
12
+ O: 2
13
+
14
+ oxides:
15
+ TiO2: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 191.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 78.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "Pcab"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 5.456
31
+ ref: "www.webmineral.com"
32
+ b:
33
+ value: 9.182
34
+ ref: "www.webmineral.com"
35
+ c:
36
+ value: 5.143
37
+ ref: "www.webmineral.com"
38
+ Z:
39
+ value: 8
40
+ ref: "www.webmineral.com"
41
+
42
+ sources:
43
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
44
+ title: "Handbook of Mineralogy"
45
+ publisher: "Mineralogical Society of America, Chantilly, VA"
46
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,45 @@
1
+ mineral: Brucite
2
+ group: Oxides
3
+ formula: Mg(OH)2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Bru"
8
+ crystal_system: "trigonal"
9
+
10
+ chemistry:
11
+ Mg: 1
12
+ O: 2
13
+ H: 2
14
+
15
+ oxides:
16
+ MgO: 1
17
+ H2O: 1
18
+
19
+ physical_properties:
20
+ K:
21
+ value: 46.0e9
22
+ ref: "unknown"
23
+ G:
24
+ value: 34.0e9
25
+ ref: "unknown"
26
+
27
+ cell_data:
28
+ space_group:
29
+ value: "P3m1"
30
+ ref: "www.webmineral.com"
31
+ a:
32
+ value: 3.147
33
+ ref: "www.webmineral.com"
34
+ c:
35
+ value: 4.769
36
+ ref: "www.webmineral.com"
37
+ Z:
38
+ value: 1
39
+ ref: "www.webmineral.com"
40
+
41
+ sources:
42
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
43
+ title: "Handbook of Mineralogy"
44
+ publisher: "Mineralogical Society of America, Chantilly, VA"
45
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,40 @@
1
+ mineral: Bunsenite
2
+ group: Oxides
3
+ formula: NiO
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Bsn"
8
+ crystal_system: "cubic"
9
+
10
+ chemistry:
11
+ Ni: 1
12
+ O: 1
13
+
14
+ oxides:
15
+ NiO: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 131.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 98.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "Fm3m"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 4.1768
31
+ ref: "www.webmineral.com"
32
+ Z:
33
+ value: 4
34
+ ref: "www.webmineral.com"
35
+
36
+ sources:
37
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
38
+ title: "Handbook of Mineralogy"
39
+ publisher: "Mineralogical Society of America, Chantilly, VA"
40
+ url: "http://www.handbookofmineralogy.org/"
@@ -0,0 +1,45 @@
1
+ mineral: Calcite
2
+ group: Carbonates
3
+ formula: Ca C O3
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Cal"
8
+ crystal_system: "trigonal"
9
+
10
+ chemistry:
11
+ Ca: 1
12
+ C: 1
13
+ O: 3
14
+
15
+ oxides:
16
+ CaO: 1
17
+ CO2: 1
18
+
19
+ physical_properties:
20
+ K:
21
+ value: 76.0e9
22
+ ref: "unknown"
23
+ G:
24
+ value: 32.0e9
25
+ ref: "unknown"
26
+
27
+ cell_data:
28
+ space_group:
29
+ value: "R3c"
30
+ ref: "www.handbookofmineralogy.org"
31
+ a:
32
+ value: 4.9896
33
+ ref: "www.handbookofmineralogy.org"
34
+ c:
35
+ value: 17.0610
36
+ ref: "www.handbookofmineralogy.org"
37
+ Z:
38
+ value: 6
39
+ ref: "www.handbookofmineralogy.org"
40
+
41
+ sources:
42
+ - author: "unknown"
43
+ title: "unknown"
44
+ publisher: "www.handbookofmineralogy.org"
45
+ url: ["www.handbookofmineralogy.org", "www.webmineral.com"]
@@ -0,0 +1,43 @@
1
+ mineral: Cassiterite
2
+ group: Oxides
3
+ formula: SnO2
4
+ last updated: 10.12.2025
5
+
6
+ metadata:
7
+ key: "Cst"
8
+ crystal_system: "tetragonal"
9
+
10
+ chemistry:
11
+ Sn: 1
12
+ O: 2
13
+
14
+ oxides:
15
+ SnO2: 1
16
+
17
+ physical_properties:
18
+ K:
19
+ value: 172.0e9
20
+ ref: "unknown"
21
+ G:
22
+ value: 87.0e9
23
+ ref: "unknown"
24
+
25
+ cell_data:
26
+ space_group:
27
+ value: "P4mnm"
28
+ ref: "www.webmineral.com"
29
+ a:
30
+ value: 4.738
31
+ ref: "www.webmineral.com"
32
+ c:
33
+ value: 3.118
34
+ ref: "www.webmineral.com"
35
+ Z:
36
+ value: 2
37
+ ref: "www.webmineral.com"
38
+
39
+ sources:
40
+ - author: "John W. Anthony, Richard A. Bideaux, Kenneth W. Bladh, and Monte C. Nichols"
41
+ title: "Handbook of Mineralogy"
42
+ publisher: "Mineralogical Society of America, Chantilly, VA"
43
+ url: "http://www.handbookofmineralogy.org/"