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

22
Program.cs Normal file
View File

@@ -0,0 +1,22 @@
/*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);
}
}
}
}*/