15 lines
233 B
C++
15 lines
233 B
C++
|
|
||
|
#include "sink.hpp"
|
||
|
|
||
|
using namespace sim::coolant;
|
||
|
|
||
|
sink::sink(fluid_t type, double heat, double pressure, double steam_density) :
|
||
|
heat(heat),
|
||
|
pressure(pressure),
|
||
|
steam_density(steam_density),
|
||
|
fluid_holder(type, 1, 1)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|