Increase Efficiency of Solid Fuels in Large Boilers #2661
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
This PR increases the duration of solid fuels in large boilers, increasing it by 10x, leading to a 10x increase in steam production for these fuels, and for the baseline of coal.
Fixes Nomi-CEu/Nomi-CEu#677
Implementation Details
Why 10x? Well...
Singleblock Boiler Efficiency
Small, singleblock boilers run on the tick time of the fuel, without duration cuts. Large boilers cut the duration via dividing by 80 (currently), which has been changed to dividing by 8.
However, small boilers only decrease duration once every 12 ticks. Coupled with the higher efficiency of the high pressure boilers, at full heat, with one coal, a high pressure boiler produces:
30 (steam per tick) * 1600 (coal burn time) * 12 (duration buffer) / 2 (double burn time for high-pressure) = 288 Buckets of Steam
A normal solid fuel boiler, under same conditions, produces:
12 (steam per tick) * 1600 (coal burn time) * 12 (duration buffer) ~= 230 Buckets of Steam
This is before accounting for cooldown steam production. For a high pressure, this adds around:
15 (average steam per tick over temperature decrease) * 900 (temperature - lower 100 degrees) * 40 (temp. decrease happens every 40 ticks) = 540 Buckets of Steam
For a normal boiler, this decreases to around:
6 (average steam per tick over temperature decrease) * 400 (temperature - lower 100 degrees) * 45 (temp. decrease happens every 45 ticks) = 108 Buckets of Steam
This means that a high pressure boiler produces
828 Buckets of Steam
, and a normal boiler produces338 Buckets of Steam
, on one coal alone. Please note that cooldown rates are not exact, and will probably be slightly lower in-game, due to the staggered cooldown, leading to a non-perfect average.In reality, when comparing this to the large boiler, we can mostly ignore cooldown rate, so we will use the comparison stats of 288 Buckets of Steam.
Current Large Boiler Production Rate
This is said in the tooltip, but its also visible in the code. A bronze large boiler produces only
32 Buckets of Steam
, increasing to128 Buckets of Steam
for a tungstensteel large boiler, per piece of coal, at full heat. Even the tungstensteel boiler has half the fuel efficiency of a high-pressure solid singleblock boiler, and the singleblocks are cheaper!Solution
After this PR, this increases to 320 buckets for bronze, up to 1.2K buckets for tungstensteel. This compares nicely with the 288 buckets produced by a high-pressure singleblock boiler, without changing setups via changing steam output rates.
Note: lava and creosote, the only two allowed in steam liquid boilers, are both not fuels in large boilers. Other liquid fuels, like HoG, already have high fuel efficiency (20s for 100mb of HoG)
Outcome
Makes large boilers fuel-efficient.
Fixes Nomi-CEu/Nomi-CEu#677
Additional Information
I have also considered these other potential solutions:
Decrease singleblock fuel consumption rate
I do not like this idea, as it will make earlygame fuel consumption much higher and harder.
Increase steam output
This will also buff liquid fuel outputs, and may not balance well with existing turbines and setups.
Other buffs
Should liquids be buffed too? Bio Diesel runs at 2s per 100mb, HoG at 20s per 100mb.
Potential Compatibility Issues
Will increase solid fuel burn times for addons that use
BoilerRecipeLogic
. I found no usages in GregTech apart from the MetaTileEntity itself.