From 6152557fc7d6b0d234eea6968a0cb0fdb976f318 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 28 Dec 2016 19:45:13 +1000 Subject: + Added the last Fuel salt to NUCLIDE.java. + Enabled Fission Fuel Processing recipes. + Added recipes for all three nuclear fuels in the Fission Fuel Processor. --- src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/Java/gtPlusPlus/core/material') diff --git a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java index 0d087fe246..0fd6d2bd8a 100644 --- a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java +++ b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java @@ -37,6 +37,24 @@ public final class NUCLIDE { new MaterialStack(FLUORIDES.URANIUM_TETRAFLUORIDE, 1) }); + public static final Material LiFBeF2ZrF4UF4 = new Material( + "LiFBeF2ZrF4UF4", //Material Name + new short[]{20, 70, 45, 0}, //Material Colour + 650, //Melting Point in C + 940, //Boiling Point in C + 150, //Protons + 150, //Neutrons + false, //Uses Blast furnace? + MaterialUtils.subscript(MaterialUtils.superscript("7")+"LiFBeF2ZrF4UF4"), //Chemical Formula + 5, //Radioactivity Level + //Material Stacks with Percentage of required elements. + new MaterialStack[]{ + new MaterialStack(FLUORIDES.LITHIUM_FLUORIDE, 65), + new MaterialStack(FLUORIDES.BERYLLIUM_FLUORIDE, 28), + new MaterialStack(FLUORIDES.ZIRCONIUM_TETRAFLUORIDE, 5), + new MaterialStack(FLUORIDES.URANIUM_TETRAFLUORIDE, 2) + }); + public static final Material LiFBeF2ZrF4U235 = new Material( "LiFBeF2ZrF4U235", //Material Name new short[]{50, 70, 15, 0}, //Material Colour -- cgit