<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xerkus</id>
	<title>Stationeers Community Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://stationeers-wiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xerkus"/>
	<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/Special:Contributions/Xerkus"/>
	<updated>2026-09-18T15:29:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Furnace_temperature_and_pressure_math&amp;diff=27835</id>
		<title>Furnace temperature and pressure math</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Furnace_temperature_and_pressure_math&amp;diff=27835"/>
		<updated>2026-06-26T05:55:09Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Fix code blocks mangled by the floated collapsible toggle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Introduction ===&lt;br /&gt;
This page is about predicting combustion temperatures and pressures inside furnaces. It&#039;s not about engineering or design. &lt;br /&gt;
&lt;br /&gt;
The furnace is one of the most important objects in the entire game, but it can also be complicated and hard to use, especially when making alloys and super-alloys. There is no real need to know anything written on this page, because it&#039;s possible to engineer solutions that doesn&#039;t require placing fuel inside a furnace. Hot gas can also be made elsewhere (with an Air Conditioner or by combusting fuel in a pipe) and stored in insulated tanks, and just be pumped directly into a furnace as needed.&lt;br /&gt;
&lt;br /&gt;
There are two MIPS scripts here (click the links to expand/collapse the code), that can do the math described on this page inside the game. The first script is used to predict what temperature and pressure a furnace will reach when the current gas content is ignited. The second script is used to predict how much perfect fuel (33.33% oxygen and 66.67% volatiles) and how much other gas (not fuel) that needs to be added in order to reach a desired temperature and pressure on ignition. There are two alloys that are tricky however: Waspaloy and Solder. That is because the gas mixes to make these two tends to be too dilute to ignite (below 5% oxygen), but there are ways around that, the furnace could for example be ignited after adding only half the dilutant and then the remainder is added afterwards).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:EXPAND - a MIPS script that predicts the ignition temperature and pressure of a furnace based on the gases inside of it}}&amp;quot; data-collapsetext=&amp;quot;{{int:COLLAPSE - a MIPS script that predicts the ignition temperature and pressure of a furnace based on the gases inside of it}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
#prediction of the ignition temperature and pressure of a furnace&lt;br /&gt;
#if combustion can&#039;t occur, display current temperature and pressure&lt;br /&gt;
&lt;br /&gt;
alias furnace d0        #advanced or regular&lt;br /&gt;
alias consoleTemp d1    #console, small LED&lt;br /&gt;
alias consolePres d2    #console, small LED&lt;br /&gt;
&lt;br /&gt;
alias ratioOx r5&lt;br /&gt;
alias ratioVol r6&lt;br /&gt;
alias specificHeat r12&lt;br /&gt;
alias fuel r13&lt;br /&gt;
alias temp r14&lt;br /&gt;
alias pres r15&lt;br /&gt;
&lt;br /&gt;
define energyReleased 563452&lt;br /&gt;
define specificHeatInc 172.615&lt;br /&gt;
define gasMolInc 5.7&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
#calculate the specific heat of the gas mix&lt;br /&gt;
l r5 furnace RatioOxygen&lt;br /&gt;
l r6 furnace RatioVolatiles&lt;br /&gt;
l r7 furnace RatioCarbonDioxide&lt;br /&gt;
l r8 furnace RatioPollutant&lt;br /&gt;
l r9 furnace RatioNitrogen&lt;br /&gt;
l r10 furnace RatioNitrousOxide&lt;br /&gt;
l r11 furnace RatioWater&lt;br /&gt;
mul r0 r5 21.1&lt;br /&gt;
mul r1 r6 20.4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r7 28.2&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r8 24.8&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r9 20.6&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r10 23&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r11 72&lt;br /&gt;
add specificHeat r0 r1&lt;br /&gt;
#calculate the fuel amount&lt;br /&gt;
div ratioVol ratioVol 2&lt;br /&gt;
min fuel ratioOx ratioVol&lt;br /&gt;
#calculate Temp after ignition&lt;br /&gt;
mul r0 fuel specificHeatInc&lt;br /&gt;
add r0 r0 specificHeat&lt;br /&gt;
mul r1 fuel energyReleased&lt;br /&gt;
l r2 furnace Temperature&lt;br /&gt;
mul r2 r2 specificHeat&lt;br /&gt;
add r1 r1 r2&lt;br /&gt;
div temp r1 r0&lt;br /&gt;
#calculate Pressure after ignition&lt;br /&gt;
l r0 furnace Temperature&lt;br /&gt;
l r1 furnace Pressure&lt;br /&gt;
mul r2 fuel gasMolInc&lt;br /&gt;
add r2 r2 1&lt;br /&gt;
mul r2 r2 temp&lt;br /&gt;
mul r2 r2 r1&lt;br /&gt;
div pres r2 r0&lt;br /&gt;
#check if pressure &amp;lt;10kPa and ratios &amp;lt;0.05&lt;br /&gt;
blt r1 10 noCombustion&lt;br /&gt;
blt ratioOx 0.05 noCombustion&lt;br /&gt;
blt ratioVol 0.05 noCombustion&lt;br /&gt;
s consoleTemp Color 6&lt;br /&gt;
s consolePres Color 1&lt;br /&gt;
j displayResults&lt;br /&gt;
noCombustion:&lt;br /&gt;
s consoleTemp Color 3&lt;br /&gt;
s consolePres Color 2&lt;br /&gt;
move temp r0&lt;br /&gt;
move pres r1&lt;br /&gt;
displayResults:&lt;br /&gt;
s consoleTemp Setting temp&lt;br /&gt;
s consolePres Setting pres&lt;br /&gt;
j main&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-collapsible mw-collapsed&amp;quot; data-expandtext=&amp;quot;{{int:EXPAND - a MIPS script that calculates how to mix fuel and diluting gas inside a furnace to reach a desired temperature and pressure}}&amp;quot; data-collapsetext=&amp;quot;{{int:COLLAPSE - a MIPS script that calculates how to mix fuel and diluting gas inside a furnace to reach a desired temperature and pressure}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;pre class=&amp;quot;mw-collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
#A script for calculating how to dilute fuel..&lt;br /&gt;
#..inside a furnace to reach a desired temperature..&lt;br /&gt;
#..and pressure on ignition&lt;br /&gt;
&lt;br /&gt;
# This script requires perfect fuel (O2 + 2 H2)&lt;br /&gt;
# The diluting gas can be anything, even a mix&lt;br /&gt;
# Temperature of fuel and dilutant can be different&lt;br /&gt;
# BLUE color = dilutant must provide missing oxygen&lt;br /&gt;
# ORANGE color = gas will ignite&lt;br /&gt;
&lt;br /&gt;
#Inputs are desired temperature (K) and pressure (kPa)&lt;br /&gt;
#Outputs are the pressure of fuel (kPa) and the..&lt;br /&gt;
#..total pressure (kPa) after adding the dilutant&lt;br /&gt;
&lt;br /&gt;
alias inputTemp d0          #logic memory&lt;br /&gt;
alias inputPres d1          #logic memory&lt;br /&gt;
alias outputFuel d2         #console, small LED&lt;br /&gt;
alias outputTotal d3        #console, small LED&lt;br /&gt;
alias fuelAnalyzer d4       #pipe analyzer&lt;br /&gt;
alias dilutantAnalyzer d5   #pipe analyzer&lt;br /&gt;
&lt;br /&gt;
alias oldTmix r10&lt;br /&gt;
alias Tmix r11&lt;br /&gt;
alias fuelSpecificHeat r12&lt;br /&gt;
alias dilutantSpecificHeat r13&lt;br /&gt;
alias ratioFuel r14&lt;br /&gt;
alias pressureTotal r15&lt;br /&gt;
s outputTotal Color 1&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
yield&lt;br /&gt;
s outputFuel Color 3&lt;br /&gt;
#calculate specific heat values&lt;br /&gt;
div r0 61.9 3&lt;br /&gt;
move fuelSpecificHeat r0&lt;br /&gt;
jal specficHeatCalculation&lt;br /&gt;
#calculate how to reach input values&lt;br /&gt;
l r5 fuelAnalyzer Temperature&lt;br /&gt;
l r6 inputTemp Setting&lt;br /&gt;
l r7 dilutantAnalyzer Temperature&lt;br /&gt;
move oldTmix r5&lt;br /&gt;
move r9 5&lt;br /&gt;
iterate:&lt;br /&gt;
jal fuelRatioCalculation&lt;br /&gt;
jal temperatureMixCalculation&lt;br /&gt;
sub r9 r9 1&lt;br /&gt;
move oldTmix Tmix&lt;br /&gt;
blt r9 1 iterate&lt;br /&gt;
#calculate total fuel+dilutant pressure&lt;br /&gt;
l r8 inputPres Setting&lt;br /&gt;
mul r1 ratioFuel 1.9&lt;br /&gt;
add r1 r1 1&lt;br /&gt;
mul r1 r1 r6&lt;br /&gt;
mul r0 r8 Tmix&lt;br /&gt;
div pressureTotal r0 r1&lt;br /&gt;
#calculate fuel pressure&lt;br /&gt;
mul r0 r5 pressureTotal&lt;br /&gt;
mul r0 ratioFuel r0&lt;br /&gt;
div r0 r0 Tmix&lt;br /&gt;
#calculate dilutant pressure (not used)&lt;br /&gt;
#sub r1 1 ratioFuel&lt;br /&gt;
#mul r1 r1 pressureTotal&lt;br /&gt;
#mul r1 r1 r7&lt;br /&gt;
#div r1 r1 Tmix&lt;br /&gt;
#check for too high input temperature&lt;br /&gt;
blt pressureTotal r0 noCombustion&lt;br /&gt;
#display result&lt;br /&gt;
bltal ratioFuel 0.15 dilutantMustHaveOxygen&lt;br /&gt;
bltal ratioFuel 0.10 noCombustion&lt;br /&gt;
s outputFuel Setting r0&lt;br /&gt;
s outputTotal Setting pressureTotal&lt;br /&gt;
j main&lt;br /&gt;
noCombustion:&lt;br /&gt;
s outputFuel Setting -1&lt;br /&gt;
s outputTotal Setting -1&lt;br /&gt;
j main&lt;br /&gt;
dilutantMustHaveOxygen:&lt;br /&gt;
s outputFuel Color 0&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
fuelRatioCalculation:&lt;br /&gt;
div r0 563452 3&lt;br /&gt;
sub r4 fuelSpecificHeat dilutantSpecificHeat&lt;br /&gt;
mul r1 Tmix r4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r6 r4&lt;br /&gt;
sub r0 r0 r1&lt;br /&gt;
div r1 172.615 3&lt;br /&gt;
mul r1 r6 r1&lt;br /&gt;
sub r0 r0 r1&lt;br /&gt;
sub r1 r6 Tmix&lt;br /&gt;
mul r1 r1 dilutantSpecificHeat&lt;br /&gt;
div ratioFuel r1 r0&lt;br /&gt;
j ra&lt;br /&gt;
temperatureMixCalculation:&lt;br /&gt;
sub r4 1 ratioFuel&lt;br /&gt;
mul r0 dilutantSpecificHeat r4&lt;br /&gt;
mul r1 ratioFuel fuelSpecificHeat&lt;br /&gt;
add r3 r0 r1&lt;br /&gt;
mul r0 r7 r4&lt;br /&gt;
mul r0 r0 dilutantSpecificHeat&lt;br /&gt;
mul r1 r5 ratioFuel&lt;br /&gt;
mul r1 r1 fuelSpecificHeat&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
div Tmix r0 r3&lt;br /&gt;
j ra&lt;br /&gt;
specficHeatCalculation:&lt;br /&gt;
l r5 d5 RatioOxygen&lt;br /&gt;
l r6 d5 RatioVolatiles&lt;br /&gt;
l r7 d5 RatioCarbonDioxide&lt;br /&gt;
l r8 d5 RatioPollutant&lt;br /&gt;
l r9 d5 RatioNitrogen&lt;br /&gt;
l r10 d5 RatioNitrousOxide&lt;br /&gt;
bne r5 r5 noCombustion #protection against null&lt;br /&gt;
mul r0 r5 21.1&lt;br /&gt;
mul r1 r6 20.4&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r7 28.2&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r8 24.8&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r9 20.6&lt;br /&gt;
add r0 r0 r1&lt;br /&gt;
mul r1 r10 23&lt;br /&gt;
add dilutantSpecificHeat r0 r1&lt;br /&gt;
j ra&lt;br /&gt;
&lt;br /&gt;
### End Script ###&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Furnace behaviour ===&lt;br /&gt;
*Only the gas inside the furnace have a temperature (the furnace itself has no temperature, nor will it take heat away from the gas inside)&lt;br /&gt;
*No side reactions have been observed (fuel can be mixed with any other gas with predictable results)&lt;br /&gt;
*For a combustion to occur, the gas must have at least 5% each of both O2 and H2&lt;br /&gt;
*For a combustion to occur, there must be a minimum pressure of 10 kPa &#039;&#039;(0.2.2733.13309 changelog)&#039;&#039;&lt;br /&gt;
*A combustion will consume 95% of the limiting ingredient, O2 or H2 (if there is 10 mol H2, and excess O2, 0.5 mol H2 will remain afterwards)&lt;br /&gt;
*Combustion reaction formula: 1 O2 + 2 H2 -&amp;gt; 6 CO2 + 3 X + 593 107.3684 J &#039;&#039;(this energy value is an approximation, see discussions for details)&#039;&#039;&lt;br /&gt;
*Each press of ignite adds 5 J of energy to the furnace (only the advanced furnace was tested) &#039;&#039;(see discussions)&#039;&#039;&lt;br /&gt;
*A furnace, as any other device with internal atmosphere, except insulated ones, constantly radiates temperature into void, even when built in a sealed room with vacuum or inside a fully welded frame. This should simulate entropy and radiative heat exchange with space, but does not account if device is placed in a room. And also this does not increase temperature when it&#039;s lower than global atmosphere&#039;s temperature.&lt;br /&gt;
*Ores placed in a furnace will release gases, this reduces the temperature and increases the mols of gas.&lt;br /&gt;
*Ingots placed in a furnace will reduce the temperature (~half compared to the ore, only copper tested) without releasing gas.&lt;br /&gt;
*Inserted ores/ingots are processed at a speed of 10 per second, so 5 seconds per stack of 50.&lt;br /&gt;
&lt;br /&gt;
Regular furnace&lt;br /&gt;
*The inlet pipe will only allow gas to enter the furnace, and it will only do so if the pressure in the pipe is higher than the pressure inside the furnace. This behaviour is similar to that of the pressure regulator.&lt;br /&gt;
*The outlet pipe acts like an extension of the furnace, increasing it&#039;s volume by 100L per pipe section, and it can be used as an alternative inlet point if so desired (but it acts a little bit quirky, the pipe and the furnace will have different %gas proportions when doing so, because the gas will only move when there is a pressure difference between the two). A larger furnace volume basically only means it will require a bit more gas, +10% more mol for each unsealed pipe section attached to it, everything else will be the same. The number of junctions on a pipe doesn&#039;t matter, the volume is always 100L. &lt;br /&gt;
*Removing pipes connected to the outlet side should be avoided when the furnace is filled with fuel, doing so can cause some of the gas to vanish permanently.&lt;br /&gt;
&lt;br /&gt;
Advanced furnace&lt;br /&gt;
*The inlet pipe is the only place where gas can enter the furnace (not counting the ore slot). It has a built in volume pump.&lt;br /&gt;
*The outlet pipe is the only place where gas can exit the furnace. It has a built in volume pump.&lt;br /&gt;
*Unlike the regular furnace, the advanced one always have a volume of 1000 L, regardless of how many pipes are attached to it. This saves a little bit of fuel.&lt;br /&gt;
&lt;br /&gt;
=== Known errors of the math formulas ===&lt;br /&gt;
&lt;br /&gt;
The formulas were created by hand, no data mining or peeking into the game code.&lt;br /&gt;
&amp;lt;br&amp;gt;The calculation for temperature and pressure of a gas mix have a tiny unexplained error that can appear in the 6th digit and it&#039;s most noticeable at very low fuel pressures. &lt;br /&gt;
&amp;lt;br&amp;gt;The reverse calculation (to know how much fuel and diluting gas to add to reach a desired temperature and pressure) requires iteration in order to calculate the temperature obtained after mixing the fuel and the dilutant, but the impact of the starting temperature is still pretty small to begin with, and after a few iterations this error will become negligible.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Using perfect O2 + 2 H2 fuel ===&lt;br /&gt;
The amount of fuel that combusts has no impact on the final temperature. Only the purity of the fuel (more on dirty fuel in the next section) and the temperature of the fuel matters, but the latter can be ignored for practical purposes (only around 3% difference in combustion temperature between fuel that is 1K and fuel that has room temperature). More fuel will always release more total energy, which means it takes increasingly longer for the furnace to cool down.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Temperature peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*T(after) = ( T(before)*61.9 + 563452 ) / 234.515&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**The 563452 value is the released energy per mol at 95% combustion efficiency, the full energy isn&#039;t released&lt;br /&gt;
**61.9 is the heat capacity for 1 mol O2 and 2 mol H2, the sum of their specific heat values, the mol amounts comes from the reaction formula&lt;br /&gt;
**234.515 is the heat capacity for the gas obtained when 1 mol O2 and 2 mol H2 combusts with 95% efficiency (243.6 * 0.95 + 61.9 * 0.05) &lt;br /&gt;
*The equation can be arrived at by using the released energy per mol and the specific heat per mol of the mixture before and after combustion, also account for the 95% combustion efficiency.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pressure peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(after) = 2.9 * P(before) * T(after) / T(before)&lt;br /&gt;
**P(after) is the pressure in Pa after ignition &lt;br /&gt;
**P(before) is the pressure in Pa before ignition&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**2.9 is the multiple of the number of mol inside the furnace after combustion with 95% efficiency based on the reaction formula&lt;br /&gt;
*The equation can be made from two sets of PV=nRT (one before and one after combustion), linking them via n (combustion makes 3 mols of gas turn into 9 mols), and adjust for the 95% combustion efficiency.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Using diluted fuel ===&lt;br /&gt;
[[File:Advanced-furnace-gas-mixing.png|thumb|gas mixing for 2H2+O2+dilutant]]&lt;br /&gt;
Dirty fuel combusts at a lower temperature, the non-combustible gases also helps to increase the pressure. This can be very useful. Adding unreactive gases to a furnace on purpose means that the combustion temperature will be lower and the pressure higher, which helps when making certain alloys. An excess of either oxygen or volatiles will also count as unreactive since they don&#039;t take part in the combustion.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Temperature peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*T(after) = ( T(before) * sum(specific heat * ratio(gas)(before)) + min(ratio(O2), ratio(H2)*0.5) * 563452 ) / ( sum(specific heat * ratio(gas)(before)) + min(ratio(O2), ratio(H2)*0.5) * 172.615)&lt;br /&gt;
**T(after) is the temperature in Kelvin after ignition&lt;br /&gt;
**T(before) is the temperature in Kelvin before ignition&lt;br /&gt;
**sum(x*y) is the sum of all x*y products, used to calculate the total sum of each gas specific heat multiplied with its ratio&lt;br /&gt;
**specific heat is the value given for each gas, it refers to how much energy that is needed to increase the temperature by 1K per mol&lt;br /&gt;
**ratio(gas)(before) is the molecular ratio, given by the tablet as % values for each gas in the mix, before ignition&lt;br /&gt;
**min(x,y) returns the smallest value of x and y&lt;br /&gt;
**563452 comes from the energy released when 1 mol O2 and 2 mol H2 combusts with 95% efficiency&lt;br /&gt;
**172.615 comes from 0.95*(243.6-61.9), this is the change in heat capacity (specific heat*number of mol) of the gas when 1 mol O2 and 2 mol H2 combusts with 95% efficiency into its new compounds&lt;br /&gt;
**The equation comes from calculating the Thermal Energy (temperature*specific heat per mol) before combustion, add the released energy calculated from the ratio of O2, then divide with the &#039;&#039;specific heat per mol&#039;&#039; of the gas obtained after combustion, which is known thanks to the reaction formula, all of this becomes the temperature on ignition&lt;br /&gt;
&lt;br /&gt;
same thing but possibly easier to read&lt;br /&gt;
*T(after) = ( T(before) * specificHeat(before) + fuel * 563452 ) / ( specificHeat(before) + fuel * 172.615)&lt;br /&gt;
**specificHeat(before) = RatioOxygen*21.1 + RatioVolatile*20.4 + RatioCarbonDioxide*28.2 + RatioPollutant*24.8 + RatioNitrogen*20.6 + RatioNitrousOxide*23&lt;br /&gt;
**fuel = min(RatioOxygen,RatioVolatile/2)&lt;br /&gt;
**Notice that water isn&#039;t included. That&#039;s because this haven&#039;t been verified, but water is probably treated as a gas by the game so a good guess is that it can be included simply by adding RatioWater*72 to the specificHeat sum.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pressure peak&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(after) = P(before) * T(after) * ( 1 + 5.7*min(ratio(O2), ratio(H2)*0.5) ) / T(before)&lt;br /&gt;
**this expression comes from two sets of PV=nRT, one after and one before combustion. The reaction formula say that for each mol consumed O2 we gain 6 mol gas (9-3), this creates a link between the equations, n(after) = n(before)*(1+min(ratio(O2), ratio(H2)*0.5)*6), then include the 0.95 efficiency as well&lt;br /&gt;
&lt;br /&gt;
=== Using Ice(Oxite) and Ice(Volatiles) ===&lt;br /&gt;
&lt;br /&gt;
There is a minor difference between which ice is added first. One can also observe a fluctuation in the combustion efficiency compared to when a furnace is fueled with gas. The end result also matters a little bit on how fast the ignition button is pressed when the first ice type is added while doing larger batches.&lt;br /&gt;
&lt;br /&gt;
small batch, oxite first&lt;br /&gt;
*Adding 1 oxite + 1 volatile, in that order&lt;br /&gt;
**Temperature: 2222K, Pressure: 2.03MPa, moles of O2/H2 combusted: 11/21, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
*Adding 1 oxite + 2 volatiles, in that order&lt;br /&gt;
**Temperature: 2514K, Pressure: 4.13MPa, moles of O2/H2 combusted: 22/43, Combustion efficiency (H2 limited): 98%&lt;br /&gt;
&lt;br /&gt;
small batch, volatiles first&lt;br /&gt;
*Adding 1 volatile + 1 oxite, in that order&lt;br /&gt;
**Temperature: 2224K, Pressure: 2.03MPa, moles of O2/H2 combusted: 11/21, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
*Adding 2 volatiles + 1 oxite, in that order&lt;br /&gt;
**Temperature: 2432K, Pressure: 3.93MPa, moles of O2/H2 combusted: 21/42, Combustion efficiency (H2 limited): 95%&lt;br /&gt;
&lt;br /&gt;
large batch, oxite first&lt;br /&gt;
*Adding 5 oxite + 10 volatiles, in that order&lt;br /&gt;
**Temperature: 2463K, Pressure: 18.76MPa, moles of O2/H2 combusted: 96/190, Combustion efficiency (H2 limited): 86%&lt;br /&gt;
*Adding 8 oxite + 16 volatiles, in that order&lt;br /&gt;
**Temperature: 2537K, Pressure: 33.28MPa, moles of O2/H2 combusted: 172/344, Combustion efficiency (H2 limited): 98%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The difference in combustion efficiency is a mystery. One possibility is that this deviation is a result of multiple consecutive ignitions during the same game tick as the second ice is added, and then the gassy products are added on the following tick. Whatever the reason, using ice in a furnace creates some unpredictability, which give calculations a certain degree of error. So instead of using math, it seems better to write down a table of temperatures and pressure resulting from different amounts of ice.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;9&amp;quot; |&#039;&#039;&#039;Empty furnace, oxite first, no pipes attached&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Ice&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;1 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;2 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;3 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;4 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;5 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;6 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;7 oxite&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;8 oxite&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;1 volatile&#039;&#039;&#039; &lt;br /&gt;
| 2222K&amp;lt;br&amp;gt;2.03MPa &lt;br /&gt;
| ? &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 1094K&amp;lt;br&amp;gt;2.59MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;2 volatile&#039;&#039;&#039; &lt;br /&gt;
| 2514K&amp;lt;br&amp;gt;4.13MPa&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;3 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;4 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;5 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;6 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;7 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;8 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;9 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;10 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2463K&amp;lt;br&amp;gt;18.76MPa&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2400K&amp;lt;br&amp;gt;21.40MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;11 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2451K&amp;lt;br&amp;gt;23.41MPa&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;12 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;13 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;14 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;15 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; | &#039;&#039;&#039;16 volatile&#039;&#039;&#039; &lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| 2537K&amp;lt;br&amp;gt;33.28MPa&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Furnace cooling rate (unfinished) ===&lt;br /&gt;
&lt;br /&gt;
unknown&lt;br /&gt;
&lt;br /&gt;
Observations&lt;br /&gt;
*the rate of cooling is temperature dependent, hotter cools faster &lt;br /&gt;
* Furnaces do not lose heat through conduction if in a vacuum.  This can be very useful for recipes that have tight temperature or pressure windows, although you will have to have an alternate mechanism to tweak the values if you overshoot (such as a valve leading to a pipe with a radiator out in the atmosphere, or a backpressure regulator).&lt;br /&gt;
*the rate of cooling is time dependent (game tick speed is once per 0.5 seconds)&lt;br /&gt;
*the rate of cooling is mol dependent (small amounts cool faster)&lt;br /&gt;
*pipes attached to the exhaust effect the cooling rate, and since they effectively increase the volume of the furnace the amount of mol of hot gas will be different too&lt;br /&gt;
*adding ores decreases the temperature (do melting cost energy? or is this just from heating the trapped gases inside the ore?)&lt;br /&gt;
&lt;br /&gt;
Possible experimental setup to measure dT/dt&lt;br /&gt;
*Hold a tablet with an atmos cartridge in the right hand (so it can be read when the game is paused). Aim the tablet against the furnace and pause with ESC, double tap ESC to move the game forward one tick, record the temperatures.&lt;br /&gt;
*Remember to record the &#039;&#039;total amount of moles&#039;&#039; as well&lt;br /&gt;
&lt;br /&gt;
=== Calculating how to reach a desired Temperature and Pressure on ignition ===&lt;br /&gt;
&lt;br /&gt;
There are only 4 variables required for this calculation.&lt;br /&gt;
#Intial fuel mix temperature (furnace temperature before ignition)&lt;br /&gt;
#Desired temperature on ignition (you choose)&lt;br /&gt;
#Desired pressure on ignition (you choose)&lt;br /&gt;
#The specific heat value of the gas used to dilute the fuel (if a mix of gases is used, the specific heat to use is the average specific heat per mol, example calculation below)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;The equations will give these results&lt;br /&gt;
#The ratio(fuel) in the fuel-dilutant mix. (0.75 means 75% perfect 1:2 fuel mols (O2 and H2 added together)†, the other 25% will be dilutant gas mols, making it a 1:2:1 mix of O2:H2:dilutant)&lt;br /&gt;
#The total pressure of the fuel-dilutant mix inside the furnace before ignition&lt;br /&gt;
†It&#039;s helpful to separate out the fuel part like this since everyone should be using pre-mixed fuel, it makes the diluting easier and has a lower risk to cause confusion when using either O2 or H2 to be the dilutant gas&lt;br /&gt;
&lt;br /&gt;
To freely control the temperature and pressure, the fuel must be diluted with a non-combustible gas. This can be added either before or after ignition, doing so before ignition makes it a lot easier to predict, doing so after ignition is more of an art than a science (it depends on how the furnace is built and how fast the operator can work). The method prefered here is to add the non-combustible gas before ignition. &lt;br /&gt;
&lt;br /&gt;
Diluting the fuel can be done in the furnace directly or in pipes outside of it. There are good and bad points with both ways. Diluting outside fits the advanced furnace best (the built-in volume pump can easily move all of the prepared gas inside), diluting inside fits the regular furnace best (the exhaust outlet can be used as an inlet but it&#039;s a little bit quirky, and diluting in pipes outside means not all of the prepared gas can be moved into the furnace (the pipe directly on the furnace inlet will hold on to some of the diluted fuel) so extra gas must always be prepared).&lt;br /&gt;
&lt;br /&gt;
It is worth noting that for some temperatures and pressures suitable for advanced alloys, the calculation can suggest a fuel ratio below 0.15. This will not work however, since it means having less than 5% oxygen, that mix will not combust (unless the dilutant contains extra oxygen). This is a particular problem with &#039;&#039;&#039;Waspaloy&#039;&#039;&#039; (400-800K, 50+MPa), that can be solved by having oxygen in the diluting gas (a 5% ratio, having more doesn&#039;t help), but it&#039;s easier to just ignite the furnace prematurely and then finish adding the remaining dilutant.&lt;br /&gt;
&lt;br /&gt;
The dilution can be always be double checked by using the tablet and looking at the mol% values for the fuel mix. If the outlet on the regular furnace was used as an inlet, the first gas that entered there will have been mostly pushed back into the furnace, making the mol% values different but the total number of mol are still the same.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Calculating the fuel ratio&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*ratio(fuel) = s*( T(after) - T(before) ) / ( 187817 + T(before)*(20.633 - s) - T(after)*(78.172 - s) )&lt;br /&gt;
**ratio(fuel), 1 = 100% fuel which is 33.33% O2 and 66.67% H2&lt;br /&gt;
**T(after) is the chosen temperature after ignition, in K&lt;br /&gt;
**T(before) is the furnace temperature before ignition, in K&lt;br /&gt;
**s = specific heat of diluting gas&lt;br /&gt;
***if the dilutant is a mix of gases, calculate the average specific heat in that mix per mol&lt;br /&gt;
***example: 15% N2 and 85% CO2 as dilutant -&amp;gt; specific heat = 0.15*20.6 + 0.85*28.2 = 27.06&lt;br /&gt;
*This equation comes from the equation under &#039;&#039;Using diluted fuel&#039;&#039;, it was arrived at by doing the following things&lt;br /&gt;
**ratio(fuel) was introduced (which is 3 times higher than min(ratio(O2),ratio(H2)*0.5), everyone should be using pre-mixed fuel so this should make things simpler, having 1 represent 100% fuel is also more intuitive than having 0.333 mean 100% fuel&lt;br /&gt;
**everything is calculated per 1 mol fuel here, the original one uses per 3 mol fuel (1 mol O2 + 2 mol H2), so several values must be divided by 3&lt;br /&gt;
**the dilutant (even a mix) can be treated as a single gas, which turns &#039;&#039;sum(specific heat * mol of gas (before))&#039;&#039; into &#039;&#039;ratio(fuel)*(specific heat(O2)+2*specific heat(H2) )/3 + (1-ratio(fuel))*specific heat(dilutant)&#039;&#039;&lt;br /&gt;
**min(ratio(O2),ratio(H2)*0.5) will now always be ratio(fuel)/3, so it can be replaced with that&lt;br /&gt;
**without any rounding the formula is: ratio(fuel) = s*(T(after) - T(before)) / ( T(before)*(61.9/3-s) + (0.95*593107.3684/3) - T(after)*(61.9/3-s) - T(after)*(0.95*181.7/3) )&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Calculating the pressure before ignition&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*P(before) = P(after)*T(before) / ( T(after) * (1 + ratio(fuel)*1.9) )&lt;br /&gt;
**ratio(fuel) is the result from the temperature calculation above&lt;br /&gt;
**P(after) = the chosen pressure value, in Pa&lt;br /&gt;
**T(before) = temperature of fuel mix in the furnace before ignition, in K&lt;br /&gt;
**T(after) = the chosen value used in the temperature calculation above, in K&lt;br /&gt;
*This equation was arrived at by starting with the one under &#039;&#039;Using diluted fuel&#039;&#039; and replacing min(ratio(O2),ratio(H2)*0.5) with ratio(fuel)/3&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Diluting fuel&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Mixing gas is temperature sensitive. This is because pressure is used as an indirect measure of the amount of mol (n=PV/(RT)) being transferred, and pressure is also dependent on temperature. It is however possible to get around this issue with a bit of math.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;A)&#039;&#039;&#039; When fuel and dilutant have the same temperature&lt;br /&gt;
*Add the fuel&lt;br /&gt;
**fuel pressure = ratio(fuel) * P(before)&lt;br /&gt;
*Add the dilutant until the pressure P(before) is reached &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;B)&#039;&#039;&#039; When fuel and dilutant have different temperature&lt;br /&gt;
*T(mix) = sum( T(before)*ratio(after)*sh ) / sum( ratio(after)*sh )&lt;br /&gt;
**T(mix) is the temperature after combining all gases&lt;br /&gt;
**T(before) is the temperature that each individual gas compound involved (O2, H2, CO2 etc) has before mixing them&lt;br /&gt;
**ratio(after) is a value between 0 and 1, the %mol ratio, in the final mix&lt;br /&gt;
**sh is the specific heat for each individual gas&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(same thing, different way of writing it)&#039;&#039;&lt;br /&gt;
*T(mix) = ( T(fuel)*ratio(fuel)*20.633 + T(dilutant)*ratio(dilutant)*s ) / ( ratio(fuel)*20.633 + ratio(dilutant)*s )&lt;br /&gt;
**T(mix) is the temperature &#039;&#039;after&#039;&#039; combining the fuel and dilutant&lt;br /&gt;
**T(fuel) is the temperature of the fuel &#039;&#039;before&#039;&#039; mixing&lt;br /&gt;
**T(dilutant) is the temperature of the dilutant &#039;&#039;before&#039;&#039; mixing&lt;br /&gt;
**ratio(fuel) is the ratio of fuel &#039;&#039;after&#039;&#039; mixing everything&lt;br /&gt;
**ratio(dilutant) is the ratio of dilutant &#039;&#039;after&#039;&#039; mixing everything&lt;br /&gt;
**s is the specific heat of the dilutant (if the dilutant is a mix of gases, see example under the calculation for ratio(fuel) above)&lt;br /&gt;
&lt;br /&gt;
Mixing fuel and dilutant of different temperature&lt;br /&gt;
*Add the fuel&lt;br /&gt;
**fuel pressure = ratio(fuel) * P(before) * T(fuel) / T(mix)&lt;br /&gt;
*Add the dilutant&lt;br /&gt;
**keep adding until the pressure P(before) is reached&lt;br /&gt;
*The temperature should now be the same as the calculated T(mix) value, unless there was warming or cooling of the gases during the mixing process (in that case, the fuel-dilutant mix has slightly too much or too little dilutant in it, use the tablet to check the ratio of H2 or O2)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Double-checking the fuel-dilutant mix&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Use the tablet with the amtospherics cartridge and compare the measured mol% with one of the following equations. If neither O2 nor H2 is used as dilutant, they will both give the same result.&lt;br /&gt;
*When O2 is in excess&lt;br /&gt;
**ratio(H2) = ratio(fuel)*2/3&lt;br /&gt;
*When H2 is in excess&lt;br /&gt;
**ratio(O2) = ratio(fuel)/3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Example calculation ====&lt;br /&gt;
It&#039;s a warm and sunny day on Europa and a stationeer wants to make some invar. The desired temperature and pressure will be chosen as be the upper limit for invar, so 1500K and 20MPa. Adding ore to the furnace will reduce its temperature and increase the amount of gas (and pressure) inside of it, but the stationeer hopes that 100g of invar will be too little to have much of an effect. The furnace is exposed to the atmosphere and will be loosing temperature and pressure fairly fast which could be an issue, but making the alloy should be quick enough. The dilutant gas will be pure O2 from the atmosphere, which has a specific heat value of 21.1. The starting temperature of the fuel and the atmosphere are both at -140°C.&lt;br /&gt;
&lt;br /&gt;
*ratio(fuel) = s*( T(after) - T(before) ) / ( 187817 + T(before)*(20.633 - s) - T(after)*(78.172 - s) )&lt;br /&gt;
**s = specific heat of the dilutant = 21.1&lt;br /&gt;
**T(after) = 1500K (this is the chosen value)&lt;br /&gt;
**T(before) = -140C = 133K (temperature inside the furnace before ignition)&lt;br /&gt;
*ratio(fuel) = 0.28237&lt;br /&gt;
*This is high enough for combustion to occur&lt;br /&gt;
**H2 is the limiting gas so %H2 must be at least 5%, the minimum value can be expressed as %H2 = ratio(fuel)*2/3 = 5%, solving for ratio(fuel) gives us 0.075, which is the lowest ratio(fuel) at which combustion can occur&lt;br /&gt;
&lt;br /&gt;
The necessary pressure of the pre-ignition fuel mix inside the furnace will be&lt;br /&gt;
*P(before) = P(after)*T(before) / ( T(after) * (1 + ratio(fuel)*1.9) )&lt;br /&gt;
**ratio(fuel) = 0.28237&lt;br /&gt;
**P(after) = 20MPa (this is the chosen value)&lt;br /&gt;
**T(before) = -140C = 133K&lt;br /&gt;
**T(after) = 1500K (this is the chosen value used in the temperature calculation)&lt;br /&gt;
*P(before) = 1154.1kPa&lt;br /&gt;
&lt;br /&gt;
Dilution calculations&lt;br /&gt;
*The needed pressure of pure fuel inside the furnace will be&lt;br /&gt;
**P(fuel) = ratio(fuel) * P(before) = 0.28237 * 1154.1kPa = 325.88kPa&lt;br /&gt;
*The dilutant will then be added to the furnace to reach the P(before) pressure at 1.16MPa (1154kPa rounded up)&lt;br /&gt;
*The ratio of H2 inside the furnace before ignition can be checked with the tablet, it should be&lt;br /&gt;
**ratio(H2) = 0.28237 * 2/3 = 0.188 = 19%&lt;br /&gt;
&lt;br /&gt;
This was tested in practice. After adding fuel and dilutant the game was saved, then the furnace was ignited. Adding the ores reduced the temperature and increased the pressure a bit, which pushed the pressure up above 20MPa and out of the needed range. After waiting for the pressure to drop back down, the temperature was still high enough to make the desired alloy with several seconds to spare. In hindsight, 20MPa was a bit too high and 1500K a bit too low, better values could definitely have been chosen.&lt;br /&gt;
&lt;br /&gt;
Reloading the save and placing the furnace inside a welded frame to insulate it (no loss of temperature or pressure) showed the following. The furnace reached 1477K and 19.90MPa after ignition. The fuel was added with a regulator (the furnace showed: 325kPa, 133K), the fuel mix was decent but not a perfect 1:2. Then the diluting O2 was added, it was slightly too cold (the furnace now showed: 1.16MPa, 130K), so a bit too much dilutant was added to the furnace (since cold gas has a lower pressure). The dilutant was inserted via the furnace outlet, checking the mol% with the tablet showed 3% H2 in the outlet pipe and 20% inside the furnace instead of 19% in both, the total number of H2 mol was unchanged. The temperature and pressure was really close to the calculated ones, even though the execution was a bit sloppy. The observed loss of temperature could be explained by using too much dilutant, using a lower starting temperature and a flawed fuel mix. The lower pressure is related to the temperature, going from 1500K to 1477K should mean -1.5% reduction in pressure, but the change was just -0.5%, an indication that too much dilutant had been added.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Charts for fuel and dilutant mixes at 25°C===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Pure fuel at 25°C (perfect mix, 33.33% O2 and 66.67% H2)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 62 kPa&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 911 kPa&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 2481 K&lt;br /&gt;
| 60 MPa&lt;br /&gt;
| 2485 kPa&lt;br /&gt;
| Explosion warning&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; |&#039;&#039;&#039;Perfect fuel diluted with CO2 (specific heat = 28.5, highest value)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel + Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 550 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 34 kPa&lt;br /&gt;
| 715 kPa&lt;br /&gt;
| 749 kPa&lt;br /&gt;
| Will not ignite (must ignite before all dilutant is added)&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 54.5 kPa&lt;br /&gt;
| 214.5 kPa&lt;br /&gt;
| 269 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 800 kPa&lt;br /&gt;
| 3144 kPa&lt;br /&gt;
| 3944 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1500 K&lt;br /&gt;
| 19 MPa&lt;br /&gt;
| 731 kPa&lt;br /&gt;
| 1655 kPa&lt;br /&gt;
| 2386 kPa&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; |&#039;&#039;&#039;Perfect fuel diluted with H2 (specific heat = 20.4, lowest value)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Temperature (K)&#039;&#039;&#039; &lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Pressure&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Fuel + Dilutant (25°C, 298K)&#039;&#039;&#039;&lt;br /&gt;
! colspan=&amp;quot;1&amp;quot; rowspan=&amp;quot;1&amp;quot; |&#039;&#039;&#039;Comment&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| 550 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 25 kPa&lt;br /&gt;
| 740 kPa&lt;br /&gt;
| 765 kPa&lt;br /&gt;
| Will not ignite (must ignite before all dilutant is added)&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 1.5 MPa&lt;br /&gt;
| 44.5 kPa&lt;br /&gt;
| 243.5 kPa&lt;br /&gt;
| 288 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1200 K&lt;br /&gt;
| 22 MPa&lt;br /&gt;
| 652 kPa&lt;br /&gt;
| 3572 kPa&lt;br /&gt;
| 4224 kPa&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 1500 K&lt;br /&gt;
| 19 MPa&lt;br /&gt;
| 624 kPa&lt;br /&gt;
| 1966 kPa&lt;br /&gt;
| 2590 kPa&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Stacker&amp;diff=27828</id>
		<title>Stacker</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Stacker&amp;diff=27828"/>
		<updated>2026-06-21T12:13:26Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Clarify and expand Output parameter behavior for stacker in mode 1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Machines]]&lt;br /&gt;
[[Category:Import/Export]]&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Stacker)&lt;br /&gt;
 | image       = [[File:ItemKitStacker.png]]&lt;br /&gt;
 | createdwith = [[Autolathe]], [[Fabricator]]&lt;br /&gt;
 | cost        = 10g [[Ingot_(Iron)|Iron]], 2g [[Ingot_(Copper)|Copper]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
The kit has 3 variations : 2 are the Stacker, with the power/data port on one side or the other. The last variant is the Unloader&lt;br /&gt;
&lt;br /&gt;
=Stacker=&lt;br /&gt;
&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Stacker&lt;br /&gt;
 | power_usage      = 50W&lt;br /&gt;
 | prefab_hash      = Normal: -2020231820 &amp;lt;br/&amp;gt; Reversed: 1585641623&lt;br /&gt;
 | prefab_name      = StructureStacker &amp;lt;br/&amp;gt; StructureStackerReverse&lt;br /&gt;
 | placed_with_item = [[Kit (Stacker)]]&lt;br /&gt;
 | placed_on_grid   = Small Grid&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = [[Kit (Stacker)]]&lt;br /&gt;
 | slot_0           = Import&lt;br /&gt;
 | slot_1           = Export&lt;br /&gt;
 | slot_2           = Inside Machine&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Used to stack items in a chosen quantity. The stacker holds back the input until the configured quantity can be stacked _or_ until the input item type changes. If the input is bigger than the chosen quantity, the stacker (despite its name) splits it.&lt;br /&gt;
&lt;br /&gt;
{{Data Network Header}}&lt;br /&gt;
&lt;br /&gt;
{{Data Parameters}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Integer || 0 = Automatic stacking and export,&amp;lt;br&amp;gt; 1 = Stack and hold until Activate = 1&lt;br /&gt;
|-&lt;br /&gt;
| Activate || Boolean || If set to 1, the Stacker will clear its content via its Export Slot without regard to the Setting&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| Setting || Integer || Default is 1. Sets the Stack Size (won&#039;t actually stack to that size if item&#039;s max stack size is smaller)&lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| ClearMemory || Integer? || Writing on this Parameter will reset the ExportCount and ImportCount values to zero.&lt;br /&gt;
|-&lt;br /&gt;
| Output || Integer || Value of 0 in Mode 0. Mode 1 sets this to -1 as default.&amp;lt;br&amp;gt; Writing a 0 or 1 while in Mode 1 will try to export a single batch of items from storage with quantity Setting and will reset Output to -1. If there are not enough items in storage, they will not be output. With entirely empty storage no output attempt will happen and Output will not be reset.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Data Outputs}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Output Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| ImportCount || Integer || Incremented each time an item stack enter by the Import slot &lt;br /&gt;
|-&lt;br /&gt;
| ExportCount || Integer || Incremented each time an item stack exit by the Export Slot&lt;br /&gt;
|-&lt;br /&gt;
| Error || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Activate || Boolean || 1 if empty, 0 if something is inside the Stacker. When set to 0 The player can use the lever to clear the Stacker&lt;br /&gt;
|-&lt;br /&gt;
| Setting || Integer || Default is 1. Shows the Stack Size this Stacker is set to.&lt;br /&gt;
|-&lt;br /&gt;
| RequiredPower || Integer || In watts. The Stacker requires 5W to operate.&lt;br /&gt;
|-&lt;br /&gt;
| PrefabHash || Float || Hash ID of the Stacker.&lt;br /&gt;
|-&lt;br /&gt;
| Power || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Output || Integer || Value of 0 in Mode 0. Mode 1 sets this to -1.&lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
The stacker can only stack things up to the stacking limit of the given item:&lt;br /&gt;
*Ingots can be stacked up to 500.&lt;br /&gt;
*Ore will not stack over 50.&lt;br /&gt;
&lt;br /&gt;
=Unloader=&lt;br /&gt;
&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Unloader&lt;br /&gt;
 | power_usage      = 50W&lt;br /&gt;
 | prefab_hash      = 750118160&lt;br /&gt;
 | prefab_name      = StructureUnloader&lt;br /&gt;
 | placed_with_item = [[Kit (Stacker)]]&lt;br /&gt;
 | placed_on_grid   = Small Grid&lt;br /&gt;
 | decon_with_tool1 = [[Hand Drill]]&lt;br /&gt;
 | item_rec1        = [[Kit (Stacker)]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The unloader variant will empty the content of a belt/container. It will output everything that is inside, followed by belt/container itself.&lt;br /&gt;
{{Data Network Header}}&lt;br /&gt;
&lt;br /&gt;
{{Data Parameters}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Integer || 0 = automatic export,&amp;lt;br&amp;gt; 1 = holds export until Output set&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| ClearMemory || Integer? || Writing on this Parameter will reset the ExportCount and ImportCount values to zero.&lt;br /&gt;
|-&lt;br /&gt;
| Output || Integer || Value of 0 in Mode 0. Mode 1 sets this to -1 as default.&amp;lt;br&amp;gt; Writing a 0 (import) will export the entire container and reset Output to -1,&amp;lt;br&amp;gt; 1 (export) will export a single item stack from the container and will reset Output to -1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Data Outputs}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Output Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Power || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Error || Boolean ||&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || &lt;br /&gt;
|-&lt;br /&gt;
| RequiredPower || Integer || In watts. The Unloader require 50W to operate.&lt;br /&gt;
|-&lt;br /&gt;
| ExportCount || Integer || Incremented each time an item stack exit by the Export Slot&lt;br /&gt;
|-&lt;br /&gt;
| ImportCount || Integer || Incremented each time an item stack enter by the Import slot &lt;br /&gt;
|-&lt;br /&gt;
| Output || Integer || Value of 0 for Mode 0. Mode 1 sets this to -1(hold output)&amp;lt;br&amp;gt;  and will reset after output is written and an item is exported.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Station_Battery&amp;diff=24116</id>
		<title>Station Battery</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Station_Battery&amp;diff=24116"/>
		<updated>2025-11-21T21:01:12Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Link large version of the battery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Battery)&lt;br /&gt;
 | image       = [[File:{{#setmainimage:ItemKitBattery.png}}]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]]&lt;br /&gt;
 | cost        = 20g [[Gold Ingot|Gold]], 20g [[Copper Ingot|Copper]], 20g [[Steel Ingot|Steel]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Station Battery&lt;br /&gt;
 | image            = [[File:Kit (Battery) installed.png]]&lt;br /&gt;
 | placed_with_item = [[Kit (Battery)]]&lt;br /&gt;
 | placed_on_grid   = Small Grid&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool1 = [[Welding Torch]]&lt;br /&gt;
 | const_with_item1 = 2 x [[Steel Sheets]]&lt;br /&gt;
 | decon_with_tool1 = [[Wrench]]&lt;br /&gt;
 | item_rec1        = [[Kit (Battery)]]&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool2 = [[Screwdriver]]&lt;br /&gt;
 | decon_with_tool2 = [[Angle Grinder]]&lt;br /&gt;
 | item_rec2        = 2 x [[Steel Sheets]]&lt;br /&gt;
&lt;br /&gt;
 | decon_with_tool3 = [[Hand Drill]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Overall Station Battery Cost/Requirements &lt;br /&gt;
 | image       = [[File:Kit (Battery) installed.png]]&lt;br /&gt;
 | createdwith = [[Electronics Printer]], [[Autolathe]]&lt;br /&gt;
 | cost        = 20g [[Gold Ingot|Gold]], 20g [[Copper Ingot|Copper]], 20g [[Steel Ingot|Steel]], 4g [[Iron Ingot]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
[[Kit (Battery)]] is used to create stationary battery cells, which can provide big and stable energy storage or energy buffer for your power needs. Its energy storage is 3.6MJ or 1kWh. Any battery slowly loses stored energy. Batteries at armstrong pressure(6.3 kPa) or below drain at 50W. Batteries above armstrong pressure drain at 10W at or above 0&amp;amp;#176;C. Below 0&amp;amp;#176;C, the power loss increases linearly to 50W at 0 K and is proportional to 1 atm of pressure, to a minimum of 10 W. If the battery is in a room, the lost energy is released into the air as heat.&lt;br /&gt;
&amp;lt;!--Objects.Electrical.Battery::OnAtmosphericTick() - if AtmosphericTemperature&amp;lt;0°C, loss = Math.max(50*(1-(AtmosphericTemperature/Temperature.0°C)*Atmosphere.RatioOneAtmosphereClamped(),10) - you can minimize station battery losses in very cold rooms by keeping them between 6.3 and 20 kPa--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
As a battery&#039;s power throughput is only limited by the power demanded and supplied, it can take any amount of power and supply any amount of power. This means that it can exceed the ratings of even [[Cables|heavy cables]]. Due to their unlimited throughput,&#039;&#039;&#039; connecting a battery&#039;s output to another battery&#039;s input will act like a short circuit&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Additionally it is advised to follow these rules:&lt;br /&gt;
# &#039;&#039;&#039;Never shortcut any battery&#039;&#039;&#039; - no loops!&lt;br /&gt;
# To build a cascade of batteries (e.g. a stationary battery near solar panels and an APC at base power input), separate networks with [[transformer|transformers]]. &lt;br /&gt;
# Prefer a tree-like (or star-like) scheme of power supply over chain (cascades). It is better to have a battery on each of separate subnets (ex. production floor and gas processing floor), even if you will not use its full potential.&lt;br /&gt;
# Always separate electrical networks with power generation (solid generators, solar panels, etc.) and power consumers. Do it with batteries and APCs. Rule of a thumb: input - generators only, output - consumers only.&lt;br /&gt;
# Never connect a solid fuel generator to a battery using standard cables - only use heavy cables. A battery will make a generator produce full power - 20 000 W which is 4 times greater of that standard wire can pass through.&lt;br /&gt;
# When making major changes of a power network (especially a very spread one), always take out batteries from APCs or just cut the cables connecting the batteries with that network (input and output) - it can save a lot of cables from burning.&lt;br /&gt;
&lt;br /&gt;
{{Data Network Header}}&lt;br /&gt;
&lt;br /&gt;
=== Mode Values ===&lt;br /&gt;
This shows the values of the &amp;quot;Mode&amp;quot; property, mapped to what the display will show.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Value !! Display&lt;br /&gt;
|-&lt;br /&gt;
| 0 || no blocks&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 1 block, red, blinking&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 1 block, red&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 2 blocks, orange&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 3 blocks, yellow&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 4 blocks, green&lt;br /&gt;
|-&lt;br /&gt;
| 6 || 5 blocks, blue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Data Parameters}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Integer || Expects values 0-6. Setting this, will let the charge display of the Battery show the according charge value for about a second. Afterwards it will switch back to showing the actual charge value. This influences the &amp;quot;Mode&amp;quot; output as well. (See [[#Mode_Values|Mode Values]].)&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || Locks the Battery, when set to 1. Unlocks it, when set to 0.&lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || Turns the Battery on, when set to 1. Turns it off, when set to 0.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Data Outputs}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Output Name !! Data Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| Mode || Integer || Returns the current charge display value as a value in the range 0-6. (See [[#Mode_Values|Mode Values]].)&lt;br /&gt;
|-&lt;br /&gt;
| Error || Boolean || Returns whether the Battery is flashing an error. (0 for no, 1 for yes)&lt;br /&gt;
|-&lt;br /&gt;
| Lock || Boolean || Returns whether the Battery is locked. (0 for no, 1 for yes)&lt;br /&gt;
|-&lt;br /&gt;
| Charge || Integer || Returns the current charge of the Battery in watt*tic.&lt;br /&gt;
|-&lt;br /&gt;
| Maximum || Integer || Returns the maximum charge of the Battery in watt*tic.&lt;br /&gt;
|-&lt;br /&gt;
| Ratio || Float ||  Returns a range from 0.0 to 1.0. Returns the current charge percentage of the battery.&lt;br /&gt;
|-&lt;br /&gt;
| PowerPotential || Integer || Returns the current power potential at the input of the Battery in watts.&lt;br /&gt;
|-&lt;br /&gt;
| PowerActual || Integer || Returns the amount of power, currently being output by the Battery in watts.&lt;br /&gt;
|-&lt;br /&gt;
| On || Boolean || Returns whether the Battery is currently on. (0 for no, 1 for yes)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Bugs ==&lt;br /&gt;
*  The Data Network properties are accessible from all cable connectors.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Station Battery (Large)]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Station_Battery_(Large)&amp;diff=24115</id>
		<title>Station Battery (Large)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Station_Battery_(Large)&amp;diff=24115"/>
		<updated>2025-11-21T20:57:17Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Match current ingame name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Battery Large)&lt;br /&gt;
 | image       = [[File:{{#setmainimage:ItemKitBattery.png}}]]&lt;br /&gt;
 | createdwith = [[Electronics Printer (Tier Two)]] &lt;br /&gt;
 | cost        = 35g [[Gold Ingot|Gold]], 35g [[Copper Ingot|Copper]], 35g [[Steel Ingot|Steel]], 10g [[Electrum]], 5g [[Silicon Ingot|Silicon]], 2g [[Stellite]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Station Battery (Large)&lt;br /&gt;
 | image            = [[File:Kit (Large Battery) installed.png]]&lt;br /&gt;
 | placed_with_item = [[Kit (Battery Large)]]&lt;br /&gt;
 | placed_on_grid   = Small Grid&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool1 = [[Welding Torch]]&lt;br /&gt;
 | const_with_item1 = 4x [[Steel Sheets]]&lt;br /&gt;
 | decon_with_tool1 = [[Wrench]]&lt;br /&gt;
 | item_rec1        = [[Kit (Battery Large)]]&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool2 = [[Screwdriver]]&lt;br /&gt;
 | const_with_item2 = 2x [[Electronic Parts]]&lt;br /&gt;
 | item_rec1        = 4x [[Steel Sheets]]&lt;br /&gt;
}}&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Overall Station Battery(Large) Cost/Requirements [[File:Kit (Large Battery) installed.png|thumb|Front]]&lt;br /&gt;
 | createdwith = [[Electronics Printer (Tier Two)]], [[Autolathe]]&lt;br /&gt;
 | cost        = 39g [[Gold Ingot|Gold]], 41g [[Copper Ingot|Copper]], 35g [[Steel Ingot|Steel]], 10g [[Electrum]], 5g [[Silicon Ingot|Silicon]], 2g [[Stellite]], 6g [[Iron]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The &#039;&#039;&#039;Kit (Battery Large)&#039;&#039;&#039; is used to create stationary battery cells, which can provide big and stable energy storage or energy buffer for your power needs. Its energy storage is 9000001 J or 2.5 kWh. Any battery loses stored power, if is in a cold atmosphere.&lt;br /&gt;
&lt;br /&gt;
see [[Station Battery]] for more info&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Stationary_Battery_Large&amp;diff=24114</id>
		<title>Stationary Battery Large</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Stationary_Battery_Large&amp;diff=24114"/>
		<updated>2025-11-21T20:52:47Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Xerkus moved page Stationary Battery Large to Station Battery (Large): Move page to match ingame name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Station Battery (Large)]]&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
	<entry>
		<id>https://stationeers-wiki.com/index.php?title=Station_Battery_(Large)&amp;diff=24113</id>
		<title>Station Battery (Large)</title>
		<link rel="alternate" type="text/html" href="https://stationeers-wiki.com/index.php?title=Station_Battery_(Large)&amp;diff=24113"/>
		<updated>2025-11-21T20:52:46Z</updated>

		<summary type="html">&lt;p&gt;Xerkus: Xerkus moved page Stationary Battery Large to Station Battery (Large): Move page to match ingame name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Kit (Battery Large)&lt;br /&gt;
 | image       = [[File:{{#setmainimage:ItemKitBattery.png}}]]&lt;br /&gt;
 | createdwith = [[Electronics Printer (Tier Two)]] &lt;br /&gt;
 | cost        = 35g [[Gold Ingot|Gold]], 35g [[Copper Ingot|Copper]], 35g [[Steel Ingot|Steel]], 10g [[Electrum]], 5g [[Silicon Ingot|Silicon]], 2g [[Stellite]]&lt;br /&gt;
}}&lt;br /&gt;
{{Structurebox&lt;br /&gt;
 | name             = Stationary Battery (Large)&lt;br /&gt;
 | image            = [[File:Kit (Large Battery) installed.png]]&lt;br /&gt;
 | placed_with_item = [[Kit (Battery Large)]]&lt;br /&gt;
 | placed_on_grid   = Small Grid&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool1 = [[Welding Torch]]&lt;br /&gt;
 | const_with_item1 = 4x [[Steel Sheets]]&lt;br /&gt;
 | decon_with_tool1 = [[Wrench]]&lt;br /&gt;
 | item_rec1        = [[Kit (Battery Large)]]&lt;br /&gt;
&lt;br /&gt;
 | const_with_tool2 = [[Screwdriver]]&lt;br /&gt;
 | const_with_item2 = 2x [[Electronic Parts]]&lt;br /&gt;
 | item_rec1        = 4x [[Steel Sheets]]&lt;br /&gt;
}}&lt;br /&gt;
{{Itembox&lt;br /&gt;
 | name        = Overall Station Battery(Large) Cost/Requirements [[File:Kit (Large Battery) installed.png|thumb|Front]]&lt;br /&gt;
 | createdwith = [[Electronics Printer (Tier Two)]], [[Autolathe]]&lt;br /&gt;
 | cost        = 39g [[Gold Ingot|Gold]], 41g [[Copper Ingot|Copper]], 35g [[Steel Ingot|Steel]], 10g [[Electrum]], 5g [[Silicon Ingot|Silicon]], 2g [[Stellite]], 6g [[Iron]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
The &#039;&#039;&#039;Kit (Battery Large)&#039;&#039;&#039; is used to create stationary battery cells, which can provide big and stable energy storage or energy buffer for your power needs. Its energy storage is 9000001 J or 2.5 kWh. Any battery loses stored power, if is in a cold atmosphere.&lt;br /&gt;
&lt;br /&gt;
see [[Stationary Battery]] for more infos&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Xerkus</name></author>
	</entry>
</feed>