Adding initial Project to git

This commit is contained in:
2025-12-29 19:58:26 +00:00
parent 15f9dce88c
commit b54c9bbb1c
24 changed files with 1396 additions and 0 deletions

27
Other.cs Normal file
View File

@@ -0,0 +1,27 @@
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
}
}