-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglazes.xml
More file actions
1058 lines (917 loc) · 43 KB
/
glazes.xml
File metadata and controls
1058 lines (917 loc) · 43 KB
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
<glazes
xmlns="tag:fenglich.fastmail.fm,2007:Pottery"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:db="http://docbook.org/ns/docbook">
<glaze xml:id="GreenHue"
category="Green"
manufacturer="Potterycrafts Limited"
name="Green Hue"
productID="P2579"/>
<glaze xml:id="FrostedJade"
category="Green"
manufacturer="Potterycrafts Limited"
name="Frosted Jade"
productID="P2540"/>
<glaze xml:id="IntenseBlack"
category="Black"
manufacturer="Potterycrafts Limited"
name="Intense Black"
productID="P3555">
<db:para>A very nice high gloss black which doesn't tilt in any direction such as brown, red, blue or metallic. It's an opaque, gloss, black, simply. Its MSDS doesn't mention anything in particular about its colorants, "inorganic pigments". Ulf Anonsen theorized on phone that it was not cobalt, because it would have to be listed due to its toxicity. Instead it could likely be a Complex Inorganic Colour(CIC) pigment, he said. ANFFECC / CERAMICCOLOR / EPSOM / VdMi, produced <db:phrase xlink:href="http://www.vdmi.de/gb/index.php?page=1231816732&f=2&i=99416383&s=1580542676&ss=1231816732">Ceramic Decorating Materials</db:phrase>, Aspects of Product Stewardship, which is of help.</db:para>
</glaze>
<glaze xml:id="WhiteGloss"
category="White"
manufacturer="Potterycrafts Limited"
name="White Gloss"
productID="P3550">
<db:para>I suspect this glaze is tin based. Gives regularly pin holes and is milky/warm. Could easily be tested by mixing with chrome.</db:para>
</glaze>
<glaze xml:id="SandBrown"
category="Brown"
manufacturer="Potterycrafts Limited"
name="Sand Brown, B/O"
type="BrushOn"
productID="P2845.5"/>
<glaze xml:id="ImagineGreen"
category="Green"
manufacturer="Ceradel"
name="Green, Imagine ELG 80, Vent 230 ML Green"
type="BrushOn"/>
<glaze xml:id="GreyAmaco"
category="Grey"
name="Grey, Sahara Liquid Glazes, HF series"
productID="HF-18"
manufacturer="Amaco"
type="BrushOn"/>
<glaze xml:id="YellowBO"
category="Yellow"
name="Yellow Brush-on glaze"
productID="P2842"
manufacturer="Potterycrafts Limited"
type="BrushOn"/>
<glaze xml:id="AxnerBlackUnderGlazePen"
category="Black"
name="Black underglaze pen"
productID="P4001"
manufacturer="AXNER"
type="BrushOn">
<db:para>Pre-mixed on bottle, to 1280C.</db:para>
</glaze>
<glaze xml:id="Transparent"
category="Colorless"
name="Transparent"
productID="P1091"
manufacturer="Unknown">
<db:para>
Can't be found in Waldermar Ellefesen's price catalog from 2003, nor does the number show up in Potterycrafts' info. Is a porcelain glaze, according to Sissel.</db:para>
</glaze>
<glaze xml:id="TransparentCopperCarbonate"
category="Green"
name="Copper Carbonate oxide in transparent glaze"
manufacturer="Mixture">
<db:para>To 200 ml transparent glaze, P1091, was 20 g Copper carbonate, P3404, added.</db:para>
</glaze>
<glaze xml:id="TransparentYellowStain"
category="Green"
name="Yellow stain in transparent glaze"
manufacturer="Mixture"
>
<db:para>To 200 ml transparent glaze, P1091 was 20 g Canary/Golden Yellow, P4140, added.</db:para>
</glaze>
<glaze xml:id="Chocolate"
category="Black"
name="Black stain in transparent glaze"
manufacturer="Mixture">
<db:para>200 ml transparent glaze, P1091 was 20 g Black stain, P4130, added.</db:para>
</glaze>
<glaze xml:id="GreenHueAndFrostedJade"
category="Green"
name="Green Hue mixed with Frosted jade"
manufacturer="Mixture"
>
<db:para>100 ml Green Hue at gravity 45 mixed with 100 ml Frosted Jade at gravity 44.</db:para>
</glaze>
<glaze xml:id="AmacoWhiteBO"
category="White"
name="White"
productID="HF-11A White"
manufacturer="Amaco"
type="BrushOn">
<db:para>Sahara Liquid Glazes, HF-11 White. Brush-on.</db:para>
</glaze>
<glaze xml:id="AmacoWaxyWhite"
category="White"
name="Waxy White"
productID="HF-17"
manufacturer="Amaco"
type="BrushOn">
<db:para>Sahara Liquid Glazes, HF-17 Waxy White. Brush-on.</db:para>
</glaze>
<glaze xml:id="RedBO"
category="Red"
name="Red brush on"
productID="P2840"
manufacturer="Potterycrafts Limited"
type="BrushOn"/>
<glaze xml:id="TurquoiseBO"
category="Turquoise"
name="Turquoise, Sahara Liquid Series"
productID="HF-26"
type="BrushOn"
manufacturer="Amaco"/>
<glaze xml:id="WhiteBO"
category="White"
name="White Brush-on"
productID="2850.5"
type="BrushOn"
manufacturer="Potterycrafts Limited">
<db:para>Based on ZnO, 2.5-24%, according to the MSDS, see <db:xref xlink:href="#T244"/>.</db:para>
</glaze>
<glaze xml:id="IndigoBlue"
category="Blue"
name="Indigo Blue"
productID="2844.5"
type="BrushOn"
manufacturer="Potterycrafts Limited"/>
<glaze xml:id="OilSpot"
category="Black"
name="Oil Spot, Potter's Choice Liquid Glazes"
productID="PC-35"
type="BrushOn"
manufacturer="Amaco"/>
<glaze xml:id="TexturedBlue"
category="Blue"
name="Textured Blue, Sahara Liquid Glaze"
productID="HF-22"
type="BrushOn"
manufacturer="Amaco"/>
<glaze xml:id="GoldBrownBO"
category="Brown"
name="Gold Brown Brush-on"
productID="2847.5"
type="BrushOn"
manufacturer="Potterycrafts Limited"/>
<glaze xml:id="VelourBlackBO"
category="Black"
name="Velour Black, V Series, Velvet Underglaze"
productID="V-370"
type="BrushOn"
manufacturer="Amaco"/>
<glaze xml:id="CeradelNoir"
category="Black"
name="Noir, Imagine"
productID="ELG 60"
manufacturer="Ceradel"
type="BrushOn"/>
<glaze xml:id="AmacoWhiteUnderglaze"
category="White"
name="White, V Series, Velvet Underglaze"
productID="V-360"
type="BrushOn"
manufacturer="Ceradel"/>
<glaze xml:id="BlackBO"
category="Black"
manufacturer="Potterycrafts Limited"
name="Black Brush-on"
type="BrushOn"
productID="P2851"/>
<glaze xml:id="LichenGreenBO"
category="Green"
manufacturer="Potterycrafts Limited"
name="Lichen Green"
type="BrushOn"
productID="P2822"/>
<glaze xml:id="OrangeBO"
category="Orange"
manufacturer="Potterycrafts Limited"
name="Orange brush-on"
type="BrushOn"
productID="P2841"/>
<glaze xml:id="JetBlack"
category="Black"
manufacturer="Amaco"
name="Jet Black, Velvet Underglaze, V Series"
type="BrushOn"
productID="V-361"/>
<glaze xml:id="AmacoBrown"
category="Brown"
manufacturer="Amaco"
name="Brown, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-30"/>
<glaze xml:id="AmacoClear"
category="Colorless"
manufacturer="Amaco"
name="Clear, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-10"/>
<glaze xml:id="YellowOatMetal"
category="Yellow"
manufacturer="Amaco"
name="Matt Yellow Oat Metal, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-62"/>
<glaze xml:id="TexturedTan"
category="Brown"
manufacturer="Amaco"
name="Textured Tan, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-32"/>
<glaze xml:id="AmacoYellow"
category="Yellow"
manufacturer="Amaco"
name="Yellow, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-60"/>
<glaze xml:id="TransparentBO"
category="Colorless"
manufacturer="Potterycrafts Limited"
name="Transparent brush-on"
type="BrushOn"
productID="P2793"/>
<glaze xml:id="TivoliRed"
category="Red"
manufacturer="Potterycrafts Limited"
name="Tivoli Red"
type="BrushOn"
productID="P2818"/>
<glaze xml:id="AutumnShades"
category="Brown"
manufacturer="Potterycrafts Limited"
name="Autumn Shades"
type="BrushOn"
productID="P2804"/>
<glaze xml:id="CrystalBlue"
category="Blue"
manufacturer="Potterycrafts Limited"
name="Crystal Blue"
type="BrushOn"
productID="P2843"/>
<glaze xml:id="IncorrectBaseLeach"
category="White"
manufacturer="The Complete Guide To High-Fire Glazes, p. 63"
name="Incorrect Leach Base Glaze">
<db:para>This mixture is so wrong, alumina as silica.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="40" replacementFor="CusterFeldspar"/>
<component idref="Alumina" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Flint" parts="10" replacementFor="Kaolin"/>
</recipe>
</glaze>
<glaze xml:id="WhiteLeach"
category="White"
manufacturer="The Complete Guide To High-Fire Glazes, p. 63"
name="White Leach">
<recipe>
<component idref="FeldsparFFF" parts="40" replacementFor="CusterFeldspar"/>
<component idref="Alumina" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Flint" parts="10" replacementFor="Kaolin"/>
<component idref="ZirconiumOxide" parts="10"/>
</recipe>
</glaze>
<glaze xml:id="WhiterLeach"
category="White"
manufacturer="The Complete Guide To High-Fire Glazes, p. 63"
name="Whiter Leach">
<db:para>This mixture seems so wrong, alumina as silica.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="40" replacementFor="CusterFeldspar"/>
<component idref="Alumina" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Flint" parts="10" replacementFor="Kaolin"/>
<component idref="ZirconiumOxide" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="BlueWhiterLeach"
category="Blue"
manufacturer="The Complete Guide To High-Fire Glazes, p. 63"
name="Blue Whiter Leach">
<db:para>This mixture seems so wrong, alumina as silica. However, one could argue that it's countered a bit by Kaolin being sourced through Flint. Kaolin brings Alumina, but Flint is only Silica.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="40" replacementFor="CusterFeldspar"/>
<component idref="Alumina" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Flint" parts="10" replacementFor="Kaolin"/>
<component idref="ZirconiumOxide" parts="20"/>
<component idref="CobaltOxide" parts="1"/>
</recipe>
</glaze>
<glaze xml:id="CandaceBlack"
category="Black"
manufacturer="The Complete Guide to High-Fire Glazes, p. 127, also listed on p. 76"
name="Candace Black">
<recipe>
<component idref="FeldsparFFF" parts="65" replacementFor="F4Feldspar"/>
<component idref="Whiting" parts="5"/>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="Alumina" parts="5" replacementFor="Kaolin"/>
<component idref="Dolomite" parts="5"/>
<component idref="SyntheticRedIronOxide" parts="5"/>
<component idref="CobaltOxide" parts="5" replacementFor="CobaltCarbonate"/>
</recipe>
</glaze>
<glaze xml:id="ModifiedTransparentGreen"
category="Green"
manufacturer="The Complete Guide to High-Fire Glazes, p. 98"
name="Modified Transparent Green">
<db:para>But Tin Oxide instead of Zinc Oxide.</db:para>
<recipe>
<component idref="CornwallStone" parts="70"/>
<component idref="Whiting" parts="10"/>
<component idref="Alumina" parts="10" replacementFor="GrollegKaolin"/>
<component idref="TinOxide" parts="10" replacementFor="ZincOxide"/>
<component idref="CopperCarbonate" parts="4"/>
</recipe>
</glaze>
<glaze xml:id="TransparentGreen"
category="Green"
manufacturer="The Complete Guide to High-Fire Glazes, p. 98"
name="Transparent Green">
<db:para>Alumina surely is a poor replacement for Grolleg Kaolin, it's too much Alumina.</db:para>
<recipe>
<component idref="CornwallStone" parts="70"/>
<component idref="Whiting" parts="10"/>
<component idref="Alumina" parts="10" replacementFor="GrollegKaolin"/>
<component idref="TinOxide" parts="10" replacementFor="ZincOxide"/>
<component idref="CopperCarbonate" parts="4"/>
</recipe>
</glaze>
<glaze xml:id="WillsOribeAlumina"
category="Green"
manufacturer="The Complete Guide to High-Fire Glazes, p. 101"
name="Will's Oribe">
<db:para>Note that Alumina was chosen as substitute for Kaolin.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Whiting" parts="15"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Alumina" parts="5" replacementFor="Kaolin"/>
<component idref="CopperCarbonate" parts="5"/>
</recipe>
</glaze>
<glaze xml:id="ModifiedMamo"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 121"
name="Modified Mamo">
<db:para>Note that a mistake was done: there was way too much Alumina.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="25" replacementFor="CusterFeldspar"/>
<component idref="FeldsparFFF" parts="25" replacementFor="F4Feldspar"/>
<component idref="Whiting" parts="5"/>
<component idref="Alumina" parts="10" replacementFor="Kaolin"/>
<component idref="Alumina" parts="15" replacementFor="CalcinedKaolin"/>
<component idref="Alumina" parts="10"/>
<component idref="Dolomite" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="BlueModifiedMamo"
category="Blue"
manufacturer="The Complete Guide to High-Fire Glazes, p. 121"
name="Blue Modified Mamo">
<db:para>Mamo with Cobalt. Note that a mistake was done: there was way too much Alumina.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="25" replacementFor="CusterFeldspar"/>
<component idref="FeldsparFFF" parts="25" replacementFor="F4Feldspar"/>
<component idref="Whiting" parts="5"/>
<component idref="Alumina" parts="10" replacementFor="Kaolin"/>
<component idref="Alumina" parts="15" replacementFor="CalcinedKaolin"/>
<component idref="Alumina" parts="10"/>
<component idref="Dolomite" parts="20"/>
<component idref="CobaltOxide" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="AmacoRedMatt"
category="Red"
manufacturer="Amaco"
name="Red Matt, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-58"/>
<glaze xml:id="AmacoHazyPink"
category="Pink"
manufacturer="Amaco"
name="Hazy Pink, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-52A"/>
<glaze xml:id="AmacoLavender"
category="Turquoise"
manufacturer="Amaco"
name="Lavender, Sahara Liquid Series, HF-Series"
type="BrushOn"
productID="HF-53A"/>
<glaze xml:id="ModifiedMamoRightAlumina"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 121"
name="Modified Mamo, Right Alumina">
<recipe>
<component idref="FeldsparFFF" parts="25" replacementFor="CusterFeldspar"/>
<component idref="FeldsparFFF" parts="25" replacementFor="F4Feldspar"/>
<component idref="Whiting" parts="5"/>
<component idref="Alumina" parts="10" replacementFor="Kaolin"/>
<component idref="Alumina" parts="15" replacementFor="CalcinedKaolin"/>
<component idref="Dolomite" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="TitanedHardingOxblood"
category="Red"
manufacturer="The Complete Guide to High-Fire Glazes, p. 91"
name="Titaned Harding Oxblood">
<db:para>Mixed up Titanium Dioxide and Tin Oxide. For reduction.</db:para>
<recipe>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="FeldsparFFF" parts="55" replacementFor="NC4Feldspar"/>
<component idref="Whiting" parts="6"/>
<component idref="FerroFrit" parts="15"/>
<component idref="ZincOxide" parts="4"/>
<component idref="TinOxide" parts="1" replacementFor="TitaniumDioxide"/>
<component idref="CopperCarbonate" parts="0.5"/>
<component idref="Bentonite" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="HardingOxblood"
category="Red"
manufacturer="The Complete Guide to High-Fire Glazes, p. 91"
name="Harding Oxblood">
<db:para>For reduction.</db:para>
<recipe>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="FeldsparFFF" parts="55" replacementFor="NC4Feldspar"/>
<component idref="Whiting" parts="6"/>
<component idref="FerroFrit" parts="15"/>
<component idref="ZincOxide" parts="4"/>
<component idref="TinOxide" parts="1" replacementFor="TitaniumDioxide"/>
<component idref="CopperCarbonate" parts="0.5"/>
<component idref="Bentonite" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="PerfectBlack"
category="Black"
manufacturer="The Complete Guide to High-Fire Glazes, p. 127"
name="Perfect Black">
<db:para>For reduction.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="42" replacementFor="CusterFeldspar"/>
<component idref="Whiting" parts="13"/>
<component idref="Flint" parts="22" replacementFor="Silica"/>
<component idref="ChinaClay" parts="8" replacementFor="Kaolin"/>
<component idref="SodaAsh" parts="3"/>
<component idref="ZincOxide" parts="12"/>
<component idref="RedIronOxide" parts="3"/>
<component idref="CobaltCarbonate" parts="4"/>
<component idref="ChromeOxide" parts="1"/>
</recipe>
</glaze>
<!-- We have no samples of this glaze. -->
<glaze xml:id="NewGrassGreen"
category="Green"
manufacturer="The Complete Guide to High-Fire Glazes, p. 102"
name="New Grass Green">
<recipe>
<component idref="NephelineSyenite" parts="25" replacementFor="CusterFeldspar"/>
<component idref="CornwallStone" parts="25"/>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="ChinaClay" parts="7" replacementFor="Kaolin"/>
<component idref="BariumCarbonate" parts="3"/>
<component idref="Wollastonite" parts="19"/>
<component idref="LithiumCarbonate" parts="1"/>
<component idref="ChromeOxide" parts="2"/>
<component idref="TinOxide" parts="4"/>
<component idref="Bentonite" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="IncorrectHamadaBase"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 61"
name="Incorrect Hamada">
<db:para><db:date>2008-05-26</db:date> Feldspar FFF is probably a poor replacement for Custer Feldspar, Potash Feldspar would probably be better.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="IncorrectHamadaBase5Talc"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 61"
name="Incorrect Hamada with 5 parts talc">
<db:para>Hamada with 5 parts talc.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Talc" parts="5"/>
</recipe>
</glaze>
<glaze xml:id="IncorrectHamadaBase20Talc"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 61"
name="Incorrect Hamada with 20 parts talc">
<db:para>Hamada with 20 parts talc.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
<component idref="Talc" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="ChromeTransparentGreen"
category="Green"
manufacturer="The Complete Guide to High-Fire Glazes, p. 101"
name="Chrome Transparent Green">
<db:para>Instead of Copper Carbonate, Chrome Oxide is used.</db:para>
<recipe>
<component idref="CornwallStone" parts="70"/>
<component idref="Whiting" parts="10"/>
<component idref="FeldsparFFF" parts="10" replacementFor="GrollegKaolin"/>
<component idref="ZincOxide" parts="10"/>
<component idref="ChromeOxide" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="ClausCrystalGreenBlack"
category="Green"
manufacturer="Handbook in Studio Ceramics, p. 184"
name="Claus' Crystal Green/Black">
<recipe>
<component idref="FeldsparSoda" parts="50"/>
<component idref="ChinaClay" replacementFor="Kaolin" parts="20"/>
<component idref="Dolomite" parts="20"/>
<component idref="BoneAsh" parts="10"/>
<component idref="CopperCarbonate" parts="3"/>
</recipe>
</glaze>
<glaze xml:id="SatinBase"
category="White"
manufacturer="Handbook in Studio Ceramics, p. 181"
name="Satin Base">
<db:para>Should be opaque white in reduction.</db:para>
<recipe>
<component idref="ChinaClay" replacementFor="Kaolin" parts="22"/>
<component idref="FeldsparSoda" parts="53"/>
<component idref="Dolomite" parts="22"/>
<component idref="Alumina" parts="3"/>
</recipe>
</glaze>
<glaze xml:id="GreenBlueSatin"
category="Green"
manufacturer="Handbook in Studio Ceramics, p. 181"
name="Green Blue Satin">
<db:para>Satin Base with colorants. I think the colorants are too much, but my weight can't measure smaller amounts. Think they will burn out, or the glaze is unstable.</db:para>
<recipe>
<component idref="ChinaClay" replacementFor="Kaolin" parts="22"/>
<component idref="FeldsparSoda" parts="53"/>
<component idref="Dolomite" parts="22"/>
<component idref="Alumina" parts="3"/>
<component idref="CobaltOxide" parts="1"/>
<component idref="ChromeOxide" parts="3"/>
</recipe>
</glaze>
<glaze xml:id="ModifiedSatinWhite"
category="White"
manufacturer="The Glaze Book, p. 183"
name="Satin White">
<db:para>Has a specified soak time of one hour at 1290 degree Celcius.</db:para>
<db:para>Modified the recipe by replacing the 11 parts of zirconium silicate with 5.5 parts flint, and 5.5 parts zirconium oxide.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="45"/>
<component idref="Dolomite" parts="22"/>
<component idref="Flint" replacementFor="Quartz" parts="16"/>
<component idref="Flint" replacementFor="ZirconiumSilicate" parts="5.5"/>
<component idref="ZirconiumOxide" replacementFor="ZirconiumSilicate" parts="5.5"/>
<component idref="ChinaClay" parts="6"/>
</recipe>
</glaze>
<glaze xml:id="GreenModifiedSatinWhite"
category="Green"
name="Satin Green">
<db:para><db:xref xlink:href="#ModifiedSatinWhite"/> plus colorants.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="45"/>
<component idref="Dolomite" parts="22"/>
<component idref="Flint" replacementFor="Quartz" parts="16"/>
<component idref="Flint" replacementFor="ZirconiumSilicate" parts="5.5"/>
<component idref="ZirconiumOxide" replacementFor="ZirconiumSilicate" parts="5.5"/>
<component idref="ChinaClay" parts="6"/>
<component idref="ChromeOxide" parts="1.5"/>
<component idref="CopperCarbonate" parts="1.5"/>
</recipe>
</glaze>
<glaze xml:id="SatinGlossGreenBlack"
category="Green"
manufacturer="The Glaze Book, p. 175"
name="Satin Gloss Green Black">
<recipe>
<component idref="Flint" replacementFor="Quartz" parts="41"/>
<component idref="ChinaClay" parts="35"/>
<component idref="Whiting" parts="24"/>
<component idref="CopperCarbonate" parts="3"/>
<component idref="TitaniumDioxide" parts="2"/>
<component idref="CobaltCarbonate" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="SatinBase5Zirconium"
category="White"
manufacturer="Handbook in Studio Ceramics, p. 181"
name="Satin Base, with 5 parts Zirconium Oxide">
<db:para>Satin Base plus 5 parts Zirconium Oxide.</db:para>
<recipe>
<component idref="ChinaClay" parts="22" replacementFor="Kaolin"/>
<component idref="FeldsparSoda" parts="53"/>
<component idref="Dolomite" parts="22"/>
<component idref="Alumina" parts="3"/>
<component idref="ZirconiumOxide" parts="5"/>
</recipe>
</glaze>
<glaze xml:id="BlueFire"
category="Blue"
manufacturer="The Glaze Book, p. 150"
name="Blue Fire">
<db:para>For oxidation, soak time 1 h.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="60"/>
<component idref="Dolomite" parts="20"/>
<component idref="Flint" parts="15" replacementFor="Quartz"/>
<component idref="ChinaClay" parts="5"/>
<component idref="Rutile" parts="3"/>
<component idref="CobaltOxide" parts="1"/>
</recipe>
</glaze>
<glaze xml:id="OpaqueGlossWhite"
category="White"
manufacturer="The Glaze Book, p. 182"
name="Opaque Gloss White">
<db:para>For oxidation, soak time 1 h. The base glaze is the same as <db:xref xlink:href="#BlueFire"/>.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="60"/>
<component idref="Dolomite" parts="20"/>
<component idref="Flint" parts="15" replacementFor="Quartz"/>
<component idref="ChinaClay" parts="5"/>
<component idref="TinOxide" parts="10"/>
</recipe>
</glaze>
<glaze xml:id="GlossBlackBreakingBrown"
category="Black"
manufacturer="The Glaze Book, p. 185"
name="Gloss Black Breaking Brown">
<db:para>For oxidation, soak time 1h.</db:para>
<recipe>
<component idref="Flint" parts="41" replacementFor="Quartz"/>
<component idref="PotashFeldspar" parts="34"/>
<component idref="Whiting" parts="16"/>
<component idref="ChinaClay" parts="9"/>
<component idref="BlackIronOxide" parts="10"/>
</recipe>
</glaze>
<glaze xml:id="BlankBaseWithNewGrass"
category="Green"
manufacturer="Handbook in Studio Ceramics, p. 177"
name="Blank Base With New Grass">
<db:para>Blanc base with tin and chrome. The colorants from <db:xref xlink:href="#NewGrassGreen"/> with blank base in order to get New Grass Green in temperature suitable for traditional stoneware. According to John Britt(p. 20, The Complete Guide) zinc turns chrome dull, so avoid a base that doesn't have that.</db:para>
<recipe>
<component idref="FeldsparFFF" parts="55"/>
<component idref="ChinaClay" parts="8" replacementFor="Kaolin"/>
<component idref="Flint" parts="20" replacementFor="Quartz"/>
<component idref="Whiting" parts="17"/>
<component idref="ChromeOxide" parts="2"/>
<component idref="TinOxide" parts="5"/>
</recipe>
</glaze>
<glaze xml:id="GlossRutiledBlue"
category="Green"
manufacturer="The Glaze Book, p. 156"
name="Gloss Rutiled Blue">
<db:para>Has a specified soak time of one hour at 1290 degree Celcius. The book says rutile oxide, but since rutile isn't a specific oxide but a mixture of them, I wonder how that makes sense.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="60"/>
<component idref="Dolomite" parts="20"/>
<component idref="Flint" parts="15" replacementFor="Quartz"/>
<component idref="ChinaClay" parts="5"/>
<component idref="Rutile" parts="4"/>
<component idref="CobaltOxide" parts="1"/>
</recipe>
</glaze>
<glaze xml:id="SatinBlack"
category="Black"
manufacturer="The Glaze Book, p. 185"
name="Satin Black">
<db:para>Has a soak time of one hour at 1290 degree Celcius.</db:para>
<recipe>
<component idref="Flint" parts="41" replacementFor="Quartz"/>
<component idref="PotashFeldspar" parts="34"/>
<component idref="Whiting" parts="16"/>
<component idref="ChinaClay" parts="9"/>
<component idref="SyntheticRedIronOxide" parts="12" replacementFor="RedIronOxide"/>
</recipe>
</glaze>
<glaze xml:id="DaphnesBlack"
category="Black"
manufacturer="The Complete Guide To High-Fire Glazes, p. 126"
name="Daphne's Black">
<recipe>
<component idref="FeldsparSoda" parts="65" replacementFor="F4Feldspar"/>
<component idref="Whiting" parts="5"/>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="ChinaClay" parts="5" replacementFor="Kaolin"/>
<component idref="Dolomite" parts="5"/>
<component idref="SyntheticRedIronOxide" parts="5" replacementFor="RedIronOxide"/>
<component idref="CobaltCarbonate" parts="3"/>
</recipe>
</glaze>
<glaze xml:id="DaphnesBlackFeldspar"
category="Black"
manufacturer="The Complete Guide To High-Fire Glazes, p. 126, but uses Feldspar(P3316) instead of P3316 and black iron oxide as replacement for cobalt"
name="Daphne's Black">
<recipe>
<component idref="FeldsparFFF" parts="65" replacementFor="FeldsparSoda"/>
<component idref="Whiting" parts="5"/>
<component idref="Flint" parts="20" replacementFor="Silica"/>
<component idref="ChinaClay" parts="5" replacementFor="Kaolin"/>
<component idref="Dolomite" parts="5"/>
<component idref="SyntheticRedIronOxide" parts="5" replacementFor="RedIronOxide"/>
<component idref="BlackIronOxide" parts="5" replacementFor="CobaltCarbonate"/>
</recipe>
</glaze>
<glaze xml:id="MarketBlue"
category="Blue"
manufacturer="The Complete Guide To High-Fire Glazes, p. 108"
name="Market Blue">
<recipe>
<component idref="PotashFeldspar" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Whiting" parts="4"/>
<component idref="ChinaClay" parts="24" replacementFor="Kaolin"/>
<component idref="Dolomite" parts="22"/>
<component idref="CobaltCarbonate" parts="0.5"/>
</recipe>
</glaze>
<glaze xml:id="PotashFeldsparGlaze"
category="White"
name="Potash Feldspar">
<db:para>Only Potash Feldspar.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="100"/>
</recipe>
</glaze>
<glaze xml:id="NephelineSyeniteGlaze"
category="White"
name="Nepheline Syenite">
<db:para>Only Nepheline Syenite.</db:para>
<recipe>
<component idref="NephelineSyenite" parts="100"/>
</recipe>
</glaze>
<glaze xml:id="SodaFeldsparGlaze"
category="White"
name="Soda Feldspar Glaze">
<db:para>Only Soda Feldspar.</db:para>
<recipe>
<component idref="FeldsparSoda" parts="100"/>
</recipe>
</glaze>
<glaze xml:id="ChineseCrackle"
category="White"
manufacturer="The Complete Guide To High-Fire Glazes, p. 62"
name="Chinese Crackle">
<db:para>The recipe uses Zirconium Oxide as replacement for
Zircopax. The latter is a Zirconium Silicate, so this recipe
should be whiter and have less silica than the
original.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="83" replacementFor="CusterFeldspar"/>
<component idref="Flint" parts="8" replacementFor="Silica"/>
<component idref="Whiting" parts="9"/>
<component idref="ZirconiumOxide" parts="10" replacementFor="Zircopax"/>
</recipe>
</glaze>
<glaze xml:id="HaynesWhite"
category="White"
manufacturer="The Complete Guide To High-Fire Glazes, p. 63"
name="Haynes White">
<recipe>
<component idref="NephelineSyenite" parts="45"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="8"/>
<component idref="Dolomite" parts="10"/>
<component idref="Talc" parts="7"/>
</recipe>
</glaze>
<glaze xml:id="KaliTransparent"
category="Colorless"
manufacturer="Handbook in Studio Ceramics, p. 176"
name="Kali Transparent">
<recipe>
<component idref="PotashFeldspar" parts="55"/>
<component idref="ChinaClay" parts="8" replacementFor="Kaolin"/>
<component idref="Flint" parts="20" replacementFor="Quartz"/>
<component idref="Whiting" parts="17"/>
</recipe>
</glaze>
<glaze xml:id="SaturationMetallicBO"
category="Black"
name="Saturation Metallic, Potter's Choice Liquid Glazes"
productID="PC-1"
type="BrushOn"
manufacturer="Amaco">
<db:para>Says it's for Cone 5/6.</db:para>
</glaze>
<glaze xml:id="TemmokuBO"
category="Brown"
name="Temmoku, Potter's Choice Liquid Glazes"
productID="PC-30"
type="BrushOn"
manufacturer="Amaco">
<db:para>Says it's for Cone 5/6.</db:para>
</glaze>
<glaze xml:id="TexturedGreyBO"
category="Blue"
name="Textured Grey, Sahara Liquid Glazes, HF series"
productID="HF-23"
manufacturer="Amaco"
type="BrushOn">
</glaze>
<glaze xml:id="CopperKaliTransparent"
category="Green"
manufacturer="Handbook in Studio Ceramics, p. 176"
name="Copper Kali Transparent">
<db:para><db:xref xlink:href="#KaliTransparent"/> as base, combined with Copper Carbonate.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="55"/>
<component idref="ChinaClay" parts="8" replacementFor="Kaolin"/>
<component idref="Flint" parts="20" replacementFor="Quartz"/>
<component idref="Whiting" parts="17"/>
<component idref="CopperCarbonate" parts="2"/>
</recipe>
</glaze>
<glaze xml:id="CeladonBO"
category="Green"
manufacturer="Potterycrafts Limited"
name="Celadon B/O"
type="BrushOn"
productID="P2849.5"/>
<glaze xml:id="SeaGreenBO"
category="Green"
manufacturer="Potterycrafts Limited"
name="See Green B/O"
type="BrushOn"
productID="P2813.5"/>
<glaze xml:id="Hamada"
category="White"
manufacturer="The Complete Guide to High-Fire Glazes, p. 61"
name="Hamada">
<db:para>Trying to make a sane version of Hamada, instead of <db:xref xlink:href="#IncorrectHamadaBase"/>.</db:para>
<recipe>
<component idref="PotashFeldspar" parts="50" replacementFor="CusterFeldspar"/>
<component idref="Flint" parts="30" replacementFor="Silica"/>
<component idref="Whiting" parts="20"/>
</recipe>
</glaze>
<glaze xml:id="ChromedHamada"