Skip to content

Commit

Permalink
Merge pull request #1175 from trainvoi/fix-phase-seperator-recipes
Browse files Browse the repository at this point in the history
fix phase seperator recipes so they can fix in 8000L internal tank
  • Loading branch information
bruberu authored Dec 18, 2024
2 parents 6505252 + 2de76d4 commit 20dfa0b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,24 +59,24 @@ fractions.each { _, fraction ->
// Overheads processing

PHASE_SEPARATOR.recipeBuilder()
.fluidInputs(fluid('atmospheric_overheads') * 5000)
.fluidOutputs(fractions.naphtha.getCrude(5000))
.fluidOutputs(fluid('sour_water') * 10000)
.duration(400)
.fluidInputs(fluid('atmospheric_overheads') * 2500)
.fluidOutputs(fractions.naphtha.getCrude(2500))
.fluidOutputs(fluid('sour_water') * 5000)
.duration(200)
.buildAndRegister()

PHASE_SEPARATOR.recipeBuilder()
.fluidInputs(fluid('heavy_atmospheric_overheads') * 3500)
.fluidOutputs(fractions.naphtha.getCrude(3500))
.fluidOutputs(fluid('sour_water') * 10000)
.duration(400)
.fluidInputs(fluid('heavy_atmospheric_overheads') * 1750)
.fluidOutputs(fractions.naphtha.getCrude(1750))
.fluidOutputs(fluid('sour_water') * 5000)
.duration(200)
.buildAndRegister()

PHASE_SEPARATOR.recipeBuilder()
.fluidInputs(fluid('light_atmospheric_overheads') * 6000)
.fluidOutputs(fractions.naphtha.getCrude(6000))
.fluidOutputs(fluid('sour_water') * 10000)
.duration(400)
.fluidInputs(fluid('light_atmospheric_overheads') * 3000)
.fluidOutputs(fractions.naphtha.getCrude(3000))
.fluidOutputs(fluid('sour_water') * 5000)
.duration(200)
.buildAndRegister()

// Sour water stripping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ PHASE_SEPARATOR = recipemap('phase_separator')
.buildAndRegister()

PHASE_SEPARATOR.recipeBuilder()
.fluidInputs(fluid('naphtha_reformate') * 9000)
.fluidOutputs(fluid('reforming_liquids') * 1000)
.fluidOutputs(fluid('hydrogen') * 8000)
.duration(25)
.fluidInputs(fluid('naphtha_reformate') * 7200)
.fluidOutputs(fluid('reforming_liquids') * 800)
.fluidOutputs(fluid('hydrogen') * 6400)
.duration(20)
.buildAndRegister()

DT.recipeBuilder()
Expand Down

0 comments on commit 20dfa0b

Please sign in to comment.