Files
BWRSimlator/Program.cs

23 lines
486 B
C#

/*using System;
using System.Collections.Generic;
using BWR_simulator;
namespace BWR_siumulator
{
public class Program
{
public static void Main(string[] args)
{
PressureVessel p1 = new();
for(int i = 0; i < 10; i++)
{
Console.WriteLine($"Fluid Temp: {Math.Round(p1.FluidTemp - 273, 1)}");
p1.Step(0.01);
System.Threading.Thread.Sleep(50);
}
}
}
}*/