-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaterials.json
2749 lines (2749 loc) · 94.4 KB
/
materials.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"revision": "0.3.2"
},
{
"id": 0,
"label": "Corundum",
"aliases": "Sapphire, Ruby, or Carbuncle",
"desc": "Corundum is one of the most common synthetic materials grown today. It's an extremely versatile product with exceptional properties. In nature, this material is often known by the variety names Sapphire and Ruby. It is sought after because of its optimal hardness and variety of possible colorations. Add on the fact that it's easy to produce, and it's not hard to see why it's one of the most popular materials in the world for both scientific and gemological use.<br><br>As far as synthetic corundum, some of the most common usecases involve specialty optics, such as in Thermal Sensors, Lasers, High-Durability Screens / Viewports, Specialty Lenses, and even in Weaponry / Imaging systems.<br><br>Corundum can also be used in Machining, Bearings, and Polishing. Furthermore, Alumina Ceramics (Microcorundum crystals suspended in solid alumina) are also extensively used across the industry. Most commonly they're used as a high-temperature ceramic barrier, but have also seen use in grinding or even in sintering to produce extremely large optical boules.<br><br>Part of the reason for its wide availability and use is how easy it is to produce. It can be synthesized using a massive variety of methods, some not even listed here. Not to mention, alumina is cheap and easy to purify, making production even simpler. See below for a list of common production methods.",
"synthesis": ["czok", "vern", "flux", "hdth", "kyrp", "sint", "edfg", "zone"],
"chem_prop": {
"chemical": "Aluminium Oxide",
"formula": "Al_2_O_3_",
"genmol": true,
"mohs_min": 9,
"mohs_max": 9,
"grav_min": 3.95,
"grav_max": 4.1,
"melt_pnt": 2044
},
"optic_prop": {
"type": "Uniaxial (-)",
"ref_min": [1.762, 1.759],
"ref_max": [1.788, 1.763],
"disp_min": 0.018,
"disp_max": 0.018,
"bir_min": 0.008,
"bir_max": 0.009
},
"cry_prop": {
"parent": "Hematite Group",
"system": "Trigonal"
},
"minID": 1136,
"neutral": {
"color": "Colorless",
"usage": "Bearings, Clock Jewels, Specialty Optics",
"imgsrc": "Site Owner"
},
"variants": [
{
"id": "0",
"label": "Ruby",
"cause": "Chromium Ions",
"color": "Red, Pink, Magenta",
"fluor": "Red, Pink (UVC)",
"usage": "Lasers, Bearings, Clock Jewels",
"imgsrc": "https://www.langantiques.com/university/czochralski/"
},
{
"id": "1",
"label": "Padparadscha",
"cause": "Iron and Chromium Ions",
"color": "Purple, Pink, Salmon, Orange",
"imgsrc": "Unknown"
},
{
"id": "2",
"label": "Typical Sapphire",
"cause": "Iron and Titanium Ions",
"color": "Blue",
"usage": "Bearings, Clock Jewels",
"imgsrc": "https://www.gemsngems.com/product/lab-created-blue-sapphire-rough/"
},
{
"id": "3",
"cause": "Iron Ions",
"color": "Green, Yellow, Orange",
"imgsrc": "https://www.gemsngems.com/product/lab-created-yellow-sapphire-rough/"
},
{
"id": "4",
"label": "Laser Sapphire",
"cause": "Titanium Ions",
"color": "Red, Pink, Orange",
"usage": "Laser Rods, Specialty Optics",
"imgsrc": "https://www.civillaser.com/index.php?main_page=product_info&products_id=1762"
},
{
"id": "5",
"cause": "Cobalt Ions",
"color": "Blue, Cyan, Green",
"imgsrc": "https://www.etsy.com/listing/1648770374/dark-paraiba-colored-lab-created?frs=1&sts=1"
},
{
"id": "6",
"label": "'Alexandrite' Sapphire",
"cause": "Vanadium Ions",
"color": "Purple, Red, Green, Blue, etc",
"effect": "Color Change",
"imgsrc": "https://www.etsy.com/listing/1218426689/alexandrite-46-colored-lab-created"
},
{
"id": "7",
"label": "Star Sapphire / Ruby",
"cause": "Rutile (TiO2) Inclusions",
"effect": "Asterism / Cat's Eye",
"imgsrc": "Site Owner"
}
]
},
{
"id": 1,
"label": "Spinel",
"aliases": "",
"desc": "Spinel is a quite common synthetic material. It is unique in the aspect that it doesn't have a large amount of industrial uses beyond a few specific varieties. Most commonly you may come by synthetic spinels in the gem industry. Like corundum, spinel is easy to grow and cheap. It also has a large amount of stable colors with known dopants. In nature, it is quite a sought-after mineral for the very same reasons. There are a large variety of colors and gem qualities from some finds.<br><br>Interestingly, a very specific blue variety of spinel, called Cobalt Spinel (which is, as its name implies, doped with cobalt) is actively used industrially as a Q-Switcher. This allows it to be used in some forms of specialty lasers, mostly in the medical industry. This variety of spinel does exist in nature, though it is much more rare and valuable.",
"synthesis": ["czok", "vern", "flux"],
"chem_prop": {
"chemical": "Magnesium Aluminium Oxide",
"formula": "MgAl_2_O_4_",
"genmol": true,
"mohs_min": 7.5,
"mohs_max": 8,
"grav_min": 3.6,
"grav_max": 4.1,
"melt_pnt": 2130
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 1.712,
"ref_max": 1.736,
"disp_min": 0.026,
"disp_max": 0.026
},
"cry_prop": {
"parent": "Spinel Subgroup",
"system": "Isometric"
},
"minID": 3729,
"variants": [
{
"id": "0",
"label": "Typical Spinel",
"cause": "Chromium Ions",
"color": "Red, Pink",
"fluor": "Red",
"imgsrc": "https://www.gemsngems.com/product/lab-created-pulled-czochralski-red-spinel-rough/"
},
{
"id": "1",
"label": "Cobalt Spinel",
"cause": "Cobalt Ions",
"color": "Blue, Cyan",
"fluor": "Red (UVA), Cyan (UVC)",
"usage": "Q-Switchers, Laser Rods",
"imgsrc": "https://www.etsy.com/listing/1605713029/cobalt-blue-114-djeva-lab-created-spinel"
}
]
},
{
"id": 2,
"label": "Beryl",
"aliases": "Goshenite, Emerald, Morganite, Red Beryl, Aquamarine, Heliodor, Maxixe, Davidsonite, Rosterite, or Vorobyevite",
"desc": "Beryl is not often thought of when it comes to synthetic materials, but it's actually quite common in the gem industry. Beryl in of itself doesn't have much or really any industrial use, but it is exceptionally popular in gemology for obvious reasons. The main method of production for it (hydrothermal) also makes very realistical / natural looking stones with inclusions, similarly to natural specimens. Flux synthesis does aswell, though it's not nearly as common of a production method in the modern era.<br><br> A large benefit of synthetic beryl is that it costs far less and can be grown in basically any of the natural color varieties. Unfortunately, the gem industry has kept quite a tight hold on the mass-production of synthetic beryl, so finding it for reasonable prices can still be difficult.",
"synthesis": ["hdth", "flux"],
"chem_prop": {
"chemical": "Beryllium Aluminium Cyclosilicate",
"formula": "Be_3_Al_2_(Si_6_O_18_)",
"molform": "Al_2_Be_3_O_18_Si_6_",
"genmol": true,
"mohs_min": 7.5,
"mohs_max": 8,
"grav_min": 2.63,
"grav_max": 2.92
},
"optic_prop": {
"type": "Uniaxial (-)",
"ref_min": [1.568, 1.564],
"ref_max": [1.602, 1.595],
"disp_min": 0.014,
"disp_max": 0.014,
"bir_min": 0.004,
"bir_max": 0.007
},
"cry_prop": {
"parent": "Beryl Group",
"system": "Hexagonal"
},
"minID": 819,
"variants": [
{
"id": "0",
"label": "Emerald",
"cause": "Chromium, Vanadium, Copper and Iron Ions",
"color": "Green, Cyan, Lime",
"fluor": "Red",
"imgsrc": "https://djeva.com/collections/lab-emerald"
},
{
"id": "1",
"label": "Morganite, Red Beryl",
"cause": "Manganese Ions",
"color": "Pink, Magenta, Red",
"imgsrc": "Unknown"
},
{
"id": "2",
"label": "Aquamarine, Heliodor",
"cause": "Iron Ions",
"color": "Blue, Cyan, Yellow, Orange",
"imgsrc": "https://www.ebay.com/itm/155056421996"
},
{
"id": "3",
"label": "(Needs Research)",
"cause": "Cobalt, Copper, and other Ions.",
"color": "Blue, Cyan, Green",
"effect": "Pleochroism",
"imgsrc": "Site Owner"
},
{
"id": "4",
"label": "Red Beryl",
"cause": "Cobalt and Manganese Ions",
"color": "Red, Orange",
"imgsrc": "https://tomsboxofrocks.com/collections/beryl"
}
]
},
{
"id": 3,
"label": "Quartz",
"aliases": "Rock Crystal, Agate, Chalcedony, Smokey Quartz, Amethyst, Citrine, Rose Quartz, Prasiolite, Prase, Morion, Qwindel, Quartzine, Aventurine, Ametrine, Jasper, Carnelian, Herkimer Diamond, Onyx, or Sardonyx",
"desc": "Quartz is one of the most common synthetic crystals in the industry. It's extremely useful in a variety of technologies and is central to modern computing technology. For this reason, it has been optimized and developed to a scale that producing it costs very little money. Large optics grade crystals can be purchased for less then 30 USD per kilogram. It's even cheaper then synthetic corundum. Add on the fact that hydrothermally, it grows with nil to no inclusions (unlike beryl), it is quite optimal for both industrial and gemological use.<br><br>Most commonly, you will find synthetic quartz used within Piezoelectrics. Quartz, when charged with the right current, outputs a nearly flawless sine wave which can be measured and used in electrical circuits. These kinds of crystals are called Oscillators. This aspect is what makes it so important for timing circuits. Furthermore, you'll often come by synthetic quartz in high temperature containers, such as Quartz Tube Furnaces or as viewports and high pressure windows. Quartz tubes and machined containers are extremely useful in chemical sciences, because quartz is far tougher and harder then normal glass, while also being even less susceptible to high temperatures. It also retains the optical clarity and chemical resistance of glass.<br><br>Beyond just industrial use, quartz also has quite a few artificial varieties that come in different colors. Some have even managed to recreate transitional zoning. This limited but colorful set of varieties has made it even more popular to grow, and it has appeared quite often in the form of cut stones meant to replicate common colorful varieties of natural quartz, like citrine and amethyst.",
"synthesis": ["hdth"],
"chem_prop": {
"chemical": "Silicon Oxide",
"formula": "SiO_2_",
"genmol": true,
"mohs_min": 7,
"mohs_max": 7,
"grav_min": 2.65,
"grav_max": 2.66,
"melt_pnt": 1700
},
"optic_prop": {
"type": "Uniaxial (+)",
"ref_min": [1.544, 1.553],
"ref_max": [1.544, 1.553],
"disp_min": 0.013,
"disp_max": 0.013,
"bir_min": 0.009,
"bir_max": 0.009
},
"cry_prop": {
"system": "Trigonal"
},
"add_prop": [
["Inherent", ["Piezoelectric", "Thermoluminescent"]]
],
"minID": 3337,
"neutral": {
"color": "Colorless",
"imgsrc": "Unknown"
},
"variants": [
{
"id": "0",
"label": "Amethyst",
"cause": "Iron Ions",
"color": "Pale Pink, Purple, Violet",
"imgsrc": "https://www.gemsngems.com/product/lab-created-amethyst-quartz-rough/"
},
{
"id": "1",
"label": "Smoky Quartz",
"cause": "Iraddiation with Aluminium Ions",
"color": "Gray, Brown",
"imgsrc": "https://www.gemsngems.com/product/lab-created-smoky-quartz-rough/"
},
{
"id": "2",
"label": "Citrine",
"cause": "Iron Oxide Suspension",
"color": "Yellow, Orange, Brown",
"imgsrc": "https://www.alibaba.com/product-detail/Hydrothermal-quartz-synthetic-gems-rough_60494569676.html"
},
{
"id": "3",
"label": "Pink Quartz",
"cause": "Iraddiation with Aluminium and Phosphorous Ions",
"color": "Pink"
},
{
"id": "4",
"label": "Cobalt Quartz",
"cause": "Cobalt Ions",
"color": "Blue",
"usage": "Specialty Optics",
"imgsrc": "https://www.alibaba.com/product-detail/Hydrothermal-quartz-synthetic-gems-rough_60494569676.html"
}
]
},
{
"id": 4,
"label": "Cubic Zirconia",
"aliases": "Diamonique, Diamonite, Djevalite, YCZ, or CZ",
"desc": "Right next to Corundum on the production scale is Cubic Zirconia. Scientifically referred to as Yttria-Stabilized Zirconium Oxide (Yttrium Oxide is often included to stabilize the structure into a cubic form). This material has made its way to the top of the most common diamond simulants on the market. It's exceptionally easy to make, comes in just about any color you can think of, is harder then quartz, is very durable / tough, has a refractive index close to diamond, and a dispersion factor that is greater than diamond. These facts have made it one of the most popular gemstones in the world, even though it doesnt occur naturally (Atleast not in significant enough quantities to matter). The only comparable / better simulant would be moissanite, but due to production costs, CZ has held its thrown for many years now.<br><br>Cubic Zirconia, interestingly enough, doesnt have a huge amount of industrial uses. However, it's ceramic is incredibly common in the industry. Most 'ceramic knives' you may have ever come by, are usually made of CZ ceramic. Its toughness, affordability, and temperature resistance have made it into a very attractive but cheap material for high quality blades. The ceramics can be polished to a mirror finish and machined into really any shape.",
"synthesis": ["skul", "sint"],
"chem_prop": {
"chemical": "Yttria-Stabilized Zirconium Oxide",
"formula": "Y_2_O_3_:ZrO_2_",
"mohs_min": 8,
"mohs_max": 8.5,
"grav_min": 5.6,
"grav_max": 6.0,
"melt_pnt": 2750
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 2.150,
"ref_max": 2.182,
"disp_min": 0.058,
"disp_max": 0.066
},
"cry_prop": {
"system": "Isometric"
},
"neutral": {
"color": "Colorless to Lavender",
"imgsrc": "Unknown"
},
"variants": [
{
"id": "0",
"cause": "Ce, CeO_2_, Ce_2_O_3_",
"color": "Yellow, Orange, Red",
"imgsrc": "Unknown"
},
{
"id": "1",
"cause": "Chromium and Vanadium Ions",
"color": "Green",
"imgsrc": "Unknown"
},
{
"id": "2",
"cause": "Cr_2_O_3_, Tm_2_O_3_, V_2_O_3_",
"color": "Green, Olive",
"imgsrc": "Unknown"
},
{
"id": "3",
"cause": "Er, Eu, Er_2_O_3_, Eu_2_O_3_, Ho_2_O_3_",
"color": "Pink",
"imgsrc": "Unknown"
},
{
"id": "4",
"cause": "Co_2_O_3_, MnO_2_, Nd_2_O_3_",
"color": "Lilac, Violet",
"imgsrc": "Unknown"
},
{
"id": "5",
"cause": "Cobalt Ions",
"color": "Lilac, Violet, Blue",
"imgsrc": "Unknown"
},
{
"id": "6",
"cause": "CuO, Fe_2_O_3_, NiO, Pr_2_O_3_, TiO_2_",
"color": "Yellow, Amber, Brown",
"imgsrc": "Unknown"
},
{
"id": "7",
"cause": "Copper Ions",
"color": "Yellow, Pale Blue",
"imgsrc": "Unknown"
},
{
"id": "8",
"cause": "Iron Ions",
"color": "Yellow",
"imgsrc": "Unknown"
},
{
"id": "9",
"cause": "Holmium Ions",
"color": "Pale Brown",
"imgsrc": "Unknown"
},
{
"id": "10",
"cause": "Manganese Ions",
"color": "Brown, Violet",
"imgsrc": "Unknown"
},
{
"id": "11",
"cause": "Neodymium Ions",
"color": "Purple",
"imgsrc": "Unknown"
},
{
"id": "12",
"cause": "Nickel and Thulium Ions",
"color": "Yellow, Brown",
"imgsrc": "Unknown"
},
{
"id": "13",
"cause": "Praseodymium Ions",
"color": "Amber",
"imgsrc": "Unknown"
},
{
"id": "14",
"cause": "Titanium Ions",
"color": "Amber, Brown",
"imgsrc": "Unknown"
}
]
},
{
"id": 54,
"label": "BZO",
"aliases": "BCZ",
"desc": "",
"synthesis": ["skul"],
"chem_prop": {
"chemical": "Barium Zirconate",
"formula": "BaZrO_3_",
"genmol": true,
"mohs_min": "?",
"mohs_max": "?",
"grav_min": 5.52,
"grav_max": 5.52,
"melt_pnt": 2600
},
"optic_prop": {
"type": "Isotropic",
"ref_min": "?",
"ref_max": "?",
"disp_min": "?",
"disp_max": "?"
},
"cry_prop": {
"system": "Isometric"
},
"neutral": {
"color": "Colorless",
"imgsrc": "https://surfacenet.de/files/kristall_daten.php?crystal=156"
}
},
{
"id": 5,
"label": "Fluorite",
"aliases": "Fluorspar or Fluoride",
"desc": "Fluorite is an interesting material. It produces some of the most visually appealing mineral specimens in nature, with a huge variety of colors and habits. Add on it's weak refractive index, and it has made for very visually interesting cubic specimens.<br><br>Industrially, it's rather unique. It has optical qualities that make it exceptionally attractive for use. It allows a large range of wavelengths to pass through without issues. Still, it is among the rarer synthetics out there. It's quite uncommon to come by lenses made out of it, let alone uncut boules. Sadly it's not always preferred in some situations because fluoride lenses still suffer from the softness, brittleness, and thermal sensitivity of natural fluorite. This makes it less optimal for situations where tougher lenses are required for the environment that they're being used in.",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Calcium Fluoride",
"formula": "CaF_2_",
"genmol": true,
"mohs_min": 4,
"mohs_max": 4,
"grav_min": 3.175,
"grav_max": 3.56,
"melt_pnt": 1360
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 1.433,
"ref_max": 1.448,
"disp_min": 0.007,
"disp_max": 0.007
},
"cry_prop": {
"parent": "Fluorite Group",
"system": "Isometric"
},
"minID": 1576,
"neutral": {
"color": "Colorless"
},
"variants": [
{
"id": "0",
"label": "Eu:CaF2",
"cause": "Europium Ions",
"color": "Colorless",
"fluor": "Blue",
"usage": "Specialty Scintillators, Sensors",
"imgsrc": "https://www.epic-crystal.com/scintillation-crystals/caf2eu-crystal.html",
"var_prop": {
"add_prop": [
["Scintillescent", "Peak: 435nm (Blue)<br>Output: 19,000 ph/MeV"]
]
}
}
]
},
{
"id": 59,
"label": "Barium Fluoride",
"aliases": "",
"desc": "",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Barium Fluoride",
"formula": "BaF_2_",
"genmol": true,
"mohs_min": 3,
"mohs_max": 3,
"grav_min": 4.893,
"grav_max": 4.893,
"melt_pnt": 1386
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 1.4744,
"ref_max": 1.557,
"disp_min": "?",
"disp_max": "?"
},
"cry_prop": {
"parent": "Fluorite Group",
"system": "Isometric"
},
"minID": 1596,
"neutral": {
"color": "Colorless",
"imgsrc": "https://www.icc.ltd/barium-fluoridebaf2/"
}
},
{
"id": 6,
"label": "Rutile",
"aliases": "Titania",
"desc": "Rutile is a unique material in regards to material science and optics. Among all optically useful materials, it has one of the highest refractive indexes in the visible spectrum. It also has the highest known visible spectrum dispersion of any known material. Faceted stones made of this synthetic rutile display the most color and refractivity of any material known to man, which has made it a sought-after collectible for enthusiasts of exotic gemstones. The only downside to rutile is its hardness, which makes it less attractive for use in decorational jewelry. Generally, Rutile is used industrially for piezoelectrics. It has some attractive properties which have made it a popular option in certain situations, but its complexity and difficulties in synthesis have made it troublesome in research. The primary process of growth is the Verneuil Method. Crystals of rutile grown this way almost never form pure, and tend to be heat treated after synthesis to create optical boules. These boules are also rarely colorless, and are stained a pale orange color (Though it can be grown to express dimorphs of natural titanium oxide, such as Anatase, which is blue). These troubles have led to disinterest in synthesizing large quantities of the material, which make it a rare and valuable collectible for gem enthusiasts and collectors.\n\n",
"synthesis": ["vern", "sint"],
"chem_prop": {
"chemical": "Titanium Oxide",
"formula": "TiO_2_",
"genmol": true,
"mohs_min": 6,
"mohs_max": 6.5,
"grav_min": 4.23,
"grav_max": 4.23,
"melt_pnt": 1850
},
"optic_prop": {
"type": "Uniaxial (+)",
"ref_min": [2.605, 2.899],
"ref_max": [2.613, 2.901],
"disp_min": 0.28,
"disp_max": 0.33,
"bir_min": 0.294,
"bir_max": 0.296
},
"cry_prop": {
"parent": "Rutile Group",
"system": "Tetragonal"
},
"add_prop": [
["Inherent", "Piezoelectric"]
],
"neutral": {
"color": "Colorless, Amber, Blue",
"imgsrc": "https://www.made-in-china.com/showroom/lnxojtcl/product-detailtbfxBJrUuhkD/China-Rutile-Crystal-TiO2-Crystal-.html"
},
"minID": 3486
},
{
"id": 7,
"label": "Moissanite",
"aliases": "Carborundum",
"desc": "Moissanite has to be one of the most impressive synthetic materials humans have made. It doesn't form in large quantities in nature, which makes it rather unique. This is a bonus, because this material isnt able to be abused by inhuman mining practices, unlike diamond. This material is interesting in that it's extremely hard, extremely refractive, extremely tough, and very dispersive. At 9.25 on the mohs scale, it's not that far off from diamond. These properties have made it one of the most well-respected synthetics in the gem industry. Like diamond however, there are complications with production. It requires less complexity for both CVD and HPHT growth, so generally resulting material is larger and cleaner most of the time. However, it's still limited to these two methods, both of which are somewhat expensive and time consuming. If it weren't for these limitations, Moissanite would've likely taken over even cubic zirconia as one of the most common diamond simulants in the world. It far exceeds diamond in every way other then conductivity and hardness.<br><br>Beyond it's use in the gem world, Moissanite, or more specifically Silicon Carbide, is quite useful in the industrial machining sector. SiC Ceramics are some of the most affordable 'superhard' materials, and its often used as the core material for machining / drilling bits. You can even find it used in traditional tool bits too, alongside tungsten carbide. Silicon Carbide ceramics have also found a niche use in Armored Plating. Small polygonal pucks of it are produced and used as deflection shielding for both human and machine armor.",
"synthesis": ["hpht", "cvdp", "sint"],
"chem_prop": {
"chemical": "Silicon Carbide",
"formula": "SiC",
"genmol": true,
"mohs_min": 9.25,
"mohs_max": 9.5,
"grav_min": 3.16,
"grav_max": 3.24,
"decp_pnt": 2730
},
"optic_prop": {
"type": "Uniaxial (+)",
"ref_min": [2.616, 2.654],
"ref_max": [2.757, 2.812],
"bir_min": 0.038,
"bir_max": 0.043,
"disp_min": 0.104,
"disp_max": 0.104
},
"cry_prop": {
"system": "Hexagonal"
},
"add_prop": [
["Inherent", ["Semiconductive", "Thermoluminescent", "Thermochromic"]]
],
"neutral": {
"color": "Colorless",
"imgsrc": "Site Owner"
},
"variants": [
{
"id": "0",
"label": "4H SiC",
"color": "Yellow, Green, Blue",
"cause": "Hexagonal 4-Layer Structure",
"usage": "N-Type, P-Type Semiconductors, and Semi-insulators",
"imgsrc": "https://www.sic-wafers.com/4h-semi-sic-substrate-and-4h-n-sic-substrate/"
},
{
"id": "1",
"label": "6H SiC",
"color": "Yellow, Green",
"cause": "Hexagonal 6-Layer Structure",
"usage": "N-Type, P-Type Semiconductors, and Semi-insulators"
},
{
"id": "2",
"label": "3C SiC",
"color": "Gray, Dark Blue, Dark Red",
"cause": "Cubic 3-Layer Structure",
"usage": "N-Type, P-Type Semiconductors"
},
{
"id": "3",
"label": "N-Type SiC",
"cause": "Nitrogen Ions",
"color": "Yellow, Green, Blue, Brown",
"effect": "Pleochroism",
"usage": "N-Type Semiconductors"
},
{
"id": "4",
"label": "SI SiC",
"cause": "Vanadium Ions",
"usage": "Semi-insulators"
},
{
"id": "5",
"cause": "Hydrogen Ions",
"color": "Pink, Magenta, Purple"
},
{
"id": "6",
"label": "P-Type SiC",
"cause": "Aluminium and Boron Ions",
"color": "Blue",
"usage": "P-Type Semiconductors",
"imgsrc": "Site Owner"
}
],
"minID": 2743
},
{
"id": 8,
"label": "Sphalerite",
"aliases": "Cleiophane, Blende, Zinc Blende, Ruby Blende, Ruby Jack, Marmatite, or Black Jack",
"desc": "Sphalerite is an interesting material in the synthetic world. It doesn't hold a huge amount of uses, but in some very niche material science and optics projects, Sphalerite lenses can be grown for use. The most common form you'll come by are colorless polycrystalline 'ceramic' lenses made of sphalerite. They're useful because of sphalerite's unusually high Refractive Index. The high dispersion accordingly makes for quite colorful stones when cut.<br><br>Similarly to Rutile, Sphalerite tends to form quite included and dirty as a natural mineral. However, it can form large gem-grade material in nature. It's not sought after much by the gem industry due to its softness.",
"synthesis": ["cvdp"],
"chem_prop": {
"chemical": "Zinc Sulfide",
"formula": "ZnS",
"genmol": true,
"mohs_min": 3.5,
"mohs_max": 4,
"grav_min": 3.9,
"grav_max": 4.1
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 2.368,
"ref_max": 2.5,
"disp_min": 0.163,
"disp_max": 0.163
},
"cry_prop": {
"parent": "Sphalerite Group",
"system": "Isometric"
},
"neutral": {
"color": "Colorless to Amber",
"usage": "Specialty Optics",
"imgsrc": "https://www.wts-photonics.com/ir-windows-zinc-sulfide-zns-windows_p116.html"
},
"variants": [
{
"id": "0",
"label": "Cr:ZnS",
"color": "Amber to Vermillion",
"cause": "Chromium Ions",
"usage": "Infrared Lasers, Specialty Optics",
"imgsrc": "https://www.wts-photonics.com/ir-windows-zinc-sulfide-zns-windows_p116.html"
}
],
"minID": 3727
},
{
"id": 9,
"label": "Silicon",
"aliases": "",
"desc": "Silicon is a particularly unique synthetic element. It is one of the most common materials grown to exceptional purities, and is the backbone of modern civilization. Effectively every device with an integrated circuit most likely uses a doped / etched die made from polished wafers of pure silicon grown via the czochralski method or similar processes. Without these dies there would be virtually no smart devices or compact computing.<br><br>The process of chemically and optically modifying wafers to create microscopic digital circuits is one of mankind's greatest achievements, and this material makes it possible. Furthermore, the technology developed around silicon helped propel the material science industry as a whole. Silicon and other semiconductors are really what started it all.",
"synthesis": ["czok", "kyrp", "brst", "hdsm", "zone"],
"chem_prop": {
"element": ["14", "Si", "Silicon", 28.085],
"mohs_min": 7,
"mohs_max": 7,
"grav_min": 2.329,
"grav_max": 2.329,
"melt_pnt": 1414
},
"optic_prop": {
"opt": "opaque"
},
"bypass_optic": true,
"cry_prop": {
"system": "Isometric"
},
"add_prop": [
["Inherent", ["Semiconductive"]]
],
"neutral": {
"color": "Dark Gray",
"imgsrc": "Theodore W. Gray - https://periodictable.com/Items/014.26/index.html"
},
"minID": 3659
},
{
"id": 40,
"label": "Antimony",
"aliases": "",
"desc": "",
"synthesis": ["czok", "kyrp", "zone"],
"chem_prop": {
"element": ["51", "Sb", "Antimony", 121.76],
"alt": "Stibium",
"mohs_min": 3,
"mohs_max": 3.5,
"grav_min": 6.61,
"grav_max": 6.71,
"decp_pnt": 630
},
"optic_prop": {
"opt": "opaque"
},
"bypass_optic": true,
"cry_prop": {
"system": "Trigonal",
"parent": "Arsenic Group"
},
"add_prop": [
["Inherent", ["Semiconductive"]]
],
"neutral": {
"color": "Gray",
"imgsrc": "Site Owner"
},
"minID": 262
},
{
"id": 10,
"label": "Diamond",
"aliases": "Bort, Carbanado, or Adamant",
"desc": "Diamond, while one of the simplest minerals on the planet, is one of the most difficult to produce. It is extremely sought-after because of it's historical, symbolical, gemological, and scientific importance. Natural diamonds have sparked social imbalance because of their attraction, so synthetic diamonds have become very important in the modern age.<br><br>Synthesizing diamonds is far from a simple task. Due to the extreme environmental factors that diamonds grow in, recreating it or finding alternatives has proven to be a challenge for engineers and material scientists. Synthesizing them at an affordable and commercial scale has only been possible in recent decades. Processes like CVD were exceptionally useful at producing large optical-grade crystals of diamond, though yields are not high and the process can be expensive. Furthermore, the gem industry has fueled control over synthetic material. This means that ultimately nothing has changed in regards to their market. Thankfully alternatives exist for optical appreciation, such as Cubic Zirconia and Moissanite. Diamonds are still quite exceptional for their properties and are actively used in a variety of industries because of it. Unfortunately in many use cases, diamonds are the only usable option due to it's extreme hardness and thermal properties. For this reason (and many others) they will likely continue to be a commonly synthesized material, regardless of cost and complexity.",
"synthesis": ["hpht", "cvdp", "sint"],
"chem_prop": {
"chemical": "Carbon",
"formula": "C",
"genmol": true,
"mohs_min": 10,
"mohs_max": 10,
"grav_min": 3.5,
"grav_max": 3.53,
"decp_pnt": 760
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 2.4076,
"ref_max": 2.4354,
"disp_min": 0.044,
"disp_max": 0.044
},
"cry_prop": {
"system": "Isometric"
},
"neutral": {
"color": "Colorless",
"imgsrc": "https://www.gia.edu/gia-news-research/difference-between-natural-laboratory-grown-diamonds"
},
"minID": 1282
},
{
"id": 11,
"label": "Tausonite",
"aliases": "STO, Fabulite, Marvelite, or Diagem",
"desc": "Strontium Titanate, known naturally as the mineral Tausonite, was an old-age diamond simulant that was popular during the early days of the diamond marketing campaigns (Often called Fabulite). This material has some niche uses in specialty optical mediums and piezoelectrics, so it's far from a common material in the modern age. Not many surviving cut stones and rough from previous decades still exists, because the material itself is quite soft and fragile. This is one of the reasons it never took off as an attractive diamond alternative.<br><br>If it weren't for its downsides, Strontium Titanate would actually be one of the most accurate replacements for diamonds. To my knowledge, it has the closest refractive index to diamond, while also being an isotropic medium. As a bonus, it has a much higher dispersion factor then diamond; This results in a much more colorful stone. However, as already mentioned, the stone's weakness was an unbearable fault to becoming a marketable alternative.",
"synthesis": ["vern"],
"chem_prop": {
"chemical": "Strontium Titanate",
"formula": "SrTiO_3_",
"genmol": true,
"mohs_min": 5.5,
"mohs_max": 6.5,
"grav_min": 4.88,
"grav_max": 5.11
},
"optic_prop": {
"type": "Isotropic",
"ref_min": 2.394,
"ref_max": 2.417,
"disp_min": 0.19,
"disp_max": 0.19
},
"cry_prop": {
"parent": "Perovskite Subgroup",
"system": "Isometric"
},
"add_prop": [
["Inherent", "Piezoelectric"]
],
"neutral": {
"color": "Beige to Black",
"imgsrc": "https://www.mtixtl.com/SrTiO3-100.aspx"
},
"minID": 3895
},
{
"id": 57,
"label": "Cobalt Titanate",
"aliases": "",
"desc": "",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Cobalt Titanate",
"formula": "CoTiO_3_",
"genmol": true,
"mohs_min": "?",
"mohs_max": "?",
"grav_min": 4.99,
"grav_max": 4.99
},
"optic_prop": {
"opt": "opaque"
},
"bypass_optic": true,
"cry_prop": {
"system": "Tetragonal"
},
"neutral": {
"color": "Black",
"imgsrc": "https://surfacenet.de/files/kristall_daten.php?crystal=209"
}
},
{
"id": 58,
"label": "Cobalt Titanium Oxide",
"aliases": "",
"desc": "",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Cobalt Titanium Oxide",
"formula": "Co_2_TiO_4_",
"genmol": true,
"mohs_min": "?",
"mohs_max": "?",
"grav_min": 5.06,
"grav_max": 5.06
},
"optic_prop": {
"opt": "opaque"
},
"bypass_optic": true,
"cry_prop": {
"system": "Isometric"
},
"neutral": {
"color": "Black",
"imgsrc": "https://surfacenet.de/files/kristall_daten.php?crystal=212"
}
},
{
"id": 12,
"label": "Lithium Niobate",
"aliases": "Linobate, LN",
"desc": "Lithium Niobate is an optical salt grown industrially for use in piezoelectrics and specialty optics. It is also called Linobate in the trades. It has had use as a niche diamond simulant, but is quite rare to come by on the market. It is soft and unfit for cut stones, but the few that have been made are exceptionally refractive and dispersive. TODO: Finish Article",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Lithium Niobate",
"formula": "LiNbO_3_",
"genmol": true,
"mohs_min": 5,
"mohs_max": 5,
"grav_min": 4.3,
"grav_max": 4.65
},
"optic_prop": {
"type": "Uniaxial (-)",
"ref_min": [2.3007, 2.2116],
"ref_max": [2.3007, 2.2116],
"bir_min": "?",
"bir_max": "?",
"disp_min": 0.125,
"disp_max": 0.125
},
"cry_prop": {
"system": "Trigonal"
},
"add_prop": [
["Inherent", "Piezoelectric"]
],
"neutral": {
"color": "Colorless to Golden Yellow",
"imgsrc": "https://www.directindustry.com/prod/union-optic-inc/product-173804-1762901.html",
"usage": "Piezoelectrics and Specialty Optics"
},
"variants": [
{
"id": "0",
"label": "Er:LiNbO3",
"cause": "Erbium Ions",
"color": "Orange, Salmon, Pink",
"fluor": "Green",
"usage": "Integrated Lasing and Optical Circuits",
"imgsrc": "https://www.sciencedirect.com/science/article/abs/pii/S0925838815319939"
}
]
},
{
"id": 62,
"label": "Calcium Niobate",
"aliases": "",
"desc": "",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Calcium Niobate",
"formula": "CaNb_2_O_6_",
"genmol": true,
"mohs_min": "?",
"mohs_max": "?",
"grav_min": "?",
"grav_max": "?"
},
"optic_prop": {
"type": "Biaxial (+)",
"ref_min": "?",
"ref_max": "?",
"disp_min": "?",
"disp_max": "?"
},
"cry_prop": {
"system": "Orthorhombic"
}
},
{
"id": 37,
"label": "Lithium Tantalate",
"aliases": "LT",
"desc": "Lithium Tantalate is related to Lithium Niobate in many ways. The two materials can often be used in similar applications, however they do have differences in properties. TODO: Finish Article",
"synthesis": ["czok"],
"chem_prop": {
"chemical": "Lithium Tantalate",
"formula": "LiTaO_3_",
"genmol": true,
"mohs_min": 5.75,
"mohs_max": 6,
"grav_min": 7.45,
"grav_max": 7.46
},
"optic_prop": {
"type": "Uniaxial (?)",
"ref_min": [2.176, 2.18],
"ref_max": [2.18, 2.18],
"bir_min": "?",
"bir_max": "?",
"disp_min": 0.075,
"disp_max": 0.075
},
"cry_prop": {
"system": "Trigonal"
},
"add_prop": [
["Inherent", "Piezoelectric<br>Pyroelectric<br>Diamagnetic"]
],
"neutral": {
"color": "Colorless to Beige",
"imgsrc": "https://www.smm.co.jp/en/business/material/products/lithium/"
},
"variants": [
{
"id": "0",
"label": "(Needs Research)",
"color": "Mint Green, Lime",
"cause": "Unknown Dopant",
"imgsrc": "https://djeva.com/collections/green-lithium-tantalate"
}
]
},
{
"id": 51,
"label": "Forsterite",
"aliases": "",