From ed7abbe23fb8429a9ee84a4ee8966e1dd2e5b3b2 Mon Sep 17 00:00:00 2001 From: CrazyAmphibian <68451232+CrazyAmphibian@users.noreply.github.com> Date: Sat, 18 May 2024 14:26:22 -0700 Subject: [PATCH] AND MULTIPLY IT.... BY 3! (#36435) --- code/ATMOSPHERICS/components/binary_devices/circulator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ATMOSPHERICS/components/binary_devices/circulator.dm b/code/ATMOSPHERICS/components/binary_devices/circulator.dm index 9f3dca17a08..afba3834fc3 100644 --- a/code/ATMOSPHERICS/components/binary_devices/circulator.dm +++ b/code/ATMOSPHERICS/components/binary_devices/circulator.dm @@ -57,7 +57,7 @@ //Calculate necessary moles to transfer using PV = nRT. recent_moles_transferred = (last_pressure_delta * air2.volume / (air1.temperature * R_IDEAL_GAS_EQUATION)) //Uses the volume of the whole network, not just itself. - volume_capacity_used = min((last_pressure_delta * air1.volume / 3) / (input_starting_pressure * air1.volume), 1) //How much of the gas in the input air volume is consumed. + volume_capacity_used = min(last_pressure_delta * air1.volume / (input_starting_pressure * air1.volume), 1) //How much of the gas in the input air volume is consumed. //Calculate energy generated from kinetic turbine. //Most of the below are constants. Instead, think of it as 0.051702*air1.volume*min(pressure difference, starting pressure)