Adding initial Project to git
This commit is contained in:
22
Program.cs
Normal file
22
Program.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}*/
|
||||
Reference in New Issue
Block a user