Merge pull request #14351 from Putnam3145/teg-uncap

Uncaps TEG output
This commit is contained in:
silicons
2021-03-09 00:17:47 -07:00
committed by GitHub
+4 -1
View File
@@ -66,7 +66,10 @@
var/energy_transfer = delta_temperature*hot_air_heat_capacity*cold_air_heat_capacity/(hot_air_heat_capacity+cold_air_heat_capacity)
var/heat = energy_transfer*(1-efficiency)
lastgen += LOGISTIC_FUNCTION(500000,0.0009,delta_temperature,10000)
if(delta_temperature < 16800) // second point where derivative of below function = 1
lastgen += LOGISTIC_FUNCTION(500000,0.0009,delta_temperature,10000)
else
lastgen += delta_temperature + 482102 // value of above function at 16800, or very nearly so
hot_air.set_temperature(hot_air.return_temperature() - energy_transfer/hot_air_heat_capacity)
cold_air.set_temperature(cold_air.return_temperature() + heat/cold_air_heat_capacity)