diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-07-04 11:54:54 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-07-04 11:54:54 +1000 |
commit | 86c73c525ea14fe2da1c5f41abe82c303437d91d (patch) | |
tree | a9fbd41e98e98c5d4e2e059cda897429dc2d978d /src/Java/gtPlusPlus/core/item/chemistry | |
parent | 245f64669dbdc17cec074bf0c72414174627648f (diff) | |
download | GT5-Unofficial-86c73c525ea14fe2da1c5f41abe82c303437d91d.tar.gz GT5-Unofficial-86c73c525ea14fe2da1c5f41abe82c303437d91d.tar.bz2 GT5-Unofficial-86c73c525ea14fe2da1c5f41abe82c303437d91d.zip |
+ Slowly making the production chain for 2-Ethylanthraquinone.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/chemistry')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java index 96edda9e66..f3473ae45e 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -14,9 +14,46 @@ public class CoalTar { public static void run(){ + //Create Ethylbenzene - Ethylbenzene is produced in on a large scale by combining benzene and ethylene in an acid-catalyzed chemical reaction + FluidUtils.generateFluidNonMolten("Ethylbenzene", "Ethylbenzene", 136, new short[]{255, 255, 255, 100}, null, null); + //This gets used later + //Create Coal Tar FluidUtils.generateFluidNonMolten("CoalTar", "Coal Tar", 450, new short[]{32, 32, 32, 100}, null, null); - + + // v - Distill (70% Tar oil/10% Naphtha/20% Ethylbenzene) + + //Create Coal Tar Oil + FluidUtils.generateFluidNonMolten("CoalTarOil", "Coal Tar Oil", 240, new short[]{240, 240, 150, 100}, null, null); + + // v - Wash With Sulfuric Acid + + //Create Sulfuric Coal Tar Oil + FluidUtils.generateFluidNonMolten("SulfuricCoalTarOil", "Sulfuric Coal Tar Oil", 240, new short[]{250, 170, 12, 100}, null, null); + + // v - Distill (No loss, just time consuming) + + //Create Naphthalene + FluidUtils.generateFluidNonMolten("Naphthalene", "Naphthalene", 115, new short[]{210, 185, 135, 100}, null, null); + + // v - Oxidize with mercury and nitric acid + + //Create Phthalic Acid + FluidUtils.generateFluidNonMolten("PhthalicAcid", "Phthalic Acid", 207, new short[]{210, 220, 210, 100}, null, null); + + // v - Dehydrate at 180C+ + + //Create Phthalic Anhydride + + + + + + + + + + //Pyrolyse //Lignite Coal GT_Values.RA.addPyrolyseRecipe( |