更改了变量名称

This commit is contained in:
2025-07-08 15:33:05 +08:00
parent 4e215eec8f
commit 7a365534a5
11 changed files with 236 additions and 230 deletions

View File

@@ -56,21 +56,21 @@ namespace CapMachine.Wpf.Models
public double InhTemp { get; set; }
/// <summary>
/// COND1温度[℃]
/// COND1温度[℃] COND循环水温
/// </summary>
[Name("COND1温度[℃]")]
[Name("COND循环水温[℃]")]
public double Cond1Temp { get; set; }
/// <summary>
/// 润滑油压力[BarA]
/// 润滑油压力[BarA] SUBCOOL出口温度
/// </summary>
[Name("润滑油压力[BarA]")]
[Name("SUBCOOL出口温度[℃]")]
public double LubePress { get; set; }
/// <summary>
/// COND2压力[BarA]
/// COND2压力[BarA] 吸气混合器出口温度
/// </summary>
[Name("COND2压力[BarA]")]
[Name("吸气混合器出口温度[℃]")]
public double Cond2Press { get; set; }
/// <summary>
@@ -128,15 +128,15 @@ namespace CapMachine.Wpf.Models
public double OS1Temp { get; set; }
/// <summary>
/// OS2温度[℃]
/// OS2温度[℃] H1出口温度
/// </summary>
[Name("OS2温度[℃]")]
[Name("H1出口温度[℃]")]
public double OS2Temp { get; set; }
/// <summary>
/// COND2温度[℃]
/// COND2温度[℃] H5吸气混合器温度
/// </summary>
[Name("COND2温度[℃]")]
[Name("H5吸气混合器温度[℃]")]
public double Cond2Temp { get; set; }
/// <summary>

View File

@@ -22,9 +22,9 @@ namespace CapMachine.Wpf.Models
Map(m => m.ExPress).Name("排气压力[BarA]");
Map(m => m.InhPress).Name("吸气压力[BarA]");
Map(m => m.InhTemp).Name("吸气温度[℃]");
Map(m => m.Cond1Temp).Name("COND1温度[℃]");
Map(m => m.LubePress).Name("润滑油压力[BarA]");
Map(m => m.Cond2Press).Name("COND2压力[BarA]");
Map(m => m.Cond1Temp).Name("COND循环水温[℃]");
Map(m => m.LubePress).Name("SUBCOOL出口温度[℃]");
Map(m => m.Cond2Press).Name("吸气混合器出口温度[℃]");
Map(m => m.OCR).Name("OCR[%]");
Map(m => m.HV).Name("HV[V]");
Map(m => m.HVCur).Name("HV[A]");
@@ -34,8 +34,8 @@ namespace CapMachine.Wpf.Models
Map(m => m.EnvTemp).Name("环境温度[℃]");
Map(m => m.EnvRH).Name("环境湿度[%]");
Map(m => m.OS1Temp).Name("OS1温度[℃]");
Map(m => m.OS2Temp).Name("OS2温度[℃]");
Map(m => m.Cond2Temp).Name("COND2温度[℃]");
Map(m => m.OS2Temp).Name("H1出口温度[℃]");
Map(m => m.Cond2Temp).Name("H5吸气混合器温度[℃]");
Map(m => m.EVAPExpTemp).Name("EVAP出口温度[℃]");
Map(m => m.VRV).Name("冷媒流量[L/min]");
Map(m => m.LubeFlow).Name("润滑油流量[L/min]");

View File

@@ -209,11 +209,11 @@ namespace CapMachine.Wpf.Models.LightChart
return CurHistoryData.Select(a => new ChartPoint() { Value = a.InhPress, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "吸气温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.InhTemp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "COND1温度[℃]":
case "COND循环水温[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.Cond1Temp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "润滑油压力[BarA]":
case "SUBCOOL出口温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.LubePress, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "COND2压力[BarA]":
case "吸气混合器出口温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.Cond2Press, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "OCR[%]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.OCR, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
@@ -233,9 +233,9 @@ namespace CapMachine.Wpf.Models.LightChart
return CurHistoryData.Select(a => new ChartPoint() { Value = a.EnvRH, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "OS1温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.OS1Temp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "OS2温度[℃]":
case "H1出口温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.OS2Temp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "COND2温度[℃]":
case "H5吸气混合器温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.Cond2Temp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();
case "EVAP出口温度[℃]":
return CurHistoryData.Select(a => new ChartPoint() { Value = a.EVAPExpTemp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList();