压缩机PTC 功能

参数控制,由跟随速度到单个大参数控制
This commit is contained in:
2025-08-14 17:28:15 +08:00
parent c4be5e0929
commit 06ac590208
16 changed files with 3545 additions and 862 deletions

View File

@@ -1,4 +1,5 @@
using FreeSql.DataAnnotations;
using CapMachine.Model.MeterConfig;
using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Diagnostics.Metrics;
@@ -117,22 +118,47 @@ namespace CapMachine.Model
/// OS2温度/吸气混合器温度
/// </summary>
public List<MeterOS2Temp>? MeterOS2Temps { get; set; } = new List<MeterOS2Temp>();
/// <summary>
/// PTC入口水温
/// 给冷水机组
/// </summary>
public List<MeterPTCEntTemp>? MeterPTCEntTemps { get; set; } = new List<MeterPTCEntTemp>();
/// <summary>
/// PTC流量
/// 给冷水机组
/// </summary>
public List<MeterPTCFlow>? MeterPTCFlows { get; set; } = new List<MeterPTCFlow>();
/// <summary>
/// PTC功率
/// PTC功率SV1
/// 给压缩机PTC使用
/// </summary>
public List<MeterPTCPw>? MeterPTCPws { get; set; } = new List<MeterPTCPw>();
/// <summary>
/// PTC功率SV2
/// 给压缩机PTC使用
/// </summary>
public List<MeterPTCPw2>? MeterPTCPw2s { get; set; } = new List<MeterPTCPw2>();
/// <summary>
/// PTC目标水温
/// 给压缩机PTC使用
/// </summary>
public List<MeterPTCWaterTemp>? MeterPTCWaterTemps { get; set; } = new List<MeterPTCWaterTemp>();
/// <summary>
/// PTC水流量
/// 给压缩机PTC使用
/// </summary>
public List<MeterPTCWaterFlow>? MeterPTCWaterFlows { get; set; } = new List<MeterPTCWaterFlow>();
/// <summary>
/// 试验箱湿度
/// </summary>
public List<MeterEnvRH>? MeterEnvRHs { get; set; } = new List<MeterEnvRH>();
/// <summary>
/// 试验箱温度
/// </summary>