Page 1 of 1

Target temperature for heat energy source

Posted: Tue Jul 24, 2018 1:47 pm
by CyberWizard2261
I'd like to see more entities using heat energy source (not only boilers), but most heat processes require a temperature much above 15C to work in real life
I'm planning to produce hydrogen via pyrolysis at 800C, and I'm quite sure other modders will think in creative ways to use heat too

I'd really like to see this feature in the near future. Cheers

Re: Target temperature for heat energy source

Posted: Tue Jul 24, 2018 2:43 pm
by mrvn
So like the cooling liquid and cooling towers in Angels mods. Except you use the energy taken from the hot cooling liquid to do something. Might be cool to combine the two so they use the same heat medium. Store the heat from smelters for use in hydrogen production.

Re: Target temperature for heat energy source

Posted: Tue Jul 24, 2018 4:37 pm
by CyberWizard2261
The way it is now furnaces and assembling machines can work using heat energy source just like heat exchangers

I made a heat-furnace but it starts working as soon as the temperature rises above 15C and this far from realistic

With a target temperature in the energy source, we can make realistic processes using an energy source now used only by heat exchangers

I think it's a waste make an energy source and use it in a single entity type

Re: Target temperature for heat energy source

Posted: Tue Jul 24, 2018 8:05 pm
by Klonan
Well looking at it, seems you are probably right we should make it moddable:

Code: Select all

  bool hasEnergyPotentially() const override
  {
    return this->heat.temperature > 15; // Oh my 15 is the default temperature, we should put it somewhere
  }

Re: Target temperature for heat energy source

Posted: Wed Jul 25, 2018 12:38 pm
by CyberWizard2261
Thanks, Klonan
I just can't wait to make heat-factories

Re: Target temperature for heat energy source

Posted: Thu Aug 30, 2018 8:40 pm
by Bilka
I added "min_working_temperature" and "default_temperature" to the heat energy source prototype for 0.17.

Re: Target temperature for heat energy source

Posted: Fri Aug 31, 2018 6:10 am
by eradicator
Bilka wrote:I added "min_working_temperature" and "default_temperature" to the heat energy source prototype for 0.17.
How difficult/expensive would max_working_temperature be? I know it's difficult to control that in vanilla, but it might still make for some intereresting modding opportunities. (I.e. requiring some sort of "overheat valve" when an oven gets too hot. Though... some sort of circuit connection to read the heat would be needed for that and is currently only possible with on_tick.)