Split simulation models

This commit is contained in:
2026-05-10 18:03:46 +02:00
parent a0b10423ac
commit 1aa9734e08
40 changed files with 616 additions and 558 deletions

View File

@@ -0,0 +1,11 @@
namespace ReactorMaintenance.Simulation;
public sealed record UndergroundCell
{
public EUndergroundState State { get; init; }
public float Amount { get; init; }
public float Intensity { get; init; }
public bool IsPresent => State != EUndergroundState.Absent;
public bool CarriesFlow => State is EUndergroundState.Intact or EUndergroundState.Leaking;
}