/obj/machinery/power/generator name = "thermoelectric generator" desc = "It's a high efficiency thermoelectric generator." icon_state = "teg" anchored = TRUE density = TRUE use_power = NO_POWER_USE var/obj/machinery/atmospherics/components/binary/circulator/cold_circ var/obj/machinery/atmospherics/components/binary/circulator/hot_circ //note: these currently only support EAST and WEST var/cold_dir = WEST var/hot_dir = EAST var/lastgen = 0 var/lastgenlev = -1 var/lastcirc = "00" /obj/machinery/power/generator/Initialize(mapload) . = ..() var/obj/machinery/atmospherics/components/binary/circulator/circpath = /obj/machinery/atmospherics/components/binary/circulator cold_circ = locate(circpath) in get_step(src, cold_dir) hot_circ = locate(circpath) in get_step(src, hot_dir) connect_to_network() SSair.atmos_machinery += src if(cold_circ) switch(cold_dir) if(EAST) cold_circ.side = circpath.CIRC_RIGHT if(WEST) cold_circ.side = circpath.CIRC_LEFT cold_circ.update_icon() if(hot_circ) switch(hot_dir) if(EAST) hot_circ.side = circpath.CIRC_RIGHT if(WEST) hot_circ.side = circpath.CIRC_LEFT hot_circ.update_icon() if(!cold_circ || !hot_circ) stat |= BROKEN update_icon() /obj/machinery/power/generator/Destroy() SSair.atmos_machinery -= src return ..() /obj/machinery/power/generator/update_icon() if(stat & (NOPOWER|BROKEN)) cut_overlays() else cut_overlays() var/L = min(round(lastgenlev/100000),11) if(L != 0) add_overlay(image('icons/obj/power.dmi', "teg-op[L]")) add_overlay("teg-oc[lastcirc]") #define GENRATE 800 // generator output coefficient from Q /obj/machinery/power/generator/process_atmos() if(!cold_circ || !hot_circ) return if(powernet) var/datum/gas_mixture/cold_air = cold_circ.return_transfer_air() var/datum/gas_mixture/hot_air = hot_circ.return_transfer_air() if(cold_air && hot_air) var/cold_air_heat_capacity = cold_air.heat_capacity() var/hot_air_heat_capacity = hot_air.heat_capacity() var/delta_temperature = hot_air.temperature - cold_air.temperature if(delta_temperature > 0 && cold_air_heat_capacity > 0 && hot_air_heat_capacity > 0) var/efficiency = 0.65 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 += energy_transfer*efficiency hot_air.temperature = hot_air.temperature - energy_transfer/hot_air_heat_capacity cold_air.temperature = cold_air.temperature + heat/cold_air_heat_capacity //add_avail(lastgen) This is done in process now // update icon overlays only if displayed level has changed if(hot_air) var/datum/gas_mixture/hot_circ_air1 = hot_circ.airs[1] hot_circ_air1.merge(hot_air) if(cold_air) var/datum/gas_mixture/cold_circ_air1 = cold_circ.airs[1] cold_circ_air1.merge(cold_air) update_icon() var/circ = "[cold_circ && cold_circ.last_pressure_delta > 0 ? "1" : "0"][hot_circ && hot_circ.last_pressure_delta > 0 ? "1" : "0"]" if(circ != lastcirc) lastcirc = circ update_icon() src.updateDialog() /obj/machinery/power/generator/process() //Setting this number higher just makes the change in power output slower, it doesnt actualy reduce power output cause **math** var/power_output = round(lastgen / 10) add_avail(power_output) lastgenlev = power_output lastgen -= power_output ..() /obj/machinery/power/generator/proc/get_menu(include_link = 1) var/t = "" if(!powernet) t += "Unable to connect to the power network!" else if(cold_circ && hot_circ) var/datum/gas_mixture/cold_circ_air1 = cold_circ.airs[1] var/datum/gas_mixture/cold_circ_air2 = cold_circ.airs[2] var/datum/gas_mixture/hot_circ_air1 = hot_circ.airs[1] var/datum/gas_mixture/hot_circ_air2 = hot_circ.airs[2] t += "