Files
BWRSimlator/Other.cs

27 lines
636 B
C#

using System;
namespace BWR_simulator
{
class PlantMngr
{
// simulation step all plant components
public void StepAll()
{
}
public void DisplayStats()
{
}
}
public static class Constants
{
public const double WATER_MOLAR_MASS = 0.018015; // kg/mol
public const double IDEAL_GAS_CONSTANT = 9425;
public const double WATER_LATENT_HEAT = 406500; // j*kg/k
public const double WATER_BOILING_POINT_NORM = 373; // temp in K the fluid boils at, under 1 atm
public const double WATER_HEAT_CAPACITY = 4182; // J/kg*K
}
}