fast-nuclear-sim/src/coolant/sink.cpp

15 lines
233 B
C++
Raw Normal View History

#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)
{
}