增加 制热量Qh 等6个值到记录中

This commit is contained in:
2026-03-25 22:05:37 +08:00
parent 13f7507f91
commit 6876872145
5 changed files with 68 additions and 0 deletions

View File

@@ -33,6 +33,8 @@ namespace CapMachine.Wpf.Services
public MachineRtDataService MachineRtDataService { get; }
public IDialogService DialogService { get; }
private readonly PPCSuperheatSubcoolCalculator _superheatSubcoolCalculator;
private readonly PPCThermodynamicSixResultsCalculator _thermodynamicSixResultsCalculator;
/// <summary>
/// 标签中心
@@ -114,6 +116,9 @@ namespace CapMachine.Wpf.Services
SuperHeatCoolConfig.FluidsPath = ConfigHelper.GetValue("FluidsPath");
SuperHeatCoolConfig.Cryogen = ConfigHelper.GetValue("Cryogen");
_superheatSubcoolCalculator = new PPCSuperheatSubcoolCalculator();
_thermodynamicSixResultsCalculator = new PPCThermodynamicSixResultsCalculator();
RtScanDeviceStart();
}