-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1158 from trexxet/chloroethanes
1,1,2,2-tetrachloroethane; Use 1,2-dichloroethane for Vinyl Chloride
- Loading branch information
Showing
18 changed files
with
150 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
groovy/postInit/chemistry/organic_chemistry/Solvents.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import globals.Globals | ||
|
||
CSTR = recipemap('continuous_stirred_tank_reactor') | ||
BCR = recipemap('bubble_column_reactor') | ||
FBR = recipemap('fixed_bed_reactor') | ||
|
||
// TODO: move other organic solvents (THF etc.) here | ||
|
||
// DMC (dimethyl carbonate) | ||
|
||
CSTR.recipeBuilder() | ||
.fluidInputs(fluid('phosgene') * 50) | ||
.fluidInputs(fluid('methanol') * 100) | ||
.fluidOutputs(fluid('dimethyl_carbonate') * 50) | ||
.fluidOutputs(fluid('hydrogen_chloride') * 100) | ||
.duration(1) | ||
.EUt(30) | ||
.buildAndRegister() | ||
|
||
// EC (ethylene carbonate) | ||
|
||
BCR.recipeBuilder() | ||
.fluidInputs(fluid('ethylene_oxide') * 50) | ||
.fluidInputs(fluid('carbon_dioxide') * 50) | ||
.fluidOutputs(fluid('ethylene_carbonate') * 50) | ||
.duration(5) | ||
.EUt(30) | ||
.buildAndRegister() | ||
|
||
/* | ||
* Organochlorines | ||
*/ | ||
|
||
// EDC (ethylene dichloride / 1,2-dichloroethane / Freon 150) | ||
// direct chlorination | ||
FBR.recipeBuilder() | ||
.fluidInputs(fluid('chlorine') * 100) | ||
.fluidInputs(fluid('ethylene') * 50) | ||
.notConsumable(ore('catalystBedIronIiiOxide')) | ||
.fluidOutputs(fluid('one_two_dichloroethane') * 50) | ||
.EUt(30) | ||
.duration(10) | ||
.buildAndRegister() | ||
// oxychlorination | ||
FBR.recipeBuilder() | ||
.fluidInputs(fluid('ethylene') * 50) | ||
.fluidInputs(fluid('hydrochloric_acid') * 100) | ||
.fluidInputs(fluid('oxygen') * 50) | ||
.notConsumable(ore('catalystBedCopperIiChloride')) | ||
.fluidOutputs(fluid('one_two_dichloroethane') * 50) | ||
.fluidOutputs(fluid('water') * 150) | ||
.EUt(30) | ||
.duration(10) | ||
.buildAndRegister() | ||
|
||
// TeCA (1,1,2,2-tetrachloroethane / R130) | ||
|
||
CSTR.recipeBuilder() | ||
.fluidInputs(fluid('one_two_dichloroethane') * 50) | ||
.fluidInputs(fluid('chlorine') * 200) | ||
.fluidOutputs(fluid('one_one_two_two_tetrachloroethane') * 50) | ||
.fluidOutputs(fluid('hydrogen_chloride') * 100) | ||
.duration(5) | ||
.EUt(30) | ||
.buildAndRegister() | ||
|
||
// TCE (trichloroethylene) | ||
|
||
CSTR.recipeBuilder() | ||
.notConsumable(ore('springKanthal')) | ||
.fluidInputs(fluid('one_two_dichloroethane') * 50) | ||
.fluidInputs(fluid('chlorine') * 200) | ||
.fluidOutputs(fluid('trichloroethylene') * 50) | ||
.fluidOutputs(fluid('hydrogen_chloride') * 150) | ||
.duration(10) | ||
.EUt(120) | ||
.buildAndRegister() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.