Makes the efficiency of the TEG be dependant on how much gas is actively combusting in the hot pipe

This commit is contained in:
deathride58
2019-02-27 02:58:59 -05:00
parent 22e3145901
commit 2a0c4ed526
+1 -1
View File
@@ -65,7 +65,7 @@
if(delta_temperature > 0 && cold_air_heat_capacity > 0 && hot_air_heat_capacity > 0)
var/efficiency = 0.45
var/efficiency = 0.00025 + (hot_air.reaction_results["fire"]*0.01)
var/energy_transfer = delta_temperature*hot_air_heat_capacity*cold_air_heat_capacity/(hot_air_heat_capacity+cold_air_heat_capacity)