diff --git a/CapMachine.Core/ConfigHelper.cs b/CapMachine.Core/ConfigHelper.cs index a361eaa..7ac66ed 100644 --- a/CapMachine.Core/ConfigHelper.cs +++ b/CapMachine.Core/ConfigHelper.cs @@ -16,7 +16,8 @@ namespace CapMachine.Core /// public static string GetValue(string key) { - return ConfigurationManager.AppSettings[key].ToString().Trim(); + var value = ConfigurationManager.AppSettings[key]; + return (value ?? string.Empty).Trim(); } /// @@ -31,7 +32,14 @@ namespace CapMachine.Core //cfa.Save(); Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); - configuration.AppSettings.Settings[key].Value = value; + if (configuration.AppSettings.Settings[key] == null) + { + configuration.AppSettings.Settings.Add(key, value); + } + else + { + configuration.AppSettings.Settings[key].Value = value; + } configuration.Save(); ConfigurationManager.RefreshSection("appSettings"); } diff --git a/CapMachine.Wpf/Models/CsvRecordModel.cs b/CapMachine.Wpf/Models/CsvRecordModel.cs index 47b628a..468a1a9 100644 --- a/CapMachine.Wpf/Models/CsvRecordModel.cs +++ b/CapMachine.Wpf/Models/CsvRecordModel.cs @@ -145,6 +145,13 @@ namespace CapMachine.Wpf.Models [Name("EVAP出口温度[℃]")] public double EVAPExpTemp { get; set; } + + /// + /// 吸气电加热温度[℃] + /// + [Name("吸气电加热温度[℃]")] + public double InhEleHeatTemp { get; set; } + /// /// 冷媒流量[kg/h] /// @@ -175,6 +182,30 @@ namespace CapMachine.Wpf.Models [Name("膨胀阀前温度[℃]")] public double TxvFrTemp { get; set; } + [Name("过冷度[K]")] + public double Subcooling { get; set; } + + [Name("过热度[K]")] + public double Superheat { get; set; } + + [Name("制热量Qh[W]")] + public double HeatingCapacity { get; set; } + + [Name("压缩机性能系数(制热COP)")] + public double COPHeat { get; set; } + + [Name("等熵效率ns[%]")] + public double IsentrpEff { get; set; } + + [Name("制冷量Qc[W]")] + public double CoolCapacity { get; set; } + + [Name("压缩机性能系数(制冷COP)")] + public double COPCool { get; set; } + + [Name("容积效率nv[%]")] + public double VoltricEff { get; set; } + /// /// EVAP出口压力[BarA] /// @@ -182,9 +213,9 @@ namespace CapMachine.Wpf.Models public double EVAPExpPress { get; set; } /// - /// 腔内压力[BarA] + /// 背压压力[BarA] /// - [Name("腔内压力[BarA]")] + [Name("背压压力[BarA]")] public double IntrplPress { get; set; } /// diff --git a/CapMachine.Wpf/Models/CsvRecordModelMap.cs b/CapMachine.Wpf/Models/CsvRecordModelMap.cs index c0b4e68..fbc1e3f 100644 --- a/CapMachine.Wpf/Models/CsvRecordModelMap.cs +++ b/CapMachine.Wpf/Models/CsvRecordModelMap.cs @@ -37,13 +37,22 @@ namespace CapMachine.Wpf.Models Map(m => m.OS2Temp).Name("OS2温度[℃]"); Map(m => m.Cond2Temp).Name("COND2温度[℃]"); Map(m => m.EVAPExpTemp).Name("EVAP出口温度[℃]"); + Map(m => m.InhEleHeatTemp).Name("吸气电加热温度[℃]"); Map(m => m.VRV).Name("冷媒流量[kg/h]"); Map(m => m.LubeFlow).Name("润滑油流量[kg/h]"); Map(m => m.ExTemp).Name("排气温度[℃]"); Map(m => m.TxvFrPress).Name("膨胀阀前压力[BarA]"); Map(m => m.TxvFrTemp).Name("膨胀阀前温度[℃]"); + Map(m => m.Subcooling).Name("过冷度[K]").TypeConverterOption.Format("0.00"); + Map(m => m.Superheat).Name("过热度[K]").TypeConverterOption.Format("0.00"); + Map(m => m.HeatingCapacity).Name("制热量Qh[W]").TypeConverterOption.Format("0.00"); + Map(m => m.COPHeat).Name("压缩机性能系数(制热COP)").TypeConverterOption.Format("0.00"); + Map(m => m.IsentrpEff).Name("等熵效率ns[%]").TypeConverterOption.Format("0.00"); + Map(m => m.CoolCapacity).Name("制冷量Qc[W]").TypeConverterOption.Format("0.00"); + Map(m => m.COPCool).Name("压缩机性能系数(制冷COP)").TypeConverterOption.Format("0.00"); + Map(m => m.VoltricEff).Name("容积效率nv[%]").TypeConverterOption.Format("0.00"); Map(m => m.EVAPExpPress).Name("EVAP出口压力[BarA]"); - Map(m => m.IntrplPress).Name("腔内压力[BarA]"); + Map(m => m.IntrplPress).Name("背压压力[BarA]"); Map(m => m.CapSurfTemp).Name("压缩机表面温度[℃]"); Map(m => m.PTCFlow).Name("PTC流量[L/min]"); Map(m => m.PTCEntTemp).Name("PTC入水温度[℃]"); diff --git a/CapMachine.Wpf/Models/LightChart/ChartManager.cs b/CapMachine.Wpf/Models/LightChart/ChartManager.cs index e5240a9..4d5ee62 100644 --- a/CapMachine.Wpf/Models/LightChart/ChartManager.cs +++ b/CapMachine.Wpf/Models/LightChart/ChartManager.cs @@ -239,6 +239,8 @@ namespace CapMachine.Wpf.Models.LightChart 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(); + case "吸气电加热温度[℃]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.InhEleHeatTemp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); case "冷媒流量[kg/h]": return CurHistoryData.Select(a => new ChartPoint() { Value = a.VRV, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); case "润滑油流量[kg/h]": @@ -249,9 +251,31 @@ namespace CapMachine.Wpf.Models.LightChart return CurHistoryData.Select(a => new ChartPoint() { Value = a.TxvFrPress, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); case "膨胀阀前温度[℃]": return CurHistoryData.Select(a => new ChartPoint() { Value = a.TxvFrTemp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "过冷度[K]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.Subcooling, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "过热度[K]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.Superheat, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "制热量Qh[W]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.HeatingCapacity, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "制热量Qh[KW]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.HeatingCapacity / 1000.0, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "压缩机性能系数(制热COP)": + case "压缩机性能系数(制热)[K]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.COPHeat, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "等熵效率ns[%]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.IsentrpEff, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "制冷量Qc[W]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.CoolCapacity, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "制冷量Qc[KW]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.CoolCapacity / 1000.0, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "压缩机性能系数(制冷COP)": + case "压缩机性能系数(制冷)[K]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.COPCool, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); + case "容积效率nv[%]": + return CurHistoryData.Select(a => new ChartPoint() { Value = a.VoltricEff, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); case "EVAP出口压力[BarA]": return CurHistoryData.Select(a => new ChartPoint() { Value = a.EVAPExpPress, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); - case "腔内压力[BarA]": + case "背压压力[BarA]": return CurHistoryData.Select(a => new ChartPoint() { Value = a.IntrplPress, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); case "压缩机表面温度[℃]": return CurHistoryData.Select(a => new ChartPoint() { Value = a.CapSurfTemp, Time = a.CreateTime }).OrderBy(a => a.Time).ToList(); diff --git a/CapMachine.Wpf/Models/Tag/TagManager.cs b/CapMachine.Wpf/Models/Tag/TagManager.cs index f263ebe..ac61db1 100644 --- a/CapMachine.Wpf/Models/Tag/TagManager.cs +++ b/CapMachine.Wpf/Models/Tag/TagManager.cs @@ -65,6 +65,26 @@ return default; } + /// + /// 获取用于数据记录的 PV 工程值。 + /// + /// 标签名称(即 的 key)。 + /// 若存在标签则返回其 ,否则返回 0。 + public double TryGetRecordPVValue(string tagName) + { + if (string.IsNullOrWhiteSpace(tagName)) + { + return 0; + } + + if (DicTags.TryGetValue(tagName, out var tag) && tag != null) + { + return tag.EngPvValue; + } + + return 0; + } + /// /// 获取标签的值信息 /// diff --git a/CapMachine.Wpf/PPCalculation/EnthalpyDrynessCalculator.cs b/CapMachine.Wpf/PPCalculation/EnthalpyDrynessCalculator.cs index ae1d9b2..48d7aec 100644 --- a/CapMachine.Wpf/PPCalculation/EnthalpyDrynessCalculator.cs +++ b/CapMachine.Wpf/PPCalculation/EnthalpyDrynessCalculator.cs @@ -603,7 +603,7 @@ namespace CapMachine.Wpf.PPCalculation return true; } - private static bool TryGetMolarMassKgPerMol(long componentId, out double molarMassKgPerMol, out string error) + private bool TryGetMolarMassKgPerMol(long componentId, out double molarMassKgPerMol, out string error) { molarMassKgPerMol = double.NaN; error = string.Empty; @@ -620,7 +620,11 @@ namespace CapMachine.Wpf.PPCalculation double acf = 0; double dip = 0; double Rgas = 0; - IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + + lock (_refpropLock) + { + IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + } molarMassKgPerMol = wmm * 0.001; if (molarMassKgPerMol <= 0) { diff --git a/CapMachine.Wpf/ReportFile/2026-05-07.csv b/CapMachine.Wpf/ReportFile/2026-05-07.csv new file mode 100644 index 0000000..3722859 --- /dev/null +++ b/CapMachine.Wpf/ReportFile/2026-05-07.csv @@ -0,0 +1,554 @@ +日期,时间,工况,转速[rpm],排气压力[BarA],吸气压力[BarA],吸气温度[℃],COND1温度[℃],润滑油压力[BarA],COND2压力[BarA],OCR[%],HV[V],HV[A],HV[W],LV[V],LV[A],环境温度[℃],环境湿度[%],OS1温度[℃],OS2温度[℃],COND2温度[℃],EVAP出口温度[℃],吸气电加热温度[℃],冷媒流量[kg/h],润滑油流量[kg/h],排气温度[℃],膨胀阀前压力[BarA],膨胀阀前温度[℃],过冷度[K],过热度[K],制热量Qh[W],压缩机性能系数(制热COP),等熵效率ns[%],制冷量Qc[W],压缩机性能系数(制冷COP),容积效率nv[%],EVAP出口压力[BarA],背压压力[BarA],压缩机表面温度[℃],PTC流量[L/min],PTC入水温度[℃],PTC出水温度[℃],通讯Cmp母线电流[A],通讯Cmp母线电压[V],通讯Cmp逆变器温度[℃],通讯Cmp相电流[A],通讯Cmp功率[W],通讯Cmp芯片温度[℃],通讯PTC入水温度[℃],通讯PTC出水温度[℃],通讯PTC峰值电流[A],通讯PTC母线电流[A],通讯PTC膜温[℃],通讯PTC模块温度[℃],时间 +2026-5-7,17:40:16,智界1111,4026,24.77,3.52,12.2,38.3,10.83,7.62,67.2,594.4,6.46,3839,12,0.23,57.2,7.9,84.8,50,70,23.5,0,24.8,43.9,77,7.81,27.5,2.99,201.05,863.43,0.22,7.56,728.21,0.19,17.67,3.17,0,31.8,10.1,70.04,70.09,6.3,595,0,12.9,3760,46,70,70,0,0,0,33,2026-5-7 17:40 +2026-5-7,17:40:17,智界1111,4020,24.77,3.35,9.8,38.7,10.92,7.84,44.1,594.4,6.31,3750,12,0.23,57.2,7.9,84.7,50,70,23.3,0,57.9,42,76.9,8,27.8,3.23,6.03,1424.08,0.38,12.72,1173.13,0.31,29.89,3,0,31.8,10.11,70.06,70.09,6.08,595,0,12.62,3595,46,70,70,0,0,0,32,2026-5-7 17:40 +2026-5-7,17:40:18,智界1111,4014,24.03,3.2,8.7,39.1,10.6,7.98,30.7,594.4,6.15,3655,12,0.23,57.2,7.9,84.5,50,70,23.2,0,74.1,39.5,76.6,8.03,28,3.46,6.22,2716.94,0.74,24.31,2204.69,0.6,57.73,2.9,0,31.8,10.11,70.06,70.09,5.94,595,0,12.42,3543,44,70,70,0,0,0,32,2026-5-7 17:40 +2026-5-7,17:40:19,智界1111,4012,24.03,3.06,8.7,39.6,10.45,8,22,594.4,6.03,3584,12,0.23,57.2,7.9,84.3,50,70,23,0,135.6,33.2,76.3,7.98,28.4,2.84,7.48,4951.7,1.38,46.75,4047.75,1.13,111.02,2.67,0,31.8,10.11,70.04,70.1,5.68,595,0,12.18,3525,43,70,70,0,0,0,31,2026-5-7 17:40 +2026-5-7,17:40:20,智界1111,4024,23.47,2.91,6.4,40.2,10.5,7.93,13.2,594.4,5.97,3548,12,0.23,57.2,7.9,84,50,70,22.8,0,179,30.9,75.9,7.91,28.6,2.33,6.57,6691.02,1.89,62.9,5359.27,1.51,152.66,2.55,0,31.8,10.12,70.04,70.1,5.88,595,0,11.94,3373,42,70,70,0,0,0,31,2026-5-7 17:40 +2026-5-7,17:40:21,智界1111,4023,23.47,2.76,6.4,40.7,10.56,7.88,12,594.6,5.81,3454,12,0.23,57.2,7.9,83.7,50,70,22.7,0,211.2,28.2,75.6,7.81,29,1.49,8.02,7863.85,2.28,78.87,6345.33,1.84,190.88,2.28,0,31.8,10.12,70.05,70.09,5.54,596,0,11.8,3335,41,70,70,0,0,0,30,2026-5-7 17:40 +2026-5-7,17:40:22,智界1111,4030,22.79,2.6,4.2,41.2,10.71,7.8,11.3,594.4,5.65,3358,12,0.23,57.2,7.9,83.5,50,70,22.5,0,215.1,27.3,75.3,7.78,29.1,1.25,8.54,8249.69,2.46,84.13,6574.23,1.96,205.99,2.15,0,31.8,10.11,70.06,70.09,5.42,596,0,11.16,3228,40,70,70,0,0,0,29,2026-5-7 17:40 +2026-5-7,17:40:23,智界1111,4030,22.79,2.43,3,41.6,10.73,7.79,11.5,594.4,5.41,3215,12,0.23,57.2,7.9,83.1,50,70,22.3,0,216.2,28.2,75.1,7.79,29.3,1.1,8.04,8272.46,2.57,90.9,6514.13,2.03,220.34,1.91,0,31.8,10.11,70.06,70.08,5.26,595,0,10.66,3081,39,70,70,0,0,0,29,2026-5-7 17:40 +2026-5-7,17:40:24,智界1111,4030,21.78,2.25,1.9,42,10.72,7.8,11.5,594.6,5.24,3115,12,0.23,57.2,7.9,82.7,50,70,22.3,0,226.6,29.6,75,7.81,29.3,1.19,8.96,9070.49,2.91,100.35,7025.81,2.26,249.59,1.8,0,31.8,10.14,70.06,70.08,5,595,0,10.46,3025,38,70,70,0,0,0,28,2026-5-7 17:40 +2026-5-7,17:40:25,智界1111,4027,21.78,2.06,1.9,42,10.72,7.81,11.3,594.6,5.02,2985,12,0.23,57.2,7.9,82.3,50,70,21.8,0,246.5,31.2,74.9,7.84,29.4,1.22,11.23,9856.94,3.3,119.87,7677.06,2.57,298.61,1.56,0,31.8,10.12,70.06,70.08,4.98,595,0,9.96,2963,37,70,70,0,0,0,28,2026-5-7 17:40 +2026-5-7,17:40:26,智界1111,4026,20.7,1.88,-0.5,42.7,10.68,7.85,10,594.6,4.83,2872,12,0.23,57.2,7.9,81.9,50,70,21.6,0,262.2,30.7,74.9,7.85,29.4,1.26,11.13,10974.21,3.82,134.86,8337.28,2.9,346.38,1.51,0,31.8,10.12,70.06,70.08,4.7,595,0,9.77,2799,36,70,70,0,0,0,28,2026-5-7 17:40 +2026-5-7,17:40:27,智界1111,4022,20.7,1.7,-0.5,42.7,10.67,7.86,9.6,594.6,4.67,2777,12,0.23,57.2,7.9,81.6,50,70,21.4,0,276.6,29.4,75,7.87,29.5,1.25,13.62,11587.94,4.17,155.35,8831.51,3.18,406.77,1.47,0,31.7,10.11,70.06,70.08,4.5,595,0,9.34,2679,36,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:28,智界1111,4024,19.73,1.55,-1.6,43.3,10.53,7.88,9.4,594.6,4.53,2693,12,0.23,57.2,7.9,81.1,50,70,21.2,0,274.9,28.5,75.2,7.89,29.4,1.3,14.75,11965.52,4.44,163.01,9009.74,3.35,443.28,1.48,0,31.7,10.09,70.06,70.08,4.48,595,0,9.16,2671,36,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:29,智界1111,4032,19.73,1.44,-1.6,43.3,10.41,7.89,9.2,594.6,4.37,2598,12,0.23,57.2,7.9,80.7,50,70,21,0,277.7,28,75.5,7.9,29.4,1.49,16.5,12139.39,4.67,177.18,9123.58,3.51,483.22,1.52,0,31.7,10.07,70.04,70.08,4.02,595,0,8.62,2389,35,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:30,智界1111,4030,19,1.37,-1.3,43.7,10.2,7.9,9.1,594.6,4.17,2479,12,0.23,57.2,7.9,80.3,50,70,20.8,0,269.5,27,75.9,7.9,29.3,1.59,17.97,12379.9,4.99,186.41,9296.4,3.75,505.6,1.57,0,31.7,10.07,70.04,70.08,4.04,595,0,8.32,2406,35,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:31,智界1111,4026,19,1.32,-1.3,43.7,10.12,7.9,9.3,594.9,3.95,2349,12,0.23,57.2,7.9,79.9,50,70,20.6,0,259.6,26.7,76.4,7.9,29.2,1.69,18.83,11745.28,5,188.71,8765.86,3.73,495.56,1.62,0,31.7,10.08,70.04,70.09,3.72,596,0,7.92,2222,34,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:32,智界1111,4021,18.52,1.3,-0.6,44,10.04,7.91,9.1,594.6,3.79,2253,12,0.23,57.2,7.9,79.6,50.1,69.9,20.4,0,259.1,25.8,77,7.91,29.1,1.87,19.88,11750.53,5.22,193.65,8794.25,3.9,497.24,1.69,0,31.7,10.09,70.04,70.09,3.64,596,0,7.74,2174,34,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:33,智界1111,4007,18.52,1.3,-0.6,44,10,7.91,9,594.9,3.66,2177,12,0.23,57.2,7.9,79.2,50.1,69.9,20.2,0,257.6,25.4,77.4,7.9,28.8,2.09,19.88,11946.74,5.49,202.21,8873.38,4.08,503.48,1.78,0,31.8,10.09,70.05,70.08,3.62,596,0,7.82,2157,34,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:34,智界1111,3993,18.2,1.3,-0.1,44.3,9.8,7.89,9.1,594.6,3.63,2158,11.9,0.23,57.2,7.9,78.8,50.1,69.9,20,0,244.5,24.5,77.9,7.89,28.7,2.19,20.38,11507.74,5.33,192.76,8533.25,3.95,480.56,1.8,0,31.8,10.07,70.05,70.08,3.72,596,0,7.8,2222,33,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:35,智界1111,3994,18.2,1.33,-0.1,44.3,9.7,7.88,9.2,594.6,3.64,2164,11.9,0.23,57.2,7.9,78.4,50.1,69.9,19.8,0,234.8,23.9,78.6,7.88,28.5,2.3,19.85,11107.73,5.13,182.55,8189.75,3.78,450.56,1.83,0,31.8,10.07,70.06,70.09,3.74,596,0,7.92,2230,33,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:36,智界1111,4007,17.99,1.37,-1.1,44.6,9.62,7.87,9.2,594.9,3.69,2195,12,0.23,57.2,7.9,78.1,50.1,69.8,19.6,0,227.8,22.9,79.2,7.88,28.4,2.4,18.17,10897.04,4.96,163.49,8088.98,3.69,420.67,1.84,0,31.8,10.08,70.06,70.09,3.76,596,0,7.7,2239,33,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:37,智界1111,3999,17.92,1.41,-2,44.7,9.63,7.87,9.1,594.9,3.64,2165,12,0.23,57.2,7.9,77.7,50.1,69.8,19.4,0,228.2,22.7,80,7.89,28.3,2.54,17.49,10980.92,5.07,170.67,7945.63,3.67,409.75,1.82,0,31.8,10.08,70.05,70.08,3.8,596,0,7.6,2270,32,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:38,智界1111,3998,17.86,1.43,-2.8,44.8,9.56,7.87,9.2,594.9,3.64,2165,12,0.23,57.2,7.9,77.3,50.1,69.6,19.3,0,220.4,22.5,80.5,7.87,28.1,2.6,15.46,10897.46,5.03,165.62,7791.74,3.6,396.16,1.78,0,31.8,10.1,70.05,70.08,3.7,596,0,7.7,2203,32,70,70,0,0,0,27,2026-5-7 17:40 +2026-5-7,17:40:39,智界1111,4002,17.82,1.45,-2.8,44.8,9.49,7.86,9.4,594.6,3.65,2170,12,0.23,57.2,7.9,76.9,50.2,69.6,19.1,0,213.8,22.3,80.9,7.86,28.1,2.61,15.13,10396.84,4.79,155.55,7384.29,3.4,370.46,1.75,0,31.8,10.09,70.05,70.08,3.66,596,0,7.82,2187,32,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:40,智界1111,4002,17.82,1.46,-3.8,45.1,9.33,7.84,9.5,594.6,3.67,2182,12,0.23,57.2,7.9,76.5,50.2,69.5,19,0,207.3,21.6,81,7.82,27.9,2.63,13.97,10100.66,4.63,148.61,7119.41,3.26,354.44,1.66,0,31.8,10.09,70.05,70.08,3.7,596,0,7.72,2151,32,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:41,智界1111,4002,17.74,1.46,-3.8,45.1,9.25,7.81,9.4,594.9,3.63,2159,12,0.23,57.2,7.9,76.2,50.2,69.5,18.8,0,203.9,21.1,81,7.8,27.8,2.64,13.97,9947.8,4.61,147.6,7011.37,3.25,348.28,1.63,0,31.8,10.07,70.06,70.08,3.64,596,0,7.72,2176,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:42,智界1111,4004,17.69,1.44,-4.2,45.5,9.11,7.77,9.3,594.9,3.61,2147,12,0.23,57.2,7.9,75.8,50.2,69.3,18.7,0,187.9,19,80.9,7.76,27.7,2.65,13.9,11671.18,5.44,143.83,8805.95,4.1,341.31,1.61,0,31.8,10.07,70.06,70.08,3.54,596,0,7.62,2114,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:43,智界1111,4001,17.69,1.41,-4.2,45.5,9.05,7.75,9.3,594.9,3.56,2117,12,0.23,57.2,7.9,75.4,50.2,69.3,18.5,0,174.3,18.1,80.8,7.74,27.6,2.57,14.39,8516.6,4.02,130.48,6000.74,2.83,308.63,1.56,0,31.8,10.06,70.05,70.06,3.54,596,0,7.56,2107,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:44,智界1111,4002,17.56,1.37,-4.5,46.1,8.95,7.71,9.8,594.9,3.55,2111,11.9,0.23,57.2,7.9,75,50.2,69.1,18.5,0,159.5,17.2,80.6,7.73,27.5,2.63,14.77,7815.54,3.7,120.98,5507.39,2.61,290.6,1.53,0,31.8,10.07,70.05,70.06,3.5,596,0,7.44,2088,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:45,智界1111,4000,17.56,1.33,-4.5,46.1,8.9,7.7,9.9,594.9,3.54,2105,11.9,0.23,57.2,7.9,74.7,50.2,69.1,18.2,0,133,14.6,80.4,7.72,27.4,2.68,15.45,6508.12,3.09,102.69,4596.28,2.18,250.07,1.52,0,31.7,10.09,70.07,70.08,3.5,596,0,7.56,2083,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:46,智界1111,4003,17.41,1.3,-4.8,47.6,8.79,7.69,10.7,594.9,3.5,2082,12,0.23,57.2,7.9,74.4,50.2,69,18.1,0,115.7,13.1,80.3,7.71,27.3,2.74,15.68,5685.22,2.7,89.92,4011.9,1.91,222.32,1.51,0,31.7,10.09,70.07,70.08,3.54,596,0,7.46,2087,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:47,智界1111,4002,17.41,1.27,-4.8,48.8,8.74,7.69,11.4,594.9,3.48,2070,12,0.23,57.2,7.9,74.1,50.3,68.9,17.9,0,83.7,10.9,80.2,7.72,27.1,2.98,16.22,4110.04,1.99,66.92,2904.16,1.4,164.84,1.51,0,31.7,10.09,70.05,70.06,3.54,596,0,7.32,2115,31,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:48,智界1111,3998,17.28,1.24,-4.9,50.4,8.66,7.67,11.7,594.9,3.49,2076,12,0.23,57.2,7.9,73.8,50.3,68.8,17.8,0,74.9,10.1,80.2,7.71,27.1,2.94,16.66,3693.37,1.78,60.21,2609.38,1.26,151.31,1.51,0,31.7,10.11,70.05,70.06,3.5,596,0,7.4,1976,30,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:49,智界1111,4001,17.28,1.23,-4.9,52.4,8.62,7.66,11,594.9,3.48,2070,12,0.23,57.2,7.9,73.4,50.3,68.7,17.7,0,70.9,8.5,80.3,7.66,26.9,2.91,16.85,3498.43,1.69,57.38,2470.5,1.19,144.34,1.52,0,31.7,10.11,70.05,70.06,3.56,596,0,7.3,2089,30,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:50,智界1111,3999,17.23,1.21,-4.9,54.8,8.54,7.61,9.2,594.9,3.5,2082,12,0.23,57.2,7.9,73.2,50.3,68.6,17.5,0,68.5,7.3,80.3,7.64,26.9,2.82,17.22,3385.42,1.63,55.5,2391.6,1.15,141.92,1.52,0,31.7,10.1,70.04,70.06,3.58,596,0,7.52,2105,30,70,70,0,0,0,26,2026-5-7 17:40 +2026-5-7,17:40:51,智界1111,3999,17.22,1.2,-5,57.1,8.5,7.59,8.9,594.9,3.53,2099,11.9,0.23,57.2,7.9,73,50.3,68.5,17.4,0,61.6,5.9,80.4,7.58,26.8,2.65,17.31,3047.37,1.45,49.67,2150.37,1.02,128.67,1.5,0,31.7,10.1,70.04,70.06,3.48,596,0,7.42,2140,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:52,智界1111,4000,17.21,1.2,-5,57.1,8.45,7.55,8.4,594.9,3.54,2105,11.9,0.23,57.2,7.9,72.7,50.3,68.4,17.3,0,55.6,5,80.5,7.55,26.7,2.61,17.31,2752.37,1.31,44.7,1940.89,0.92,116.11,1.5,0,31.7,10.1,70.02,70.06,3.58,595,0,7.5,2130,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:53,智界1111,3998,17.21,1.19,-5,60.1,8.35,7.5,8.9,594.9,3.5,2082,11.9,0.23,57.2,7.9,72.5,50.4,68.2,17.2,0,51.9,5,80.6,7.52,26.6,2.57,17.5,2545.25,1.22,41.94,1795.19,0.86,108.33,1.49,0,31.7,10.1,70.02,70.06,3.54,595,0,7.48,2109,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:54,智界1111,3999,17.21,1.19,-5,60.1,8.31,7.46,8.4,594.9,3.53,2099,11.9,0.23,57.2,7.9,72.2,50.4,68.2,17.1,0,53.7,4.9,80.7,7.45,26.5,2.35,17.5,2662.64,1.27,43.47,1875.47,0.89,113.15,1.48,0,31.7,10.1,70.02,70.05,3.6,596,0,7.38,2141,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:55,智界1111,3998,17.23,1.19,-5.2,61.6,8.22,7.39,7.8,594.9,3.54,2105,11.9,0.23,57.2,7.9,72.1,50.4,68,17.1,0,55.8,4.8,80.7,7.41,26.4,2.26,17.3,2764.96,1.31,45.01,1945.02,0.92,117.51,1.47,0,31.7,10.08,70.02,70.05,3.48,596,0,7.58,2323,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:56,智界1111,3997,17.23,1.19,-5.2,61.6,8.19,7.36,7.6,594.9,3.5,2082,11.9,0.23,57.2,7.9,71.9,50.4,68,16.9,0,58.2,4.8,80.8,7.35,26.3,2.08,17.3,2885.76,1.39,47.47,2028.63,0.97,122.56,1.43,0,31.7,10.03,70.03,70.06,3.56,596,0,7.44,2126,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:57,智界1111,3998,17.27,1.18,-5.4,62.3,8.15,7.29,9.3,594.6,3.53,2099,12,0.23,57.2,7.9,71.8,50.4,67.8,16.9,0,58.4,5.4,80.8,7.32,26.3,1.94,17.29,2891.95,1.38,47.44,2030.8,0.97,123.96,1.42,0,31.8,10.01,70.03,70.06,3.6,596,0,7.44,2152,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:58,智界1111,4005,17.27,1.17,-5.4,62.3,8.15,7.27,11,594.9,3.5,2082,12,0.23,57.2,7.9,71.7,50.4,67.8,16.6,0,54.5,7.1,80.8,7.27,26.1,1.91,17.48,2698.78,1.3,44.81,1895.54,0.91,116.5,1.4,0,31.8,10.01,70.05,70.05,3.46,596,0,7.5,2068,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:40:59,智界1111,3997,17.31,1.16,-5.5,62.6,8.15,7.23,14.5,594.9,3.49,2076,12,0.23,57.2,7.9,71.5,50.4,67.5,16.6,0,51.1,7.8,80.8,7.25,26.1,1.81,17.57,2527.16,1.21,42.21,1774.26,0.85,110.39,1.41,0,31.8,10.01,70.05,70.05,3.56,596,0,7.4,2121,30,70,70,0,0,0,25,2026-5-7 17:40 +2026-5-7,17:41:00,智界1111,4002,17.31,1.15,-5.5,62.6,8.14,7.22,16.3,594.6,3.53,2099,12,0.23,57.2,7.9,71.5,50.4,67.5,16.4,0,45.1,9,80.8,7.22,25.9,1.87,17.77,2230.41,1.06,37.1,1566.24,0.75,98.18,1.38,0,31.8,9.99,70.05,70.05,3.54,596,0,7.38,2113,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:01,智界1111,4000,17.36,1.14,-5.6,62.9,8.13,7.18,19.9,594.6,3.53,2099,12,0.23,57.2,7.9,71.4,50.5,67.4,16.4,0,42,9.8,80.7,7.2,25.9,1.77,17.87,2072.37,0.99,34.72,1455.64,0.69,92.27,1.37,0,31.8,9.99,70.04,70.05,3.5,596,0,7.54,2092,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:02,智界1111,3999,17.36,1.13,-5.6,63,8.13,7.15,20.1,594.9,3.54,2105,12,0.23,57.2,7.9,71.4,50.5,67.3,16.3,0,37.8,9.6,80.7,7.16,25.8,1.68,18.06,1865.11,0.89,31.29,1310.33,0.62,83.83,1.36,0,31.8,10,70.04,70.04,3.64,596,0,7.38,2172,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:03,智界1111,4002,17.4,1.12,-5.6,63,8.12,7.11,19.4,594.6,3.51,2087,12,0.23,57.2,7.9,71.3,50.5,67.2,16.3,0,36.3,9.2,80.7,7.14,25.7,1.69,18.26,1788.78,0.85,30.2,1257,0.6,81.19,1.35,0,31.8,10,70.04,70.04,3.52,596,0,7.38,2116,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:04,智界1111,4001,17.4,1.11,-5.6,63.1,8.12,7.09,19.1,594.9,3.5,2082,12,0.23,57.2,7.9,71.3,50.5,67.1,16.1,0,33.5,7.8,80.8,7.11,25.5,1.74,18.46,1651.9,0.79,28.29,1160.27,0.56,75.64,1.35,0,31.8,9.98,70.05,70.04,3.62,595,0,7.3,2104,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:05,智界1111,4001,17.44,1.1,-5.6,63.1,8.12,7.06,18.8,594.9,3.49,2076,11.9,0.23,57.2,7.9,71.4,50.5,67,16,0,32.3,7.6,80.8,7.09,25.5,1.65,18.66,1590.67,0.77,27.5,1117.53,0.54,73.62,1.34,0,31.8,9.98,70.05,70.04,3.56,596,0,7.56,2069,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:06,智界1111,4001,17.44,1.08,-5.6,63.2,8.13,7.05,17,594.9,3.48,2070,12,0.23,57.2,7.9,71.4,50.5,66.8,15.9,0,29.5,5.8,80.9,7.06,25.4,1.6,19.07,1453.75,0.7,25.4,1021.07,0.49,68.53,1.34,0,31.8,9.98,70.02,70.04,3.5,596,0,7.42,2103,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:07,智界1111,4002,17.46,1.08,-5.6,63.2,8.15,7.02,14,594.9,3.47,2064,12,0.23,57.2,7.9,71.4,50.5,66.7,15.8,0,28.4,4.7,81,7.04,25.3,1.61,19.07,1399.58,0.68,24.54,982.37,0.48,65.96,1.33,0,31.8,10,70.02,70.04,3.4,596,0,7.48,2028,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:08,智界1111,4001,17.46,1.07,-5.6,63.2,8.17,7.01,14.1,594.9,3.47,2064,12,0.23,57.2,7.9,71.5,50.5,66.6,15.7,0,26.4,4.2,81.1,7.02,25.2,1.61,19.28,1301.89,0.63,22.91,913.37,0.44,61.92,1.32,0,31.8,10,70.03,70.03,3.48,596,0,7.3,2054,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:09,智界1111,4003,17.48,1.05,-5.5,63.2,8.21,7,13.1,594.9,3.44,2046,12,0.23,57.2,7.9,71.5,50.5,66.5,15.6,0,25.6,3.7,81.2,7.02,25.1,1.71,19.79,1262.48,0.62,22.62,886.09,0.43,61.22,1.32,0,31.8,9.99,70.02,70.03,3.42,596,0,7.2,2079,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:10,智界1111,4000,17.48,1.05,-5.5,63.2,8.22,6.98,12.2,594.6,3.45,2051,12,0.23,57.2,7.9,71.6,50.5,66.4,15.6,0,24.5,3.4,81.4,7,25.1,1.61,19.79,1209.85,0.59,21.6,848.01,0.41,58.64,1.32,0,31.8,9.99,70.02,70.02,3.5,596,0,7.26,2002,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:11,智界1111,4000,17.48,1.05,-5.5,63.2,8.26,6.96,12.8,594.9,3.45,2052,12,0.23,57.2,7.9,71.7,50.5,66.2,15.5,0,23.9,3.5,81.6,6.99,25,1.66,19.79,1181.81,0.58,21.06,827.23,0.4,57.2,1.33,0,31.8,9.97,70.03,70.02,3.52,596,0,7.38,2044,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:12,智界1111,4002,17.48,1.04,-5.5,63.2,8.28,6.94,12,594.9,3.47,2064,12,0.23,57.2,7.9,71.8,50.5,66.1,15.4,0,23.1,3.1,81.8,6.98,25,1.66,20,1142.25,0.55,20.32,799.71,0.39,55.81,1.32,0,31.8,9.95,70.03,70.02,3.46,596,0,7.24,2103,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:13,智界1111,4001,17.48,1.03,-5.5,63.2,8.29,6.94,11,594.9,3.42,2034,12,0.23,57.2,7.9,71.9,50.5,66,15.3,0,22.8,2.8,81.9,6.98,24.9,1.72,20,1129.68,0.56,20.36,789.32,0.39,55.1,1.33,0,31.8,9.95,70.03,70.02,3.46,596,0,7.42,1974,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:14,智界1111,4000,17.48,1.03,-5.4,63.3,8.33,6.94,11.1,594.9,3.42,2034,12,0.23,57.2,7.9,72,50.5,65.8,15.3,0,22.6,2.8,82.1,6.98,24.9,1.72,20.31,1129.68,0.56,20.46,790,0.39,55.69,1.31,0,31.8,9.95,70.03,70.02,3.54,596,0,7.44,2025,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:15,智界1111,4003,17.47,1.03,-5.4,63.3,8.36,6.94,11.3,594.9,3.42,2034,12,0.23,57.2,7.9,72.2,50.5,65.8,15.2,0,22.4,2.9,82.4,6.98,24.9,1.72,20.31,1113.57,0.55,20.1,776.14,0.38,54.67,1.31,0,31.8,9.95,70.01,70.02,3.42,596,0,7.26,2050,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:16,智界1111,3999,17.47,1.03,-5.4,63.3,8.41,6.93,13,594.9,3.38,2010,11.9,0.23,57.2,7.9,72.3,50.6,65.5,15.1,0,21.8,3.3,82.6,6.97,24.8,1.77,20.31,1085.52,0.54,19.79,755.59,0.38,53.26,1.31,0,31.8,9.96,70.02,70.02,3.44,596,0,7.08,2047,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:17,智界1111,4001,17.46,1.02,-5.4,63.3,8.46,6.93,13.9,594.9,3.38,2010,11.9,0.23,57.2,7.9,72.5,50.6,65.5,15.1,0,21.4,3.5,82.8,6.97,24.8,1.77,20.31,1067.02,0.53,19.42,741.72,0.37,52.27,1.31,0,31.8,9.96,70.02,70.02,3.46,596,0,7.28,2063,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:18,智界1111,3997,17.46,1.02,-5.3,63.3,8.5,6.92,15.5,594.9,3.38,2010,12,0.23,57.2,7.9,72.7,50.5,65.4,15,0,21.2,3.9,83.1,6.96,24.8,1.77,20.63,1057.38,0.53,19.33,735.65,0.37,52.37,1.32,0,31.8,9.96,70.02,70.02,3.38,596,0,7.32,2021,30,70,70,0,0,0,25,2026-5-7 17:41 +2026-5-7,17:41:19,智界1111,4001,17.46,1.02,-5.3,63.3,8.55,6.92,15.8,594.9,3.4,2022,12,0.23,57.2,7.9,72.9,50.5,65.4,14.9,0,21.6,4.1,83.3,6.96,24.8,1.72,20.63,1080.89,0.53,19.58,749.53,0.37,53.3,1.32,0,31.8,9.96,70,70.02,3.38,596,0,7.36,2026,30,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:20,智界1111,4001,17.44,1.02,-5.2,63.3,8.59,6.92,16.9,594.9,3.4,2022,12,0.23,57.2,7.9,73.1,50.5,65.1,14.9,0,22.5,4.7,83.5,6.96,24.7,1.82,20.73,1128.12,0.56,20.4,781.75,0.39,55.55,1.31,0,31.8,9.96,70,70.02,3.4,596,0,7.08,2039,30,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:21,智界1111,3999,17.43,1.02,-5.2,63.3,8.62,6.92,17.3,594.9,3.4,2022,12,0.23,57.2,7.9,73.3,50.5,65.1,14.8,0,23.2,4.9,83.8,6.97,24.7,1.87,20.73,1165.51,0.58,21.03,806.08,0.4,57.29,1.31,0,31.7,9.94,70.01,70.01,3.34,596,0,7.22,1992,30,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:22,智界1111,3999,17.43,1.02,-5.1,63.3,8.66,6.92,18.2,594.9,3.39,2016,12,0.23,57.2,7.9,73.5,50.5,64.9,14.7,0,24.1,5.3,84,6.97,24.7,1.87,20.83,1212.68,0.6,21.92,838.15,0.42,59.55,1.32,0,31.7,9.94,70.01,70.01,3.32,596,0,7.08,1973,30,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:23,智界1111,4002,17.4,1.02,-5.1,63.3,8.68,6.92,17.9,594.9,3.39,2016,12,0.23,57.2,7.9,73.8,50.5,64.9,14.6,0,24.7,5.4,84.2,6.97,24.6,1.97,20.83,1245.65,0.62,22.45,859.83,0.43,60.99,1.31,0,31.7,9.93,70.01,70.01,3.42,596,0,7.06,2029,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:24,智界1111,3999,17.4,1.02,-5,63.3,8.74,6.93,17.9,594.9,3.38,2010,11.9,0.23,57.2,7.9,74,50.5,64.8,14.6,0,26,5.7,84.4,6.97,24.6,1.97,20.93,1311.21,0.65,23.71,905.67,0.45,64.27,1.32,0,31.7,9.89,70.01,70.01,3.4,596,0,7.3,2022,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:25,智界1111,4000,17.37,1.02,-5,63.3,8.75,6.93,18.2,594.9,3.37,2004,11.9,0.23,57.2,7.9,74.2,50.5,64.8,14.5,0,26.4,5.9,84.6,6.97,24.6,1.97,20.93,1335.25,0.67,24.14,919.89,0.46,65.28,1.31,0,31.7,9.88,70.03,70,3.34,596,0,7.32,2008,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:26,智界1111,4000,17.37,1.02,-4.9,63.2,8.81,6.93,18.9,594.9,3.35,1992,12,0.23,57.2,7.9,74.4,50.5,64.7,14.5,0,27.3,6.4,84.9,6.97,24.5,2.07,21.03,1384.3,0.69,25.12,952.46,0.48,67.5,1.32,0,31.7,9.88,70.03,70,3.42,596,0,7.16,2044,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:27,智界1111,4000,17.33,1.02,-4.8,63.2,8.85,6.93,19.1,594.9,3.35,1992,12,0.23,57.2,7.9,74.7,50.5,64.6,14.4,0,27.5,6.4,85.1,6.97,24.5,2.07,21.03,1396.67,0.7,25.3,959.74,0.48,67.99,1.31,0,31.7,9.88,70.01,70,3.32,596,0,7.16,1984,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:28,智界1111,4000,17.33,1.02,-4.8,63.1,8.87,6.93,18.3,594.9,3.35,1992,12,0.23,57.2,7.9,75,50.5,64.5,14.3,0,28.6,6.4,85.3,6.98,24.6,1.97,21.13,1453.87,0.73,26.3,999.71,0.5,70.74,1.31,0,31.7,9.84,70.01,70,3.24,596,0,7.04,1926,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:29,智界1111,3999,17.29,1.03,-4.8,63.1,8.88,6.93,17.9,594.9,3.35,1992,12,0.23,57.2,7.9,75.2,50.5,64.4,14.3,0,29.2,6.3,85.5,6.98,24.5,2.12,21.13,1488.64,0.75,26.85,1021.01,0.51,72.24,1.32,0,31.7,9.84,70.02,70,3.5,596,0,7.16,1976,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:30,智界1111,4000,17.27,1.03,-4.7,63,8.92,6.94,17,594.9,3.34,1986,12,0.23,57.2,7.9,75.4,50.5,64.3,14.2,0,30.9,6.3,85.7,6.98,24.5,2.12,21.01,1579.71,0.8,28.36,1082.61,0.55,75.69,1.31,0,31.7,9.84,70.02,70,3.4,596,0,7.2,2041,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:31,智界1111,4000,17.27,1.03,-4.7,63,8.94,6.94,16.7,594.9,3.37,2004,12,0.23,57.2,7.9,75.7,50.5,64.3,14.2,0,31.8,6.3,85.9,6.99,24.4,2.26,21.01,1627.8,0.81,28.92,1114.15,0.56,77.9,1.31,0,31.7,9.84,70.03,70,3.3,596,0,7.08,2066,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:32,智界1111,4000,17.25,1.03,-4.6,62.9,8.97,6.94,15.6,594.9,3.35,1992,11.9,0.23,57.2,7.9,76,50.5,64.2,14.1,0,33.6,6.2,86.1,7,24.3,2.26,21.11,1723.16,0.87,30.74,1178.71,0.59,82.34,1.32,0,31.7,9.84,70.03,70,3.42,596,0,7.06,1981,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:33,智界1111,4003,17.21,1.03,-4.5,62.9,8.97,6.95,15.3,594.9,3.34,1986,11.9,0.23,57.2,7.9,76.3,50.5,64.2,14.1,0,34.4,6.1,86.2,7.01,24.3,2.46,21.11,1766.38,0.89,31.55,1207.53,0.61,84.3,1.33,0,31.6,9.87,70.02,69.99,3.4,596,0,7.24,2029,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:34,智界1111,4001,17.18,1.03,-4.4,62.8,9,6.97,14.4,594.9,3.33,1981,12,0.23,57.2,7.9,76.6,50.5,64.2,14,0,35.9,6,86.4,7.01,24.2,2.56,21.31,1805.03,0.91,32.27,1235.61,0.62,86.07,1.32,0,31.6,9.87,70.02,69.99,3.18,596,0,7.22,1900,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:35,智界1111,4001,17.15,1.03,-4.3,62.8,9,6.97,14,594.9,3.31,1969,12,0.23,57.2,7.9,76.8,50.5,64.2,14,0,36.7,5.9,86.6,7.02,24.1,2.71,21.31,1892.08,0.96,33.95,1291.94,0.66,90.08,1.32,0,31.6,9.87,70.03,70,3.36,596,0,7.24,2005,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:36,智界1111,4000,17.12,1.04,-4.3,62.6,9,6.97,13.3,594.9,3.31,1969,12,0.23,57.2,7.9,77.1,50.5,64.1,13.9,0,38.3,5.8,86.8,7.01,24.1,2.71,21.2,1931.63,0.98,34.42,1319.62,0.67,90.86,1.31,0,31.6,9.88,70.03,70,3.34,596,0,7.12,1989,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:37,智界1111,4003,17.12,1.04,-4.3,62.6,9,6.97,12.9,594.9,3.29,1957,12,0.23,57.2,7.9,77.4,50.5,64.1,13.9,0,38.7,5.7,87,7.01,24,2.66,265.65,2003.78,1.02,35.83,1365.49,0.7,93.95,1.32,0,31.6,9.89,70.03,69.98,3.34,596,0,7.18,2025,31,70,70,0,0,0,26,2026-5-7 17:41 +2026-5-7,17:41:38,智界1111,4001,17.06,1.04,-4.2,62.5,9.02,6.97,12.5,594.9,3.29,1957,12,0.23,57.2,7.9,77.7,50.5,64.1,13.8,0,39.6,5.7,87.2,7.01,24,2.76,21.3,2038.48,1.04,36.35,1390.14,0.71,95.49,1.33,0,31.6,9.89,70.03,69.98,3.34,596,0,7.18,1984,31,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:39,智界1111,4003,17.06,1.04,-4.2,62.5,9.03,6.97,12.7,594.9,3.31,1969,12,0.23,57.2,7.9,77.9,50.5,64.1,13.8,0,40.1,5.8,87.4,7.01,23.9,2.86,21.3,2085.15,1.06,36.87,1418.43,0.72,97.39,1.32,0,31.6,9.89,70.02,69.98,3.26,596,0,7.16,1994,31,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:40,智界1111,4000,16.99,1.04,-4.1,62.4,9.04,6.97,12.3,594.9,3.29,1957,12,0.23,57.2,7.9,78.2,50.5,64.1,13.7,0,41.3,5.7,87.6,7.01,23.8,2.86,21.4,2128.58,1.09,37.7,1447.26,0.74,99.2,1.33,0,31.8,9.93,70.02,69.98,3.44,596,0,7.2,1943,31,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:41,智界1111,3999,16.96,1.05,-4,62.4,9.04,6.97,11.9,594.9,3.31,1969,12,0.23,57.2,7.9,78.4,50.5,64.1,13.7,0,42,5.6,87.8,7.01,23.8,2.96,21.19,2193.89,1.11,38.4,1489.53,0.76,101.09,1.32,0,31.8,9.93,70.02,69.99,3.36,596,0,7.12,2005,31,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:42,智界1111,4001,16.92,1.07,-3.9,62.2,9.05,6.97,11.6,594.9,3.28,1951,12,0.23,57.2,7.9,78.7,50.4,64.1,13.6,0,43,5.7,88,7.02,23.7,3.01,20.98,2250.76,1.15,39.31,1529.65,0.78,101.58,1.32,0,31.8,9.93,70.02,69.99,3.34,596,0,7.18,1992,31,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:43,智界1111,4004,16.92,1.08,-3.9,62.2,9.06,6.97,11.8,594.9,3.29,1957,12,0.23,57.2,7.9,79,50.4,64.1,13.6,0,43.4,5.9,88.2,7.02,23.7,3.11,20.77,2277.27,1.16,39.39,1543.57,0.79,101.47,1.33,0,31.8,9.93,70.05,69.98,3.3,596,0,6.84,1967,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:44,智界1111,4001,16.84,1.1,-3.8,62,9.08,6.97,11.8,594.6,3.24,1926,12,0.23,57.2,7.9,79.2,50.4,64.1,13.5,0,44.6,5.9,88.4,7.02,23.7,3.11,20.46,2797.31,1.45,-93.35,2049.49,1.06,101.06,1.33,0,31.8,10.02,70.04,69.98,3.28,596,0,7.04,1903,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:45,智界1111,4002,16.84,1.1,-3.8,62,9.09,6.98,11.6,594.9,3.23,1921,12,0.23,57.2,7.9,79.4,50.4,64.1,13.5,0,45.1,5.9,88.5,7.03,23.6,3.26,20.46,2376.36,1.24,41.29,1608.41,0.84,103.56,1.32,0,31.8,10.02,70.04,69.99,3.32,596,0,6.9,1978,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:46,智界1111,3998,16.74,1.11,-3.7,61.8,9.1,6.99,11.4,594.9,3.22,1915,12,0.23,57.2,7.9,79.6,50.4,64.2,13.4,0,46.4,5.9,88.7,7.04,23.5,3.36,20.36,2451.99,1.28,42.35,1660.63,0.87,105.7,1.33,0,31.8,10.04,70.04,69.99,3.24,596,0,7.06,1930,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:47,智界1111,4001,16.74,1.12,-3.7,61.8,9.11,6.99,11.1,594.9,3.24,1927,12,0.23,57.2,7.9,79.9,50.4,64.2,13.4,0,46.9,5.9,88.9,7.04,23.5,3.41,20.16,2484.41,1.29,42.36,1678.2,0.87,105.77,1.33,0,31.8,10.06,70.06,69.98,3.34,596,0,6.92,1991,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:48,智界1111,4001,16.65,1.11,-3.6,61.6,9.12,7,11.7,594.9,3.23,1921,12,0.23,57.2,7.9,80.1,50.4,64.2,13.3,0,47.9,6.1,88.9,7.04,23.4,3.51,20.46,2544.01,1.32,43.51,1720.2,0.9,109.08,1.32,0,31.8,10.15,70.06,69.98,3.28,596,0,6.96,1956,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:49,智界1111,4002,16.65,1.1,-3.6,61.6,9.12,7.01,11.9,594.9,3.22,1915,12,0.23,57.2,7.9,80.3,50.4,64.2,13.3,0,48.1,6.5,89.3,7.05,23.4,3.56,20.66,2560.77,1.34,44.02,1727.74,0.9,110.54,1.31,0,31.8,10.16,70.03,69.97,2.82,596,0,6.96,1682,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:50,智界1111,4002,16.57,1.09,-3.4,61.4,9.11,7.02,11.3,594.9,3.21,1909,12,0.23,57.2,7.9,80.5,50.4,64.3,13.2,0,49,6.3,89.3,7.06,23.3,3.7,21.07,2588.03,1.35,44.53,1748.97,0.91,112.61,1.32,0,31.8,10.16,70.03,69.97,3.18,596,0,6.9,1892,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:51,智界1111,3999,16.57,1.08,-3.4,61.4,9.1,7.02,11.2,594.9,3.19,1897,12,0.23,57.2,7.9,80.7,50.4,64.3,13.2,0,49.1,6.2,89.6,7.06,23.3,3.7,21.27,2624.73,1.38,45.71,1770.96,0.93,115.18,1.33,0,31.8,10.15,70.02,69.97,3.28,596,0,6.86,1952,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:52,智界1111,3997,16.5,1.07,-3.3,61.2,9.09,7.02,11.1,594.9,3.18,1891,12,0.23,57.2,7.9,80.9,50.3,64.4,13.2,0,49.2,6.2,89.7,7.06,23.3,3.7,21.58,2636.92,1.39,46.09,1779.88,0.94,116.64,1.33,0,31.8,10.19,70.02,69.97,3.22,596,0,6.74,1925,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:53,智界1111,3998,16.5,1.06,-3.3,61.2,9.08,7.01,11,594.9,3.18,1891,12,0.23,57.2,7.9,81.1,50.3,64.4,13.1,0,49.1,6.1,89.9,7.05,23.3,3.66,21.78,2634.68,1.39,46.2,1776.6,0.94,117.51,1.35,0,31.8,10.19,70.04,69.97,3.24,596,0,6.86,1877,32,70,70,0,0,0,27,2026-5-7 17:41 +2026-5-7,17:41:54,智界1111,3998,16.47,1.07,-3.2,61.1,9.08,7,11,594.9,3.18,1891,12,0.23,57.2,7.9,81.2,50.3,64.4,13.1,0,49.2,6,90.1,7.04,23.2,3.71,21.68,-5207746344,-2753964.22,46.08,1782.63,0.94,116.66,1.34,0,31.8,10.17,70.04,69.97,3.22,596,0,6.98,1930,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:41:55,智界1111,3998,16.47,1.08,-3.2,61.2,9.07,6.99,11.1,594.9,3.18,1891,12,0.23,57.2,7.9,81.4,50.3,64.5,13.1,0,49.3,6.1,90.3,7.03,23.2,3.66,21.47,2653.92,1.4,45.97,1785.9,0.94,115.78,1.36,0,31.8,10.17,70.04,69.96,3.16,596,0,6.88,1940,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:41:56,智界1111,3998,16.5,1.08,-3.1,61.3,9.08,6.99,10.9,594.9,3.19,1897,12,0.23,57.2,7.9,81.5,50.3,64.6,13,0,49.3,6.1,90.5,7.03,23.2,3.66,21.57,2654.78,1.4,45.88,1785.36,0.94,115.82,1.35,0,31.8,10.12,70.04,69.96,3.36,596,0,7,1937,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:41:57,智界1111,3999,16.5,1.07,-3.1,61.4,9.07,6.99,10.9,594.9,3.21,1909,12,0.23,57.2,7.9,81.7,50.3,64.6,13,0,49.6,6.1,90.7,7.03,23.1,3.76,21.78,2674.08,1.4,46.07,1796.57,0.94,117.63,1.35,0,31.8,10.12,70.04,69.97,3.48,596,0,7.04,1966,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:41:58,智界1111,3998,16.55,1.07,-3,61.5,9.08,6.98,11.1,594.9,3.21,1909,12,0.23,57.2,7.9,81.8,50.3,64.7,13,0,49.6,6.1,90.9,7.02,23.1,3.71,21.88,2673.43,1.4,46.14,1794.91,0.94,117.7,1.35,0,31.8,10.08,70.04,69.97,3.18,595,0,6.86,1915,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:41:59,智界1111,3999,16.55,1.07,-3,61.6,9.08,6.98,11.2,594.9,3.23,1921,12,0.23,57.2,7.9,81.9,50.3,64.7,12.9,0,50.1,6.3,91.1,7.02,23,3.81,21.88,2703.56,1.41,46.32,1813.01,0.94,118.86,1.31,0,31.8,10.08,70.04,69.97,3.1,595,0,6.76,1964,32,70,70,0,0,0,28,2026-5-7 17:41 +2026-5-7,17:42:00,智界1111,4003,16.6,1.07,-2.9,61.8,9.09,6.98,11.2,594.9,3.23,1921,12,0.23,57.1,7.9,82,50.3,64.8,12.9,0,50.4,6.3,91.3,7.02,23,3.81,21.88,2719.1,1.42,46.65,1821.05,0.95,119.45,1.29,0,31.9,10.05,70.04,69.97,3.2,595,0,6.94,1943,32,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:01,智界1111,4004,16.6,1.07,-2.9,61.9,9.1,6.98,11,594.9,3.22,1915,12,0.23,57.1,7.9,82.1,50.3,64.9,12.8,0,50.9,6.3,91.5,7.02,23,3.81,21.98,2749.3,1.44,47.28,1840.27,0.96,120.66,1.26,0,31.9,10.05,70.04,69.97,3.26,596,0,6.96,1943,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:02,智界1111,4004,16.62,1.05,-2.7,62,9.1,6.98,10.9,594.9,3.18,1891,12,0.23,57.1,7.9,82.2,50.2,64.9,12.8,0,51.1,6.3,91.6,7.02,23,3.81,22.59,2760.17,1.46,48.55,1849.39,0.98,123.62,1.26,0,31.9,10.05,70.02,69.95,3.18,596,0,6.68,1901,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:03,智界1111,4002,16.62,1.03,-2.7,62.1,9.1,6.99,11.1,594.9,3.16,1879,12,0.23,57.1,7.9,82.2,50.2,65,12.8,0,51.7,6.5,91.8,7.03,23,3.86,23.01,2795.86,1.49,49.87,1871.83,1,127.64,1.24,0,31.9,10.05,70.03,69.95,2.9,596,0,6.74,1727,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:04,智界1111,4000,16.59,1.02,-2.6,62.1,9.11,6.99,11.2,594.9,3.15,1873,12,0.23,57.2,7.9,82.3,50.2,65.1,12.7,0,52,6.5,92,7.03,23,3.86,23.33,2817.75,1.5,50.54,1885.97,1.01,129.8,1.25,0,31.8,9.99,70.03,69.95,3.02,596,0,6.9,1806,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:05,智界1111,4000,16.59,1,-2.6,62.1,9.11,6.98,11.9,594.9,3.13,1862,12,0.23,57.2,7.9,82.3,50.2,65.2,12.7,0,52.1,7.3,92.2,7.02,22.9,3.91,23.76,2826.47,1.52,51.39,1890.32,1.02,132.74,1.27,0,31.8,10.04,70.02,69.96,3.12,596,0,6.6,1856,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:06,智界1111,3999,16.54,1,-2.5,62.1,9.11,6.98,12.5,594.9,3.13,1862,12,0.23,57.2,7.9,82.4,50.2,65.2,12.7,0,52.2,7.5,92.4,7.02,22.9,3.91,23.86,2839.16,1.52,51.46,1898.04,1.02,133.08,1.27,0,31.8,10.05,70.02,69.96,3.26,596,0,6.6,1940,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:07,智界1111,3998,16.54,1,-2.4,62.1,9.11,6.98,12.1,594.9,3.15,1873,12,0.23,57.2,7.9,82.4,50.2,65.3,12.7,0,52.4,7.1,92.5,7.03,22.9,3.96,23.96,2851.7,1.52,51.37,1906.5,1.02,133.68,1.28,0,31.8,10.05,70.02,69.96,3.2,596,0,6.7,1862,33,70,70,0,0,0,28,2026-5-7 17:42 +2026-5-7,17:42:08,智界1111,3999,16.49,1,-2.4,62.1,9.1,6.98,11.8,594.9,3.15,1873,11.9,0.23,57.2,7.9,82.5,50.2,65.4,12.7,0,52.3,7.1,92.7,7.02,22.9,3.91,23.96,2853.53,1.52,51.22,1905.78,1.02,133.39,1.28,0,31.8,9.97,70.01,69.96,3.2,596,0,6.82,1895,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:09,智界1111,4001,16.49,1,-2.4,62,9.1,6.98,11.6,594.9,3.15,1873,11.9,0.23,57.2,7.9,82.5,50.2,65.5,12.6,0,52,6.8,93,7.02,22.9,3.91,23.96,2842.09,1.52,50.92,1894.85,1.01,132.56,1.29,0,31.8,9.97,70.01,69.95,3.14,596,0,6.72,1868,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:10,智界1111,4001,16.44,1.01,-2.3,62,9.1,6.97,11.8,594.9,3.15,1873,12,0.23,57.2,7.9,82.5,50.2,65.5,12.6,0,52.2,6.9,93.2,7.02,22.8,4.01,23.84,2860.27,1.53,50.85,1905.88,1.02,131.76,1.29,0,31.8,9.96,70.01,69.95,3.16,596,0,6.76,1888,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:11,智界1111,4001,16.44,1.01,-2.2,62,9.1,6.98,11.7,594.9,3.16,1879,12,0.23,57.2,7.9,82.6,50.1,65.6,12.6,0,52.2,6.8,93.4,7.02,22.8,4.01,23.94,2863.56,1.52,50.71,1907.05,1.01,131.82,1.29,0,31.8,9.96,70.01,69.96,3.18,596,0,6.84,1901,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:12,智界1111,4000,16.4,1.02,-2.1,61.9,9.09,6.98,11.4,594.9,3.12,1856,12,0.23,57.2,7.9,82.6,50.1,65.7,12.6,0,52.2,6.7,93.6,7.02,22.8,4.01,23.73,2868.43,1.55,51.09,1907.86,1.03,130.52,1.29,0,31.8,9.91,70.02,69.94,3.08,596,0,6.7,1928,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:13,智界1111,4000,16.4,1.02,-2,61.9,9.08,6.98,11.2,594.9,3.12,1856,12,0.23,57.2,7.9,82.6,50.1,65.8,12.6,0,52.4,6.6,93.7,7.01,22.8,3.96,23.93,2882.66,1.55,51.31,1918.71,1.03,131.13,1.29,0,31.8,9.91,70.02,69.94,3.24,596,0,6.7,1880,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:14,智界1111,4000,16.37,1.02,-1.9,61.9,9.07,6.98,11.3,594.9,3.11,1850,12,0.23,57.2,7.9,82.6,50.1,65.8,12.6,0,52.4,6.7,93.9,7.01,22.8,3.96,23.93,2887.54,1.56,67.61,1620.93,0.88,131.13,1.3,0,31.8,9.89,70.02,69.94,3.08,596,0,6.68,1840,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:15,智界1111,4000,16.37,1.03,-1.9,61.8,9.06,6.97,11.9,594.9,3.11,1850,12,0.23,57.2,7.9,82.6,50.1,65.9,12.6,0,52.3,7,94.1,7,22.8,3.96,215.37,2882.82,1.56,51.13,1917.63,1.04,129.62,1.3,0,31.8,9.88,70.02,69.94,3.18,596,0,6.66,1920,33,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:16,智界1111,3998,16.36,1.03,-1.9,61.8,9.05,6.96,11.8,594.9,3.12,1856,12,0.23,57.2,7.9,82.6,50.1,66,12.6,0,52.3,7,94.3,7,22.9,3.81,23.81,2890.19,1.56,50.96,1918.21,1.03,129.68,1.29,0,31.7,9.89,70.01,69.94,3.18,596,0,6.84,1922,34,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:17,智界1111,4000,16.35,1.04,-1.7,61.8,9.06,6.96,11.9,594.9,3.12,1856,12,0.23,57.2,7.9,82.6,50.1,66.2,12.6,0,52.5,7,94.5,7,22.9,3.81,23.8,2905.33,1.57,50.96,1928.15,1.04,128.93,1.3,0,31.7,9.92,70.01,69.94,3.36,596,0,6.72,1873,34,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:18,智界1111,4000,16.34,1.04,-1.6,61.8,9.06,6.95,11.6,594.9,3.12,1856,12,0.23,57.2,7.9,82.6,50.1,66.2,12.6,0,52.6,6.9,94.7,7,22.9,3.81,23.8,2914.17,1.57,51.05,1931.82,1.04,129.21,1.3,0,31.7,9.92,70.02,69.94,3.12,596,0,6.84,1900,34,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:19,智界1111,4000,16.34,1.05,-1.5,61.8,9.07,6.96,12,594.9,3.13,1862,12,0.23,57.2,7.9,82.6,50,66.2,12.6,0,52.7,7.2,94.9,7,22.9,3.81,23.79,2923.82,1.57,50.79,1938.1,1.04,128.26,1.3,0,31.7,9.93,70.02,69.94,3.14,596,0,6.72,1754,34,70,70,0,0,0,29,2026-5-7 17:42 +2026-5-7,17:42:20,智界1111,4000,16.32,1.05,-1.4,61.8,9.06,6.96,11.8,594.9,3.13,1862,12,0.23,57.2,7.9,82.5,50,66.3,12.6,0,52.8,7,95.1,7,22.9,3.81,23.79,2933.48,1.58,50.88,1942.38,1.04,128.53,1.31,0,31.7,9.94,70.02,69.93,3.22,596,0,6.8,1922,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:21,智界1111,3999,16.32,1.05,-1.3,61.8,9.06,6.96,11.9,594.9,3.13,1862,12,0.23,57.2,7.9,82.5,50,66.4,12.6,0,53.3,7.2,95.3,7,22.9,3.81,23.99,2965.41,1.59,51.39,1963.78,1.05,129.85,1.31,0,31.8,9.94,70.02,69.93,2.94,596,0,6.84,1881,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:22,智界1111,4000,16.31,1.06,-1.3,61.8,9.05,6.95,11.9,594.9,3.15,1873,12,0.23,57.2,7.9,82.5,50,66.5,12.6,0,53.2,7.1,95.5,7,22.9,3.81,23.78,2963.99,1.58,50.76,1960.33,1.05,128.32,1.31,0,31.8,9.94,69.99,69.95,3.26,596,0,6.86,1879,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:23,智界1111,3999,16.28,1.06,-1.1,61.7,9.05,6.94,12.1,594.9,3.13,1862,12,0.23,57.2,7.9,82.5,50,66.6,12.6,0,53.1,7.4,95.7,7,22.9,3.81,23.98,2964.15,1.59,50.97,1960.85,1.05,128.21,1.31,0,31.8,9.94,69.99,69.95,3.04,596,0,6.84,1886,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:24,智界1111,3999,16.28,1.06,-1.1,61.7,9.05,6.94,12.3,594.9,3.13,1862,12,0.23,57.2,7.9,82.4,50,66.6,12.6,0,53.1,7.5,95.9,7,22.9,3.81,23.98,2967.48,1.59,50.97,1960.85,1.05,128.21,1.31,0,31.8,9.93,70.01,69.94,3.08,596,0,6.58,1838,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:25,智界1111,4000,16.26,1.07,-0.9,61.7,9.06,6.95,12.1,594.9,3.13,1862,12,0.23,57.2,7.9,82.4,50,66.8,12.7,0,53.1,7.4,95.9,7,22.9,3.81,23.98,2969.08,1.59,50.77,1964.08,1.05,127.05,1.31,0,31.8,9.93,70.01,69.94,3.08,596,0,6.66,1841,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:26,智界1111,4000,16.26,1.08,-0.9,61.7,9.05,6.95,12.4,594.9,3.12,1856,12,0.23,57.2,7.9,82.4,50,66.8,12.7,0,53.5,7.5,96.3,7,22.9,3.81,23.77,2998.14,1.62,82.12,1413.81,0.76,126.78,1.32,0,31.8,9.91,70,69.94,3.04,596,0,6.72,1808,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:27,智界1111,3999,16.23,1.08,-0.7,61.6,9.04,6.96,12.4,594.6,3.12,1855,12,0.23,57.2,7.9,82.3,49.9,66.9,12.7,0,53.6,7.5,96.4,7,22.9,3.81,23.97,3007.85,1.62,51.23,1986.46,1.07,127.16,1.33,0,31.8,9.9,70,69.94,3.16,596,0,6.64,1887,34,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:28,智界1111,3999,16.23,1.09,-0.7,61.6,9.04,6.96,12.2,594.9,3.12,1856,12,0.23,57.1,7.9,82.3,49.9,66.9,12.7,0,53.5,7.5,96.6,7,22.9,3.81,23.77,3005.58,1.62,50.89,1982.38,1.07,125.72,1.35,0,31.9,9.87,70.01,69.94,3.18,596,0,6.76,1900,35,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:29,智界1111,3998,16.23,1.09,-0.5,61.6,9.03,6.95,12,594.9,3.13,1862,12,0.23,57.1,7.9,82.3,49.9,67.1,12.7,0,53.4,7.2,96.7,6.99,22.9,3.76,23.97,3001.63,1.61,50.67,1981.1,1.06,125.62,1.34,0,31.8,9.91,69.99,69.94,3.22,596,0,6.92,1896,35,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:30,智界1111,4000,16.23,1.1,-0.5,61.6,9.03,6.94,12.2,594.9,3.16,1879,12,0.23,57.1,7.9,82.2,49.9,67.1,12.7,0,53.7,7.6,96.9,6.99,22.9,3.76,23.76,3021.85,1.61,50.28,1991.86,1.06,125.07,1.35,0,31.8,9.91,69.99,69.94,3.14,596,0,6.72,1876,35,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:31,智界1111,4000,16.23,1.1,-0.2,61.6,9.03,6.94,12.8,594.9,3.16,1879,12,0.23,57.1,7.9,82.2,49.9,67.2,12.7,0,53.7,7.9,97.2,6.99,22.9,3.76,24.06,3026.89,1.61,50.35,1995.52,1.06,125.23,1.35,0,31.8,9.91,69.98,69.94,3.18,596,0,6.74,1855,35,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:32,智界1111,3999,16.23,1.1,-0.1,61.6,9.04,6.94,12.1,594.9,3.16,1879,12,0.23,57.1,7.9,82.2,49.9,67.2,12.8,0,53.7,7.7,97.3,6.99,22.9,3.76,24.06,3028.57,1.61,50.35,1995.52,1.06,125.26,1.35,0,31.8,9.92,69.98,69.94,3.18,596,0,6.72,1897,35,70,70,0,0,0,30,2026-5-7 17:42 +2026-5-7,17:42:33,智界1111,4000,16.23,1.11,0,61.6,9.04,6.94,12.2,594.9,3.17,1885,12,0.23,57.1,7.9,82.1,49.9,67.3,12.8,0,53.7,7.5,97.5,6.98,22.9,3.72,24.06,3031.92,1.61,50.02,1997.59,1.06,124.17,1.37,0,31.8,9.92,70,69.94,3.16,596,0,6.94,1883,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:34,智界1111,3999,16.23,1.11,0,61.6,9.04,6.94,12.4,594.9,3.16,1879,12,0.23,57.1,7.9,82.1,49.9,67.4,12.8,0,53.6,7.6,97.7,6.99,22.8,3.86,24.06,3029.63,1.61,50.08,1993.88,1.06,123.96,1.37,0,31.7,9.93,70,69.94,3.22,596,0,6.94,1921,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:35,智界1111,4000,16.23,1.11,0.1,61.6,9.04,6.94,12.7,594.9,3.17,1885,12,0.23,57.1,7.9,82.1,49.9,67.4,12.8,0,54,7.8,97.9,6.98,22.8,3.82,24.16,3055.6,1.62,50.32,2009.98,1.07,124.91,1.38,0,31.7,9.93,70,69.94,3.24,596,0,6.8,1926,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:36,智界1111,3999,16.23,1.12,0.2,61.6,9.04,6.94,12.5,594.9,3.16,1879,12,0.23,57.1,7.9,82.1,49.8,67.5,12.8,0,54,7.8,98.1,6.97,22.9,3.67,24.06,3058.97,1.63,50.29,2010.83,1.07,123.84,1.39,0,31.7,9.94,69.98,69.94,3.32,596,0,6.72,1979,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:37,智界1111,4000,16.23,1.12,0.3,61.6,9.04,6.93,12.2,594.9,3.17,1885,11.9,0.23,57.1,7.9,82.1,49.8,67.6,12.9,0,54.4,7.6,98.2,6.98,22.9,3.72,24.16,3083.33,1.64,50.52,2026.97,1.08,124.78,1.39,0,31.7,9.94,69.98,69.95,2.86,596,0,6.9,1905,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:38,智界1111,3999,16.22,1.13,0.3,61.6,9.04,6.93,12.3,594.9,3.16,1879,12,0.23,57.1,7.9,82,49.8,67.7,12.9,0,54.5,7.8,98.4,6.97,22.9,3.67,23.96,3093.21,1.64,50.39,2030.94,1.08,123.89,1.4,0,31.7,9.94,69.97,69.94,3.14,596,0,7,1914,35,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:39,智界1111,4000,16.22,1.13,0.3,61.6,9.05,6.93,12.2,594.9,3.17,1885,12,0.23,57.1,7.9,82,49.8,67.7,12.9,0,54.7,7.6,98.6,6.98,22.9,3.72,23.96,3107.99,1.65,50.58,2038.4,1.08,124.32,1.4,0,31.7,9.94,69.97,69.94,3.2,596,0,7,1928,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:40,智界1111,3999,16.21,1.14,0.5,61.6,9.04,6.93,12.8,594.9,3.17,1885,12,0.23,57.1,7.9,82,49.8,67.8,12.9,0,54.8,7.8,98.8,6.98,22.9,3.72,23.97,3117.91,1.65,50.49,2044.87,1.08,123.55,1.41,0,31.7,9.97,69.98,69.94,3.36,596,0,7,1912,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:41,智界1111,4000,16.21,1.15,0.5,61.6,9.04,6.93,12.8,594.9,3.16,1879,12,0.23,57.1,7.9,82,49.8,67.8,13,0,54.8,8,99,6.98,22.9,3.72,23.77,3121.33,1.66,50.44,2044.49,1.09,122.41,1.42,0,31.7,9.99,69.98,69.94,3.28,596,0,6.8,1897,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:42,智界1111,3999,16.19,1.15,0.7,61.6,9.05,6.93,12.3,594.9,3.18,1891,12,0.23,57.1,7.9,81.9,49.8,67.9,13,0,55,7.8,99.1,6.98,22.9,3.72,23.97,3136.08,1.67,50.64,2055.71,1.09,122.99,1.43,0,31.7,9.99,69.98,69.94,3.3,596,0,6.72,1882,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:43,智界1111,3999,16.19,1.15,0.7,61.6,9.05,6.93,12.1,594.9,3.19,1897,12,0.23,57.1,7.9,81.9,49.8,67.9,13,0,55.3,7.6,99.3,6.98,22.9,3.72,23.97,3156.63,1.66,50.44,2066.92,1.09,123.66,1.43,0,31.7,9.99,69.96,69.94,3.04,596,0,6.88,1919,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:44,智界1111,3999,16.18,1.16,0.9,61.6,9.06,6.93,12.3,594.9,3.19,1897,11.9,0.23,57.1,7.9,81.9,49.7,68,13,0,55.5,7.7,99.5,6.98,22.9,3.72,23.97,3172.34,1.67,50.44,2077.18,1.09,123.1,1.43,0,31.7,10.02,69.96,69.94,3.1,596,0,6.82,1914,36,70,70,0,0,0,31,2026-5-7 17:42 +2026-5-7,17:42:45,智界1111,3998,16.18,1.16,1,61.6,9.06,6.94,12.4,594.9,3.19,1897,11.9,0.23,57.1,7.9,81.9,49.7,68.1,13.1,0,55.8,7.9,99.7,6.99,22.9,3.76,24.07,3192.97,1.68,50.74,2089.69,1.1,123.85,1.45,0,31.7,10,69.97,69.94,3.28,596,0,7.02,1920,36,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:46,智界1111,4000,16.17,1.17,1.1,61.6,9.06,6.94,12.5,594.9,3.21,1909,11.9,0.23,57.1,7.9,81.9,49.7,68.1,13.1,0,55.9,8,99.9,6.99,23,3.66,23.88,3203.01,1.68,50.29,2093.69,1.1,122.91,1.45,0,31.7,10,69.97,69.94,3.22,596,0,6.94,1925,36,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:47,智界1111,3999,16.17,1.17,1.2,61.6,9.06,6.94,12.6,594.9,3.19,1897,12,0.23,57.1,7.9,81.9,49.7,68.2,13.1,0,56.4,8.1,100,6.99,23,3.66,24.08,3233.41,1.7,51.1,2114.99,1.11,124.14,1.47,0,31.7,10.02,69.97,69.94,3.08,596,0,6.96,1837,36,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:48,智界1111,3999,16.16,1.18,1.2,61.6,9.06,6.94,12.5,594.9,3.19,1897,12,0.23,57.1,7.9,81.9,49.7,68.2,13.1,0,56.8,8.1,100.2,6.99,23,3.66,23.89,3259.88,1.72,51.26,2129.61,1.12,123.93,1.48,0,31.7,10.05,69.98,69.94,3.3,596,0,6.76,1969,36,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:49,智界1111,3998,16.15,1.18,1.4,61.6,9.06,6.94,12.2,594.9,3.19,1897,12,0.23,57.1,7.9,81.9,49.7,68.3,13.2,0,57.1,8.1,100.2,7,23,3.71,24.09,3273.07,1.73,51.46,2141,1.13,124.5,1.48,0,31.7,10.05,69.98,69.94,3.26,596,0,6.88,1947,36,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:50,智界1111,3997,16.15,1.18,1.4,61.6,9.06,6.94,12.3,594.9,3.21,1909,12,0.23,57.1,7.9,81.9,49.7,68.3,13.2,0,57.3,8,100.6,6.99,23,3.66,24.09,3297.42,1.73,51.4,2152.27,1.13,125.18,1.5,0,31.7,10.05,70,69.95,3.26,596,0,6.92,1939,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:51,智界1111,3998,16.15,1.19,1.6,61.6,9.06,6.94,11.9,594.9,3.21,1909,12,0.23,57.1,7.9,81.9,49.7,68.4,13.2,0,57.3,7.7,100.6,6.99,23,3.66,24.1,3297.42,1.73,51.24,2154.5,1.13,124.16,1.5,0,31.7,10.05,70,69.95,3.12,596,0,6.76,1861,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:52,智界1111,3999,16.15,1.19,1.6,61.6,9.06,6.94,11.8,594.9,3.21,1909,12,0.23,57.1,7.9,82,49.7,68.4,13.3,0,57.6,7.7,101,6.98,23,3.62,24.1,3321.84,1.74,51.51,2165.77,1.13,124.78,1.51,0,31.7,10.09,70.01,69.95,3.24,596,0,7.02,1926,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:53,智界1111,3998,16.16,1.2,1.7,61.6,9.06,6.94,12.2,594.9,3.21,1909,11.9,0.23,57.1,7.9,82,49.7,68.5,13.3,0,57.7,7.9,101.2,6.99,23,3.66,24.01,3330.35,1.74,51.42,2169.82,1.14,124,1.51,0,31.7,10.1,70.01,69.95,3.26,596,0,6.96,1945,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:54,智界1111,3999,16.16,1.2,1.7,61.6,9.06,6.94,12.2,594.9,3.21,1909,11.9,0.23,57.1,7.9,82,49.7,68.5,13.3,0,57.8,8,101.4,6.99,23.1,3.56,24.01,3339.72,1.75,51.51,2173.58,1.14,124.19,1.52,0,31.7,10.1,69.99,69.94,3.26,596,0,7.02,1946,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:55,智界1111,3999,16.17,1.21,1.9,61.6,9.06,6.94,11.9,594.9,3.22,1915,12,0.23,57.1,7.9,82,49.6,68.5,13.3,0,57.9,7.9,101.6,6.99,23.1,3.56,24.02,3348.24,1.75,51.29,2178.95,1.14,123.44,1.53,0,31.7,10.1,69.99,69.94,3.26,596,0,7,1944,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:56,智界1111,3997,16.17,1.21,1.9,61.6,9.07,6.93,11.9,594.9,3.23,1921,12,0.23,57.1,7.9,82,49.6,68.6,13.4,0,58.2,7.8,101.8,6.99,23.1,3.56,24.02,3369.2,1.75,51.4,2190.24,1.14,124.14,1.54,0,31.7,10.13,69.99,69.95,3.38,596,0,6.94,1918,37,70,70,0,0,0,32,2026-5-7 17:42 +2026-5-7,17:42:57,智界1111,3998,16.18,1.21,2.1,61.6,9.07,6.93,12,594.9,3.24,1927,12,0.23,57.1,7.9,82,49.6,68.6,13.4,0,58.4,7.8,102,6.98,23.1,3.52,24.22,3383.54,1.76,51.47,2199.77,1.14,124.64,1.56,0,31.7,10.13,69.98,69.94,3.14,596,0,7.02,1873,37,70,70,0,0,0,33,2026-5-7 17:42 +2026-5-7,17:42:58,智界1111,3999,16.18,1.22,2.2,61.6,9.07,6.93,12.2,594.9,3.24,1927,11.9,0.23,57.1,7.9,82.1,49.6,68.7,13.4,0,58.7,8.1,102.2,6.98,22.9,3.52,24.13,3404.57,1.77,51.55,2212.03,1.15,124.24,1.57,0,31.7,10.13,69.98,69.94,3.36,596,0,7.06,1998,37,70,70,0,0,0,33,2026-5-7 17:42 +2026-5-7,17:42:59,智界1111,3999,16.17,1.23,2.2,61.6,9.07,6.93,12,594.9,3.26,1939,11.9,0.23,57.1,7.9,82.1,49.6,68.7,13.4,0,58.9,8,102.4,6.98,22.9,3.72,24.13,3420.7,1.76,51.39,2220.23,1.15,124.66,1.58,0,31.7,10.11,69.98,69.95,3.28,596,0,6.88,1957,38,70,70,0,0,0,33,2026-5-7 17:42 +2026-5-7,17:43:00,智界1111,4000,16.17,1.23,2.4,61.7,9.08,6.93,12,594.9,3.24,1927,11.9,0.23,57.1,7.9,82.1,49.6,68.8,13.5,0,59.3,8,102.5,6.98,22.9,3.72,24.15,3443.93,1.79,51.9,2237.63,1.16,124.52,1.59,0,31.7,10.08,69.98,69.95,3,596,0,6.86,1792,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:01,智界1111,3999,16.17,1.23,2.4,61.7,9.08,6.93,11.8,594.9,3.24,1927,11.9,0.23,57.1,7.9,82.1,49.6,68.8,13.5,0,59.5,8.1,102.7,6.98,22.9,3.72,24.15,3461.1,1.8,52.08,2245.18,1.17,124.97,1.6,0,31.7,10.08,69.97,69.94,3.28,596,0,7.08,1958,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:02,智界1111,3998,16.17,1.24,2.6,61.7,9.08,6.93,12.2,594.9,3.24,1927,12,0.23,57.1,7.9,82.2,49.6,68.8,13.5,0,60,8.3,102.8,6.99,22.9,3.76,24.16,3490.19,1.81,52.35,2266.4,1.18,125.1,1.6,0,31.7,10.08,69.97,69.94,3.28,596,0,7.1,1958,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:03,智界1111,4000,16.17,1.24,2.6,61.7,9.09,6.93,12.3,594.9,3.24,1927,12,0.23,57.1,7.9,82.2,49.6,68.8,13.5,0,60.1,8.4,103,6.99,22.9,3.76,24.16,3501.61,1.82,52.44,2270.18,1.18,125.25,1.61,0,31.7,10.08,69.98,69.94,3.3,596,0,7,1963,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:04,智界1111,3999,16.17,1.25,2.8,61.7,9.09,6.94,11.8,594.9,3.24,1927,12,0.23,57.1,7.9,82.2,49.6,68.9,13.6,0,60.4,8.1,103,6.99,22.9,3.76,24.18,3513.26,1.82,52.45,2280.1,1.18,124.76,1.61,0,31.7,10.07,69.97,69.94,3.2,596,0,7.08,1906,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:05,智界1111,3999,16.17,1.25,2.8,61.7,9.09,6.94,11.8,594.9,3.24,1927,12,0.23,57.1,7.9,82.3,49.6,68.9,13.6,0,60.5,8.1,103.3,6.99,23.1,3.56,24.18,3530.55,1.83,52.63,2287.66,1.19,125.17,1.62,0,31.8,10.07,69.97,69.94,3.3,596,0,6.9,1971,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:06,智界1111,4008,16.17,1.26,3,61.7,9.08,6.94,11.7,594.9,3.27,1945,12,0.23,57.1,7.9,82.3,49.6,68.9,13.6,0,60.9,8.2,103.5,6.99,23.1,3.56,24.2,3557.67,1.83,52.33,2305.18,1.19,124.79,1.63,0,31.8,10.08,69.94,69.94,3.22,596,0,6.88,1900,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:07,智界1111,4001,16.17,1.26,3,61.7,9.08,6.94,11.7,594.9,3.21,1909,12,0.23,57.1,7.9,82.3,49.5,69,13.6,0,61.2,8.1,103.6,7,23.1,3.61,24.2,3577.11,1.87,53.58,2316.54,1.21,125.62,1.63,0,31.8,10.1,69.94,69.94,3.24,596,0,7.02,2071,38,70,70,0,0,0,33,2026-5-7 17:43 +2026-5-7,17:43:08,智界1111,3998,16.17,1.27,3.2,61.7,9.1,6.94,11.6,594.9,3.22,1915,12,0.23,57.1,7.9,82.4,49.5,69,13.6,0,61.3,8.1,103.8,6.99,23.1,3.56,24.22,3586.75,1.88,53.5,2322.73,1.22,124.99,1.64,0,31.8,10.11,69.97,69.94,3.18,596,0,6.98,1907,38,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:09,智界1111,3998,16.17,1.27,3.3,61.7,9.1,6.94,12.1,594.9,3.22,1915,12,0.23,57.1,7.9,82.4,49.5,69,13.7,0,61.4,8.6,104,7,23.1,3.61,24.32,3596.42,1.88,53.44,2327.94,1.22,125.25,1.66,0,31.8,10.13,69.96,69.94,3.2,595,0,6.98,1872,38,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:10,智界1111,3999,16.17,1.28,3.5,61.7,9.1,6.94,12.5,594.9,3.22,1915,12,0.23,57.1,7.9,82.5,49.5,69.1,13.7,0,61.6,8.8,104.1,7,23.1,3.61,24.34,3610.05,1.89,53.46,2337.95,1.22,124.71,1.67,0,31.8,10.13,69.96,69.94,3.3,596,0,7.04,1972,38,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:11,智界1111,3998,16.17,1.28,3.5,61.7,9.1,6.94,12.1,594.9,3.23,1921,12,0.23,57.1,7.9,82.5,49.5,69.1,13.8,0,62,8.4,104.3,6.99,23.1,3.56,24.34,3637.33,1.89,53.64,2353.13,1.22,125.55,1.67,0,31.7,10.14,69.96,69.94,3.24,596,0,6.86,1991,38,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:12,智界1111,3998,16.17,1.29,3.7,61.7,9.1,6.94,11.5,594.9,3.22,1915,12,0.23,57.1,7.9,82.6,49.5,69.1,13.8,0,62.4,8.1,104.4,6.99,23.1,3.56,24.36,3662.73,1.91,53.99,2370.77,1.24,125.45,1.68,0,31.7,10.15,69.96,69.94,3.32,596,0,7.02,1917,38,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:13,智界1111,3998,16.17,1.29,3.7,61.7,9.1,6.94,11.7,594.9,3.22,1915,12,0.23,57.1,7.9,82.6,49.5,69.1,13.8,0,62.9,8.4,104.6,7,23.1,3.61,24.36,3696,1.93,54.42,2389.77,1.25,126.46,1.68,0,31.8,10.15,69.97,69.94,3.32,596,0,7.02,1978,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:14,智界1111,3998,16.18,1.3,3.9,61.7,9.11,6.95,11.7,594.9,3.22,1915,12,0.23,57.1,7.9,82.7,49.5,69.2,13.8,0,63.3,8.4,104.8,7,23.1,3.61,24.38,3722.49,1.94,54.62,2406.75,1.26,126.35,1.69,0,31.8,10.15,69.97,69.94,3.26,596,0,6.86,1833,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:15,智界1111,4000,16.18,1.3,3.9,61.7,9.11,6.96,11.7,594.9,3.23,1921,12,0.23,57.1,7.9,82.7,49.5,69.2,13.9,0,63.5,8.5,104.9,7.01,23.1,3.66,24.38,3736.23,1.94,54.62,2414.36,1.26,126.68,1.69,0,31.8,10.15,69.98,69.93,3.34,596,0,6.84,1943,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:16,智界1111,3999,16.18,1.31,4.1,61.7,9.11,6.96,11.8,594.9,3.22,1915,12,0.23,57.1,7.9,82.8,49.5,69.2,13.9,0,63.9,8.7,105.1,7.02,23.1,3.71,24.4,3763.74,1.97,54.98,2432.11,1.27,126.61,1.69,0,31.8,10.16,69.97,69.93,3.3,596,0,6.8,1984,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:17,智界1111,3999,16.18,1.31,4.1,61.7,9.12,6.97,11.7,594.9,3.23,1921,12,0.23,57.1,7.8,82.8,49.5,69.2,13.9,0,64.3,8.5,105.2,7.02,23,3.81,24.4,3789.3,1.97,55.15,2447.33,1.27,127.4,1.71,0,31.7,10.16,69.97,69.92,3.26,596,0,6.92,1917,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:18,智界1111,3999,16.17,1.32,4.2,61.7,9.12,6.97,11.6,594.9,3.24,1927,12,0.23,57.1,7.8,82.9,49.5,69.3,13.9,0,64.4,8.5,105.3,7.02,23,3.81,24.33,3798.13,1.97,54.86,2452.93,1.27,126.65,1.71,0,31.7,10.14,69.96,69.93,3.28,596,0,7.1,1890,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:19,智界1111,3998,16.17,1.33,4.4,61.7,9.12,6.97,11.8,594.9,3.26,1939,12,0.23,57.1,7.8,83,49.5,69.3,14,0,64.9,8.7,105.5,7.03,23,3.86,24.35,3831.66,1.98,54.79,2474.55,1.28,126.77,1.72,0,31.7,10.14,69.96,69.93,3.28,596,0,6.96,2015,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:20,智界1111,3999,16.14,1.34,4.4,61.7,9.12,6.97,11.7,594.9,3.27,1945,12,0.23,57.1,7.8,83,49.5,69.3,14,0,65.1,8.6,105.6,7.03,23,3.86,24.18,3848.36,1.98,54.54,2483.95,1.28,126.14,1.72,0,31.7,10.14,69.96,69.92,3.3,596,0,7.14,1927,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:21,智界1111,3999,16.14,1.34,4.5,61.7,9.12,6.98,11.7,594.9,3.27,1945,12,0.23,57,7.8,83.1,49.5,69.3,14,0,65.3,8.6,105.7,7.03,23,3.86,24.28,3862.2,1.99,54.73,2493.09,1.28,126.58,1.73,0,31.7,10.12,69.96,69.92,3.36,596,0,7.18,1998,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:22,智界1111,3999,16.12,1.35,4.6,61.7,9.11,6.98,11.6,594.9,3.28,1951,12,0.23,57,7.8,83.1,49.4,69.3,14,0,65.5,8.6,105.8,7.03,23,3.86,24.21,3877.99,1.99,54.52,2503.3,1.28,126.05,1.72,0,31.7,10.12,69.93,69.92,3.24,596,0,7.18,1936,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:23,智界1111,3999,16.12,1.36,4.6,61.6,9.11,6.98,11.4,594.9,3.27,1945,12,0.23,57,7.8,83.2,49.4,69.3,14.1,0,66,8.5,106,7.03,22.9,3.96,24.04,3911.68,2.01,54.9,2521.97,1.3,126.04,1.73,0,31.6,10.13,69.94,69.93,3.36,596,0,6.94,2005,39,70,70,0,0,0,34,2026-5-7 17:43 +2026-5-7,17:43:24,智界1111,3997,16.11,1.36,4.8,61.6,9.11,6.98,11.1,594.9,3.27,1945,12,0.23,57,7.8,83.3,49.4,69.3,14.1,0,66.1,8.3,106.1,7.03,22.9,3.96,24.24,3920.63,2.02,55.02,2529.6,1.3,126.4,1.74,0,31.6,10.14,69.94,69.93,3.3,596,0,6.94,1966,39,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:25,智界1111,4000,16.11,1.37,4.8,61.6,9.11,6.97,11.2,594.9,3.27,1945,12,0.23,57,7.8,83.3,49.4,69.4,14.1,0,66.3,8.4,106.2,7.03,22.9,3.96,24.07,3934.54,2.02,54.98,2536.82,1.3,125.72,1.75,0,31.6,10.16,69.95,69.93,3.32,596,0,7.18,1974,39,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:26,智界1111,3999,16.11,1.37,5,61.6,9.11,6.98,11.8,594.9,3.28,1951,12,0.23,57,7.8,83.4,49.4,69.4,14.2,0,66.5,8.7,106.3,7.03,22.9,3.96,24.27,3948.47,2.03,55.19,2547.55,1.31,126.24,1.75,0,31.6,10.16,69.95,69.93,3.3,596,0,7,1986,39,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:27,智界1111,4000,16.11,1.38,5.1,61.6,9.11,6.98,11.9,594.9,3.28,1951,11.9,0.23,57,7.8,83.4,49.4,69.4,14.2,0,66.8,9,106.4,7.03,22.9,3.96,24.2,3968.35,2.03,55.09,2560.15,1.31,125.87,1.76,0,31.6,10.17,69.95,69.92,3.12,596,0,6.96,2024,39,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:28,智界1111,3999,16.1,1.38,5.2,61.6,9.12,6.98,11.2,594.9,3.28,1951,11.9,0.23,57,7.8,83.5,49.4,69.4,14.2,0,67.1,8.7,106.5,7.03,22.9,3.96,24.3,3989.24,2.04,55.35,2573.96,1.32,126.52,1.75,0,31.6,10.18,69.95,69.92,3.42,596,0,7.2,1952,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:29,智界1111,4000,16.1,1.39,5.2,61.6,9.11,6.98,11.1,594.9,3.28,1951,12,0.23,57,7.8,83.5,49.4,69.4,14.2,0,67.7,8.5,106.6,7.03,23,3.86,24.13,4007.07,2.05,55.39,2585.03,1.32,126.11,1.77,0,31.7,10.18,69.95,69.92,3.26,596,0,7.26,1990,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:30,智界1111,4000,16.09,1.39,5.2,61.6,9.11,6.99,11.1,594.9,3.29,1957,12,0.23,57,7.8,83.6,49.4,69.4,14.3,0,67.9,8.5,106.7,7.03,23,3.86,24.13,4041.01,2.06,55.63,2604.21,1.33,127.07,1.77,0,31.7,10.19,69.95,69.92,3.34,596,0,7.18,1986,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:31,智界1111,3999,16.09,1.4,5.4,61.5,9.11,6.98,11.2,594.9,3.29,1957,12,0.23,57,7.8,83.6,49.4,69.4,14.3,0,68.1,8.6,106.8,7.03,22.9,3.96,24.16,4056.02,2.07,55.63,2615.36,1.34,126.61,1.78,0,31.7,10.19,69.95,69.91,3.52,596,0,7.14,1950,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:32,智界1111,3999,16.08,1.4,5.4,61.5,9.11,6.98,11.2,594.9,3.31,1969,12,0.23,57,7.8,83.7,49.4,69.4,14.3,0,68.1,8.6,106.8,7.02,22.9,3.91,24.16,4057.01,2.06,55.27,2616.12,1.33,126.61,1.78,0,31.7,10.21,69.94,69.92,3.4,596,0,7.06,2021,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:33,智界1111,3999,16.07,1.41,5.6,61.5,9.12,6.98,11,594.9,3.32,1975,12,0.23,57,7.8,83.7,49.4,69.4,14.3,0,68.4,8.4,106.8,7.02,22.9,3.91,24.19,4069.93,2.07,55.27,2627.3,1.33,126.15,1.79,0,31.7,10.15,69.94,69.92,3.36,596,0,7.22,2002,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:34,智界1111,3999,16.07,1.42,5.6,61.5,9.11,6.98,11,594.9,3.32,1975,12,0.23,57,7.8,83.8,49.4,69.4,14.4,0,68.6,8.6,107,7.02,22.9,3.91,24.03,4092.05,2.07,55.14,2638.4,1.34,125.77,1.79,0,31.7,10.15,69.93,69.91,3.3,596,0,7.2,1968,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:35,智界1111,4000,16.06,1.42,5.8,61.5,9.11,6.99,11.2,594.9,3.33,1981,12,0.23,57,7.8,83.9,49.4,69.5,14.4,0,68.9,8.6,107.1,7.02,23,3.81,258.99,4113.09,2.08,55.25,2653.91,1.34,126.4,1.79,0,31.8,10.13,69.93,69.91,3.44,596,0,7.04,2053,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:36,智界1111,3999,16.06,1.43,5.8,61.5,9.1,6.99,11.1,594.9,3.33,1981,12,0.23,57,7.8,83.9,49.4,69.5,14.4,0,69,8.6,107.1,7.03,23,3.86,24.06,4119.07,2.08,55.13,2657.32,1.34,125.72,1.8,0,31.8,10.11,69.95,69.92,3.34,596,0,7.16,1994,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:37,智界1111,3999,16.05,1.43,6,61.5,9.09,6.99,10.9,594.9,3.32,1975,12,0.23,57,7.8,84,49.4,69.5,14.4,0,69.3,8.4,107.2,7.02,23,3.81,24.26,4140.13,2.1,55.57,2672.87,1.35,126.34,1.81,0,31.8,10.1,69.95,69.92,3.22,596,0,7.18,1919,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:38,智界1111,3999,16.05,1.44,6,61.5,9.09,6.98,10.7,594.9,3.32,1975,12,0.23,57,7.8,84,49.4,69.5,14.5,0,69.2,8.2,107.3,7.02,23,3.81,24.1,4136.29,2.09,55.29,2668.57,1.35,125.25,1.81,0,31.8,10.1,69.96,69.91,3.48,596,0,7.3,2065,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:39,智界1111,3999,16.05,1.44,6.1,61.5,9.08,6.98,10.8,594.9,3.32,1975,12,0.23,57,7.8,84.1,49.3,69.5,14.5,0,69.4,8.5,107.3,7.01,23,3.81,24.2,4148.25,2.1,55.47,2677.89,1.36,125.66,1.82,0,31.8,10.1,69.97,69.9,3.18,596,0,7.08,2012,40,70,70,0,0,0,35,2026-5-7 17:43 +2026-5-7,17:43:40,智界1111,3999,16.06,1.44,6.2,61.5,9.08,6.97,10.7,594.9,3.32,1975,12,0.23,57,7.8,84.1,49.4,69.5,14.5,0,69.4,8.4,107.4,7.02,23,3.81,24.2,4149.38,2.1,188.48,-365.77,-0.19,125.66,1.82,0,31.8,10.1,69.97,69.9,3.42,596,0,7.12,2014,40,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:41,智界1111,3999,16.06,1.45,6.3,61.5,9.08,6.97,10.9,594.9,3.33,1981,12,0.23,57,7.8,84.1,49.3,69.5,14.6,0,69.4,8.5,107.4,7.01,23,3.76,24.23,4149.37,2.09,55.17,2679.87,1.35,124.86,1.82,0,31.8,10.1,69.96,69.91,3.38,596,0,7.2,1977,40,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:42,智界1111,3998,16.06,1.45,6.4,61.5,9.1,6.97,11,594.9,3.32,1975,12,0.23,57,7.8,84.2,49.3,69.5,14.6,0,69.6,8.6,107.5,7,23,3.71,24.23,4163.47,2.11,55.5,2687.58,1.36,125.25,1.83,0,31.8,10.1,69.96,69.91,3.38,596,0,7.28,1984,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:43,智界1111,3999,16.06,1.46,6.4,61.5,9.11,6.97,10.8,594.9,3.33,1981,12,0.23,57,7.8,84.2,49.3,69.5,14.6,0,69.9,8.5,107.6,7.01,23,3.76,24.17,4183.59,2.11,55.39,2700.35,1.36,124.92,1.83,0,31.8,10.1,69.96,69.92,3.44,596,0,7.28,1982,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:44,智界1111,3999,16.05,1.46,6.6,61.5,9.11,6.97,11.7,594.9,3.35,1992,12,0.23,57,7.8,84.3,49.3,69.6,14.6,0,70,9,107.6,7.01,23,3.76,24.37,4190.6,2.1,55.2,2708.26,1.36,125.2,1.84,0,31.8,10.1,69.95,69.92,3.36,596,0,7.26,2007,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:45,智界1111,3999,16.05,1.47,6.6,61.5,9.1,6.97,11.8,594.9,3.35,1992,12,0.23,57,7.8,84.3,49.3,69.6,14.7,0,70.7,9.4,107.7,7.02,23,3.81,22.82,4234.7,2.13,55.56,2734.9,1.37,125.55,1.84,0,31.8,10.1,69.95,69.91,3.18,595,0,7.26,1897,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:46,智界1111,3998,16.02,1.47,6.7,61.4,9.09,6.97,11.3,594.9,3.35,1992,12,0.23,57,7.8,84.3,49.3,69.6,14.7,0,71.2,9.3,107.8,7.02,22.9,3.91,24.31,4269.98,2.14,55.93,2758.32,1.38,126.53,1.85,0,31.8,10.1,69.96,69.92,3.3,595,0,7.16,1971,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:47,智界1111,3999,16.02,1.47,6.7,61.4,9.09,6.97,11.1,594.9,3.35,1992,12,0.23,57,7.8,84.4,49.3,69.5,14.7,0,71.3,8.9,107.8,7.02,23,3.81,24.31,4275.98,2.15,56.01,2762.19,1.39,126.67,1.86,0,31.8,10.08,69.96,69.92,3.38,596,0,7.12,2014,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:48,智界1111,3998,16,1.48,6.9,61.4,9.09,6.98,10.9,594.9,3.35,1992,12,0.23,57,7.8,84.4,49.3,69.5,14.7,0,71.3,8.7,107.9,7.02,23,3.81,24.35,4280.28,2.15,55.83,2766.67,1.39,125.92,1.87,0,31.8,10.04,69.94,69.92,3.34,596,0,7.28,1993,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:49,智界1111,4000,16,1.48,6.9,61.4,9.09,6.97,10.7,594.9,3.34,1986,12,0.23,57,7.8,84.5,49.3,69.5,14.7,0,71.2,8.4,107.9,7.02,23,3.81,24.35,4274.27,2.15,55.92,2762.79,1.39,125.68,1.87,0,31.8,10.02,69.94,69.91,3.44,596,0,7.3,2053,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:50,智界1111,3999,15.98,1.49,7.1,61.4,9.09,6.97,10.6,594.9,3.34,1986,12,0.23,57,7.8,84.5,49.3,69.5,14.7,0,71,8.5,108,7.02,23,3.81,24.39,4266.54,2.15,55.58,2759.5,1.39,124.58,1.86,0,31.8,10.02,69.94,69.91,3.38,596,0,7.34,2010,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:51,智界1111,3998,15.98,1.49,7.1,61.4,9.09,6.97,10.5,594.9,3.34,1986,12,0.23,57,7.8,84.5,49.3,69.5,14.8,0,71.3,8.4,108,7.02,23,3.81,24.39,4284.57,2.16,55.82,2771.16,1.4,125.14,1.88,0,31.8,10.01,69.96,69.92,3.36,596,0,7.1,2003,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:52,智界1111,3999,15.97,1.5,7.2,61.4,9.09,6.97,10.7,594.9,3.35,1992,11.9,0.23,57,7.8,84.6,49.3,69.5,14.8,0,71.5,8.6,108,7.01,23,3.76,24.33,4297.63,2.16,55.62,2780.94,1.4,124.64,1.88,0,31.8,9.96,69.96,69.92,3.46,596,0,7.06,2068,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:53,智界1111,3999,15.97,1.5,7.2,61.4,9.09,6.98,10.9,594.9,3.35,1992,11.9,0.23,57,7.8,84.6,49.3,69.5,14.8,0,71.6,8.8,108.1,7.01,23,3.76,24.33,4305.85,2.16,55.7,2784.83,1.4,124.81,1.88,0,31.9,9.95,69.97,69.92,3.44,596,0,7.12,2050,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:54,智界1111,3998,15.97,1.51,7.4,61.3,9.09,6.98,10.8,594.6,3.35,1992,12,0.23,56.9,7.8,84.6,49.3,69.5,14.9,0,71.8,8.8,108.1,7.02,23,3.81,24.37,4317.89,2.17,55.7,2795.51,1.4,124.43,1.88,0,31.9,9.95,69.97,69.92,3.44,596,0,7.22,1942,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:55,智界1111,4000,15.96,1.52,7.5,61.3,9.08,6.98,10.8,594.6,3.38,2009,12,0.23,56.9,7.8,84.7,49.3,69.5,14.9,0,71.8,8.9,108.2,7.02,23,3.81,24.32,4321.16,2.15,55.05,2797.54,1.39,123.57,1.88,0,31.9,9.95,69.97,69.9,3.3,596,0,7.28,1974,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:56,智界1111,4000,15.96,1.52,7.5,61.3,9.08,6.98,10.7,594.6,3.37,2003,12,0.23,56.9,7.8,84.7,49.3,69.5,14.9,0,72.2,8.6,108.2,7.03,23,3.86,24.32,4345.24,2.17,55.52,2813.13,1.4,124.26,1.88,0,31.9,9.94,69.94,69.9,3.4,596,0,7.28,2032,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:57,智界1111,3998,15.96,1.53,7.6,61.3,9.07,6.98,10.6,594.6,3.38,2009,12,0.23,56.9,7.8,84.7,49.2,69.5,14.9,0,72.3,8.5,108.3,7.02,23,3.81,24.26,4353.48,2.17,55.27,2818.25,1.4,123.69,1.9,0,31.9,9.94,69.94,69.9,3.52,596,0,7.3,2101,41,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:58,智界1111,3999,15.96,1.53,7.6,61.3,9.07,6.97,10.5,594.9,3.38,2010,12,0.23,56.9,7.8,84.7,49.2,69.5,15,0,72.5,8.4,108.3,7.02,23,3.81,24.26,4365.53,2.17,55.39,2826.04,1.41,124.01,1.9,0,31.9,9.95,69.95,69.9,3.4,596,0,7.14,2027,42,70,70,0,0,0,36,2026-5-7 17:43 +2026-5-7,17:43:59,智界1111,4000,15.97,1.53,7.8,61.3,9.08,6.97,10.1,594.9,3.39,2016,11.9,0.23,56.9,7.8,84.8,49.2,69.5,15,0,72.5,8.2,108.4,7.02,22.9,3.91,24.46,4372.73,2.17,55.37,2832.5,1.41,124.25,1.9,0,31.8,9.95,69.95,69.9,3.44,596,0,7.1,2055,42,70,70,0,0,0,37,2026-5-7 17:43 +2026-5-7,17:44:00,智界1111,3999,15.97,1.54,7.8,61.3,9.08,6.97,10.3,594.6,3.39,2015,11.9,0.23,56.9,7.8,84.8,49.2,69.5,15,0,72.6,8.4,108.5,7.02,22.9,3.91,24.31,4374.97,2.17,55.2,2832.04,1.41,123.44,1.9,0,31.8,9.94,69.97,69.91,3.38,596,0,7.14,2013,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:01,智界1111,3998,15.97,1.54,7.9,61.3,9.08,6.97,10.7,594.9,3.38,2010,11.9,0.23,56.9,7.8,84.8,49.2,69.4,15,0,73.1,8.8,108.5,7.02,22.9,3.91,24.41,4387.02,2.18,55.52,2841.54,1.41,123.86,1.91,0,31.8,9.93,69.97,69.91,3.26,596,0,7.14,1949,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:02,智界1111,3999,15.97,1.55,7.9,61.3,9.08,6.97,10.7,594.6,3.38,2009,11.9,0.23,56.9,7.8,84.8,49.2,69.4,15.1,0,73.4,8.8,108.6,7.02,22.9,3.91,24.25,4425.45,2.2,55.81,2864.5,1.43,124.01,1.91,0,31.8,9.93,69.95,69.89,3.48,596,0,7.36,2074,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:03,智界1111,4000,15.95,1.55,8.1,61.3,9.08,6.97,10.8,594.9,3.38,2010,11.9,0.23,56.9,7.8,84.9,49.2,69.4,15.1,0,73.6,8.9,108.6,7.02,22.9,3.91,24.45,4433.63,2.21,55.88,2873.51,1.43,124.25,1.92,0,31.8,9.94,69.96,69.89,3.4,596,0,7.4,2022,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:04,智界1111,3999,15.95,1.55,8.1,61.3,9.08,6.98,10.9,594.9,3.37,2004,11.9,0.23,56.9,7.8,84.9,49.2,69.4,15.1,0,73.7,9.1,108.7,7.02,22.9,3.91,24.45,4447.97,2.22,56.19,2881.32,1.44,124.62,1.92,0,31.8,9.92,69.96,69.9,3.38,596,0,7.4,2014,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:05,智界1111,4000,15.93,1.56,8.3,61.3,9.06,6.98,10.7,594.9,3.38,2010,12,0.23,56.9,7.8,84.9,49.2,69.3,15.1,0,73.7,9.1,108.7,7.03,22.9,3.96,24.5,4450.14,2.21,55.85,2885.99,1.44,123.86,1.92,0,31.8,9.94,69.99,69.9,3.2,596,0,7.38,1907,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:06,智界1111,3999,15.93,1.56,8.3,61.3,9.06,6.98,10.5,594.9,3.38,2010,12,0.23,56.9,7.8,84.9,49.2,69.3,15.2,0,73.9,8.7,108.8,7.03,22.9,3.96,24.5,4464.5,2.22,56,2893.82,1.44,124.22,1.94,0,31.7,9.94,69.99,69.9,3.4,596,0,7.36,2021,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:07,智界1111,3999,15.92,1.56,8.4,61.3,9.06,6.98,10,594.6,3.4,2021,12,0.23,56.9,7.8,84.9,49.2,69.3,15.2,0,74,8.5,108.8,7.02,22.9,3.91,24.6,4471.61,2.21,55.78,2900.3,1.44,124.44,1.94,0,31.7,9.96,69.94,69.9,3.46,596,0,7.24,2060,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:08,智界1111,4000,15.92,1.57,8.4,61.3,9.05,6.97,10.1,594.9,3.39,2016,12,0.23,56.9,7.8,85,49.2,69.3,15.2,0,74.1,8.4,108.8,7.02,22.9,3.91,24.44,5233.33,2.6,-20.13,3657.33,1.81,123.75,1.94,0,31.7,10.01,69.94,69.9,3.48,596,0,7.32,2079,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:09,智界1111,4000,15.92,1.57,8.5,61.3,9.04,6.97,9.9,594.9,3.4,2022,12,0.23,56.9,7.8,85,49.2,69.2,15.3,0,74.1,8.2,108.9,7.02,22.9,3.91,24.54,4479.94,2.22,60.26,2835.78,1.4,123.8,1.95,0,31.7,10.01,69.95,69.9,3.42,596,0,7.44,2043,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:10,智界1111,4000,15.92,1.58,8.5,61.3,9.05,6.97,10,594.9,3.4,2022,12,0.23,56.9,7.8,85,49.2,69.2,15.3,0,74.2,8.4,108.9,7.02,22.9,3.91,24.39,4485.99,2.22,55.55,2908.94,1.44,123.15,1.95,0,31.7,10.01,69.95,69.89,3.46,595,0,7.44,2067,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:11,智界1111,3999,15.92,1.59,8.7,61.3,9.05,6.97,10.7,594.9,3.4,2022,12,0.23,56.9,7.8,85,49.2,69.2,15.3,0,74.2,8.7,109,7.01,22.9,3.86,24.44,4488.27,2.22,55.41,2911.93,1.44,122.48,1.96,0,31.7,10.01,69.95,69.89,3.5,595,0,7.36,2088,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:12,智界1111,4000,15.92,1.59,8.7,61.3,9.06,6.97,10.5,594.6,3.42,2033,12,0.23,56.9,7.8,85,49.2,69.2,15.3,0,74.3,8.8,109,7.01,23,3.76,24.44,4494.32,2.21,55.19,2915.86,1.43,122.61,1.96,0,31.8,10.07,69.96,69.9,3.28,596,0,7.26,1960,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:13,智界1111,4000,15.92,1.6,8.9,61.3,9.07,6.97,10.5,594.9,3.4,2022,12,0.23,56.9,7.8,85,49.2,69.2,15.3,0,74.6,8.8,109.1,7.01,22.9,3.86,24.39,4514.77,2.23,55.57,2930.65,1.45,122.4,1.97,0,31.8,10.08,69.96,69.9,3.56,596,0,7.36,2118,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:14,智界1111,3999,15.92,1.6,8.9,61.3,9.07,6.96,10.5,594.6,3.4,2021,12,0.23,56.9,7.8,85.1,49.2,69.1,15.4,0,74.6,8.8,109.1,7.01,22.9,3.86,148.47,4514.77,2.23,55.59,2930.88,1.45,122.43,1.97,0,31.8,10.08,69.96,69.89,3.44,596,0,7.28,2048,42,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:15,智界1111,4002,15.92,1.61,9,61.3,9.08,6.96,10.6,594.6,3.4,2021,12,0.23,56.9,7.8,85.1,49.2,69.1,15.4,0,74.9,9,109.2,7.01,22.9,3.86,24.44,4532.93,2.24,55.66,2943.72,1.46,122.09,1.97,0,31.8,10.07,69.94,69.89,3.4,596,0,7.4,1961,43,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:16,智界1111,4001,15.92,1.61,9,61.3,9.07,6.96,10.8,594.6,3.38,2009,12,0.23,56.9,7.8,85.1,49.2,69.1,15.4,0,75.2,9.1,109.2,7.02,22.9,3.91,24.44,4553.41,2.27,56.21,2955.52,1.47,122.61,1.97,0,31.7,10.12,69.94,69.9,3.42,596,0,7.2,2039,43,70,70,0,0,0,37,2026-5-7 17:44 +2026-5-7,17:44:17,智界1111,4000,15.92,1.62,9.2,61.3,9.06,6.96,11,594.9,3.38,2010,12,0.23,56.9,7.8,85.1,49.2,69,15.5,0,75.7,9.3,109.2,7.01,22.9,3.91,24.49,4565.52,2.27,56.2,2966.44,1.48,122.27,1.98,0,31.7,10.1,69.96,69.9,3.46,596,0,7.16,2062,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:18,智界1111,3999,15.92,1.62,9.2,61.3,9.06,6.96,10.7,594.6,3.39,2015,12,0.23,56.9,7.8,85.2,49.1,69,15.5,0,75.7,8.9,109.3,7.01,22.9,3.86,24.49,4586.02,2.28,56.28,2978.24,1.48,122.79,1.99,0,31.8,10.1,69.96,69.89,3.42,596,0,7.42,2034,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:19,智界1111,4000,15.92,1.63,9.3,61.4,9.06,6.96,10.3,594.6,3.4,2021,12,0.23,56.9,7.8,85.2,49.1,69,15.5,0,76,8.7,109.3,7.01,22.9,3.86,24.44,4604.19,2.28,56.17,2991.34,1.48,122.51,1.99,0,31.8,10.08,69.96,69.89,3.46,596,0,7.42,1964,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:20,智界1111,4000,15.93,1.64,9.4,61.4,9.06,6.96,10.2,594.9,3.4,2022,12,0.23,56.9,7.8,85.2,49.1,69,15.5,0,75.9,8.6,109.4,7.01,22.9,3.86,24.29,4600.47,2.28,55.88,2986.93,1.48,121.6,1.99,0,31.8,10.1,69.95,69.89,3.36,596,0,7.32,2062,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:21,智界1111,4000,15.93,1.64,9.5,61.4,9.07,6.96,10.7,594.9,3.42,2034,12,0.23,56.9,7.8,85.2,49.1,68.9,15.6,0,76,9.2,109.4,7.02,22.9,3.91,24.49,4605.43,2.26,55.69,2993.58,1.47,121.83,2,0,31.8,10.1,69.96,69.89,3.46,596,0,7.3,2007,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:22,智界1111,3998,15.94,1.65,9.5,61.4,9.07,6.97,10.9,594.9,3.42,2034,12,0.23,56.9,7.8,85.2,49.1,68.9,15.6,0,76.1,9.3,109.4,7.01,22.9,3.86,24.34,4610.37,2.27,55.59,2996.16,1.47,121.28,2,0,31.8,10.11,69.94,69.89,3.48,596,0,7.42,2073,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:23,智界1111,3999,15.94,1.65,9.6,61.5,9.08,6.97,10.5,594.9,3.44,2046,12,0.23,56.9,7.8,85.2,49.1,68.9,15.6,0,76.2,8.9,109.5,7.02,22.8,4.01,24.44,4618.79,2.26,55.37,3001.9,1.47,121.46,2,0,31.8,10.11,69.94,69.89,3.4,595,0,7.52,2037,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:24,智界1111,4001,15.95,1.66,9.6,61.5,9.08,6.97,10.4,594.9,3.44,2046,12,0.23,56.9,7.8,85.2,49.1,68.9,15.6,0,76.4,8.9,109.5,7.03,22.8,4.06,24.3,4629.8,2.26,55.34,3008.44,1.47,120.98,2,0,31.8,10.1,70,69.88,3.48,595,0,7.5,1979,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:25,智界1111,3999,15.95,1.66,9.8,61.5,9.09,6.98,10.2,594.9,3.43,2040,12,0.23,56.9,7.8,85.2,49.1,68.8,15.7,0,76.8,8.7,109.6,7.03,22.8,4.06,24.5,4647.98,2.28,55.77,3023.85,1.48,121.58,2.01,0,31.8,10.1,70,69.88,3.48,596,0,7.46,2053,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:26,智界1111,4000,15.95,1.66,9.8,61.5,9.1,6.98,10.3,594.6,3.42,2033,12,0.23,56.9,7.8,85.2,49.1,68.8,15.7,0,77,8.9,109.6,7.02,22.8,4.01,24.5,4668.53,2.3,56.18,3035.67,1.49,122.03,2.01,0,31.8,10.14,69.98,69.88,3.36,596,0,7.44,2087,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:27,智界1111,4001,15.95,1.67,9.9,61.6,9.1,6.99,10.3,594.6,3.42,2033,12,0.23,56.9,7.8,85.2,49.1,68.7,15.7,0,77.1,9,109.7,7.03,22.8,4.06,24.45,4676.98,2.3,56.1,3040.95,1.5,121.44,2.02,0,31.8,10.15,69.98,69.88,3.48,596,0,7.44,2030,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:28,智界1111,3999,15.95,1.67,9.9,61.6,9.1,6.99,10,594.9,3.4,2022,12,0.23,56.9,7.8,85.3,49.1,68.7,15.8,0,77.6,8.7,109.7,7.04,22.8,4.11,24.45,4707.32,2.33,56.77,3060.68,1.51,122.29,2.03,0,31.8,10.15,69.95,69.88,3.52,596,0,7.48,2128,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:29,智界1111,4000,15.93,1.67,10.1,61.6,9.08,6.99,10.2,594.9,3.43,2040,12,0.23,56.9,7.8,85.3,49.1,68.7,15.8,0,78,8.8,109.7,7.04,22.8,4.11,24.65,4733.87,2.34,57.08,3081.9,1.52,122.99,2.03,0,31.8,10.19,69.95,69.88,3.22,596,0,7.52,2097,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:30,智界1111,3999,15.93,1.67,10.1,61.6,9.08,6.99,10,594.9,3.43,2040,12,0.23,56.9,7.8,85.3,49.1,68.7,15.8,0,77.8,8.6,109.8,7.03,22.9,3.96,24.65,4724.12,2.32,56.43,3073.99,1.51,122.71,2.03,0,31.8,10.19,69.95,69.88,3.5,596,0,7.5,2072,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:31,智界1111,3999,15.92,1.68,10.2,61.7,9.09,6.99,9.7,594.6,3.43,2039,12,0.23,56.9,7.8,85.3,49.1,68.6,15.8,0,77.8,8.4,109.8,7.03,22.9,3.96,24.61,4725.26,2.32,56.28,3076.22,1.51,121.99,2.05,0,31.8,10.19,69.95,69.88,3.4,596,0,7.46,2033,43,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:32,智界1111,3998,15.92,1.68,10.3,61.7,9.09,6.99,10,594.9,3.43,2040,12,0.23,56.9,7.8,85.3,49.1,68.6,15.9,0,78,8.7,109.8,7.03,22.9,3.96,24.61,4737.41,2.32,56.4,3084.13,1.51,122.34,2.05,0,31.8,10.21,69.96,69.89,3.42,596,0,7.38,2040,44,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:33,智界1111,3999,15.93,1.68,10.4,61.7,9.09,6.98,9.6,594.9,3.44,2046,12,0.23,56.9,7.8,85.3,49.1,68.6,15.9,0,78.3,8.3,109.9,7.03,22.9,3.96,24.81,4754.48,2.32,56.51,3098.79,1.51,122.88,2.06,0,31.8,10.19,69.94,69.89,3.36,596,0,7.58,2007,44,70,70,0,0,0,38,2026-5-7 17:44 +2026-5-7,17:44:34,智界1111,3998,15.93,1.69,10.5,61.7,9.09,6.98,9.9,594.9,3.45,2052,12,0.23,56.9,7.8,85.3,49.1,68.6,15.9,0,78.6,8.7,109.9,7.03,22.9,3.96,24.66,4775.13,2.33,56.38,3110.17,1.52,122.62,2.06,0,31.8,10.2,69.94,69.89,3.5,596,0,7.56,2085,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:35,智界1111,3999,15.93,1.7,10.5,61.8,9.09,6.98,9.7,594.6,3.45,2051,11.9,0.23,56.9,7.8,85.3,49.1,68.5,15.9,0,79.4,8.4,109.9,7.03,23,3.86,24.62,4823.73,2.35,56.82,3143.2,1.53,123.12,2.07,0,31.8,10.2,69.94,69.89,3.52,596,0,7.36,2102,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:36,智界1111,3998,15.93,1.71,10.5,61.8,9.09,6.98,9.4,594.9,3.47,2064,11.9,0.23,56.9,7.8,85.4,49.1,68.5,16,0,79.6,8.3,110,7.03,23,3.86,24.47,4838.33,2.34,56.42,3150.62,1.53,122.71,2.07,0,31.8,10.19,69.96,69.88,3.52,596,0,7.5,2094,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:37,智界1111,3997,15.92,1.72,10.6,61.8,9.09,6.98,10,594.6,3.45,2051,11.9,0.23,56.9,7.8,85.4,49.1,68.4,16,0,80.2,8.9,110,7.03,23,3.91,24.43,4875.99,2.38,57.03,3176.68,1.55,122.96,2.07,0,31.8,10.19,69.96,69.88,3.46,596,0,7.54,2058,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:38,智界1111,4001,15.92,1.72,10.7,61.8,9.1,6.99,10,594.9,3.45,2052,11.9,0.23,56.9,7.8,85.4,49.1,68.4,16,0,80.1,8.9,110,7.04,23,3.91,24.53,4869.91,2.37,56.96,3174.61,1.55,122.74,2.07,0,31.8,10.16,69.96,69.89,3.54,596,0,7.48,2107,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:39,智界1111,4000,15.92,1.73,10.8,61.8,9.1,6.99,9.4,594.6,3.45,2051,11.9,0.23,56.9,7.8,85.4,49.1,68.4,16,0,80.2,8.3,110,7.04,23,3.91,24.49,4875.99,2.38,56.9,3179.97,1.55,122.23,2.07,0,31.8,10.14,69.96,69.89,3.48,596,0,7.5,2137,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:40,智界1111,3999,15.92,1.73,10.8,61.9,9.09,7,9.7,594.6,3.44,2045,12,0.23,56.9,7.8,85.4,49.1,68.4,16,0,80.5,8.6,110.1,7.05,23,3.96,24.49,4896.72,2.39,57.28,3191.87,1.56,122.72,2.07,0,31.8,10.12,69.93,69.88,3.4,596,0,7.36,2116,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:41,智界1111,3999,15.92,1.73,10.8,61.9,9.09,7,9.4,594.6,3.44,2045,12,0.23,56.9,7.8,85.4,49.1,68.4,16.1,0,80.8,8.4,110.1,7.05,23,3.96,24.49,4914.97,2.4,57.49,3203.77,1.57,123.18,2.07,0,31.8,10.13,69.93,69.88,3.5,596,0,7.36,2090,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:42,智界1111,3998,15.9,1.73,11,61.9,9.09,7.01,9.5,594.9,3.45,2052,12,0.23,56.9,7.8,85.4,49.1,68.3,16.1,0,80.8,8.6,110.1,7.06,22.9,4.1,24.69,4917.34,2.4,57.31,3209.43,1.56,123.31,2.07,0,31.7,10.13,69.93,69.88,3.42,596,0,7.36,2035,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:43,智界1111,3992,15.88,1.74,11,61.9,9.11,7,9.6,594.6,3.45,2051,12,0.23,56.9,7.8,85.4,49.1,68.3,16.2,0,80.9,8.6,110.1,7.06,22.9,4.1,24.55,4925.79,2.4,57.19,3214.74,1.57,122.9,2.09,0,31.7,10.14,69.94,69.88,3.6,596,0,7.68,2119,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:44,智界1111,3997,15.88,1.74,11.1,61.9,9.11,7,9.8,594.6,3.53,2099,12,0.23,56.9,7.8,85.4,49.1,68.3,16.2,0,81.3,8.9,110.2,7.07,22.9,4.15,24.65,4952.66,2.36,56.19,3232.57,1.54,123.41,2.09,0,31.7,10.11,69.94,69.88,3.44,596,0,7.6,2149,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:45,智界1111,4000,15.84,1.74,11.2,61.9,9.1,7.01,9.7,594.6,3.54,2105,12,0.23,56.9,7.8,85.4,49.1,68.2,16.2,0,81.5,8.9,110.2,7.06,22.9,4.1,24.75,4969.6,2.36,56.12,3246.15,1.54,123.67,2.09,0,31.7,10.1,69.95,69.88,3.56,595,0,7.54,2118,44,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:46,智界1111,4000,15.84,1.74,11.2,61.9,9.09,7.01,9.6,594.6,3.54,2105,12,0.23,56.9,7.8,85.4,49.1,68.2,16.3,0,81.6,8.6,110.2,7.06,22.9,4.1,24.75,4975.7,2.36,56.19,3250.14,1.54,123.82,2.1,0,31.7,10.11,69.95,69.88,3.6,595,0,7.7,2144,45,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:47,智界1111,4000,15.81,1.74,11.3,61.9,9.09,7.01,9,594.6,3.54,2105,12,0.23,56.9,7.8,85.4,49.1,68.2,16.3,0,81.7,8.1,110.3,7.06,22.9,4.1,24.85,4987.91,2.37,56.24,3258.85,1.55,124.02,2.11,0,31.7,10.11,69.94,69.89,3.54,595,0,7.74,2106,45,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:48,智界1111,3999,15.81,1.74,11.4,61.9,9.08,7.01,9,594.6,3.55,2111,12,0.23,56.9,7.8,85.4,49.1,68.2,16.3,0,81.7,8,110.3,7.06,23,4,24.95,4987.91,2.36,56.1,3260.78,1.54,124.11,2.11,0,31.8,10.09,69.94,69.89,3.62,595,0,7.74,2111,45,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:49,智界1111,3999,15.8,1.75,11.4,61.9,9.09,7,9.1,594.9,3.55,2111,11.9,0.23,56.9,7.8,85.5,49.1,68.1,16.3,0,81.9,8,110.3,7.05,23,3.96,24.81,4989.09,2.36,55.9,3261.2,1.54,123.36,2.12,0,31.8,10.09,69.94,69.89,3.5,595,0,7.66,2089,45,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:50,智界1111,4008,15.8,1.75,11.4,61.9,9.09,7,9.2,594.6,3.56,2116,11.9,0.23,56.9,7.8,85.5,49.1,68.1,16.3,0,82.2,8.4,110.3,7.05,23,3.96,24.81,5019.63,2.37,56.11,3281.15,1.55,123.84,2.12,0,31.8,10.08,69.94,69.89,3.56,595,0,7.56,2120,45,70,70,0,0,0,39,2026-5-7 17:44 +2026-5-7,17:44:51,智界1111,3999,15.79,1.75,11.6,62,9.1,7,9.2,594.9,3.49,2076,12,0.23,56.9,7.8,85.5,49.1,68.1,16.4,0,82.4,8.3,110.4,7.05,23,3.96,25.01,5035.59,2.43,57.37,3293.97,1.59,124.52,2.12,0,31.8,10.08,69.94,69.89,3.5,595,0,7.48,2115,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:52,智界1111,4001,15.79,1.76,11.6,62,9.09,7,9,594.6,3.49,2075,12,0.23,56.9,7.8,85.5,49.1,68.1,16.4,0,82.5,8.2,110.4,7.05,23,3.96,24.87,5041.7,2.43,57.28,3297.46,1.59,123.87,2.14,0,31.8,10.04,69.94,69.89,3.6,596,0,7.48,2149,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:53,智界1111,3998,15.79,1.76,11.7,62,9.09,7,9,594.9,3.48,2070,12,0.23,56.9,7.8,85.5,49.1,68.1,16.4,0,82.7,8.1,110.4,7.05,22.9,3.96,24.97,5053.92,2.44,76.65,2912.68,1.41,124.32,2.15,0,31.8,10.07,69.94,69.89,3.68,596,0,7.42,2119,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:54,智界1111,3999,15.8,1.76,11.8,62,9.09,7,8.8,594.6,3.49,2075,12,0.23,56.9,7.8,85.5,49.1,68.1,16.5,0,82.9,8,110.4,7.05,22.9,4.06,25.07,5064.93,2.44,57.63,3316.42,1.6,124.64,2.15,0,31.7,10.07,69.96,69.89,3.6,596,0,7.64,2151,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:55,智界1111,3999,15.8,1.77,11.9,62,9.08,7,8.9,594.6,3.5,2081,12,0.23,56.9,7.8,85.5,49.1,68.1,16.5,0,83.4,8.2,110.5,7.05,22.9,4.06,25.03,5098.05,2.45,57.65,3337.88,1.6,124.7,2.16,0,31.7,10.06,69.95,69.89,3.66,596,0,7.56,2090,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:56,智界1111,3999,15.82,1.78,11.9,62,9.08,7,9.3,594.6,3.51,2087,12,0.23,56.9,7.8,85.5,49.1,68,16.5,0,83.6,8.6,110.5,7.06,22.9,4.1,24.89,5107.83,2.45,57.47,3343.47,1.6,124.26,2.15,0,31.7,10.06,69.95,69.89,3.56,596,0,7.44,2119,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:57,智界1111,4000,15.82,1.79,12,62.1,9.08,7,9.1,594.6,3.51,2087,12,0.23,56.9,7.8,85.5,49.1,68,16.5,0,83.6,8.4,110.5,7.05,22.9,4.06,24.85,5107.82,2.45,57.31,3344.92,1.6,123.55,2.15,0,31.7,10.06,69.94,69.89,3.68,596,0,7.56,2137,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:58,智界1111,3999,15.85,1.8,12.1,62.1,9.09,7,9,594.6,3.53,2099,12,0.23,56.9,7.8,85.5,49.1,68,16.6,0,83.7,8.1,110.6,7.05,22.9,4.06,24.81,5112.84,2.44,56.95,3347.52,1.59,123.06,2.15,0,31.7,10.07,69.94,69.89,3.54,596,0,7.66,2112,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:44:59,智界1111,3999,15.85,1.81,12.1,62.1,9.1,7,8.8,594.6,3.54,2105,12,0.23,56.9,7.8,85.5,49.1,68,16.6,0,83.8,8.1,110.6,7.06,22.9,4.1,24.68,5118.96,2.43,56.68,3351.02,1.59,122.5,2.15,0,31.7,10.07,69.95,69.89,3.5,596,0,7.66,2091,45,70,70,0,0,0,40,2026-5-7 17:44 +2026-5-7,17:45:00,智界1111,4000,15.87,1.81,12.2,62.2,9.1,7.01,8.8,594.9,3.53,2099,12,0.23,56.9,7.8,85.5,49.1,68,16.6,0,84.1,8.2,110.6,7.07,22.9,4.15,24.78,5134.84,2.45,57.1,3363.1,1.6,122.96,2.16,0,31.8,10.11,69.95,69.89,3.44,596,0,7.66,2063,45,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:01,智界1111,4000,15.87,1.81,12.3,62.2,9.1,7.01,8.8,594.9,3.53,2099,12,0.23,56.9,7.8,85.5,49.1,68,16.7,0,84.6,8.1,110.7,7.07,22.9,4.15,24.88,5167.97,2.46,57.47,3385.1,1.61,123.74,2.16,0,31.8,10.11,69.94,69.89,3.5,596,0,7.68,1848,45,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:02,智界1111,4000,15.88,1.82,12.3,62.2,9.11,7.02,8.6,594.9,3.51,2088,12,0.23,56.9,7.8,85.5,49.1,67.9,16.7,0,84.8,8.1,110.7,7.07,22.9,4.15,24.74,5178.95,2.48,57.74,3391.61,1.62,123.32,2.17,0,31.8,10.1,69.94,69.89,3.42,596,0,7.68,2043,45,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:03,智界1111,3999,15.88,1.82,12.3,62.2,9.11,7.02,8.4,594.6,3.51,2087,12,0.23,56.9,7.8,85.5,49.1,67.9,16.7,0,84.7,7.9,110.7,7.07,22.9,4.15,24.74,5172.85,2.48,72.99,3173.92,1.52,123.2,2.17,0,31.8,10.1,69.94,69.89,3.4,596,0,7.54,2186,45,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:04,智界1111,3998,15.88,1.82,12.5,62.3,9.09,7.02,8.8,594.9,3.51,2088,12,0.23,56.9,7.8,85.5,49.1,67.9,16.7,0,84.7,8.1,110.8,7.07,22.9,4.15,24.94,5175.46,2.48,57.72,3391.62,1.62,123.34,2.19,0,31.8,10.07,69.94,69.89,3.52,596,0,7.54,2100,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:05,智界1111,3997,15.88,1.82,12.5,62.3,9.09,7.02,8.7,594.6,3.51,2087,12,0.23,56.9,7.8,85.5,49.1,67.9,16.8,0,85.4,8.1,110.8,7.07,22.9,4.15,24.94,5218.23,2.5,58.23,3419.65,1.64,124.39,2.22,0,31.8,10.07,69.94,69.89,3.72,596,0,7.76,2176,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:06,智界1111,3993,15.88,1.84,12.6,62.3,9.09,7.02,8.6,594.9,3.53,2099,12,0.23,56.9,7.8,85.5,49.1,67.9,16.8,0,85.6,7.9,110.8,7.07,23,4.05,24.8,5230.45,2.49,57.85,3427.14,1.63,124.09,2.22,0,31.8,10.07,69.96,69.89,3.68,596,0,7.84,2195,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:07,智界1111,3995,15.88,1.84,12.7,62.3,9.09,7.02,8,594.6,3.61,2146,12,0.23,56.9,7.8,85.5,49.1,67.9,16.8,0,85.4,7.5,110.9,7.07,23,4.05,24.87,5220.86,2.43,56.32,3422.66,1.59,123.13,2.28,0,31.8,10.06,69.96,69.89,3.66,596,0,7.86,2180,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:08,智界1111,3996,15.92,1.88,12.7,62.4,9.1,7.01,8.2,594.6,3.63,2158,12,0.23,56.9,7.8,85.5,49.1,67.8,16.9,0,85.3,7.6,110.9,7.06,23,4,24.33,5209.76,2.41,55.32,3412.67,1.58,120.21,2.3,0,31.8,10.02,69.94,69.89,3.68,596,0,7.84,2192,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:09,智界1111,3997,15.95,1.88,12.8,62.4,9.11,7.01,8.4,594.6,3.65,2170,12,0.23,56.9,7.8,85.5,49.1,67.8,16.9,0,86,7.9,110.9,7.08,23,4.05,24.43,5218.25,2.4,55.22,3419.79,1.58,120.52,2.32,0,31.8,9.99,69.94,69.89,3.82,596,0,8,2277,46,70,70,0,0,0,40,2026-5-7 17:45 +2026-5-7,17:45:10,智界1111,3998,15.95,1.9,12.8,62.4,9.12,7.02,8.5,594.9,3.67,2183,12,0.23,56.9,7.8,85.4,49.1,67.8,16.9,0,86.5,8.1,110.9,7.08,23,177.46,24.17,5264.27,2.41,55.19,3458.74,1.58,120.55,2.33,0,31.8,9.99,69.93,69.89,3.76,596,0,7.96,2176,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:11,智界1111,3997,16.02,1.92,12.9,62.5,9.12,7.03,8.8,594.6,3.67,2182,11.9,0.23,56.9,7.8,85.4,49.1,67.8,16.9,0,87,8.2,110.9,7.08,22.9,4.2,24,5282.65,2.42,55.15,3460.84,1.59,119.58,2.35,0,31.8,9.99,69.93,69.89,3.72,596,0,8.1,2110,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:12,智界1111,3999,16.02,1.94,12.9,62.5,9.13,7.03,8.4,594.6,3.7,2200,11.9,0.23,56.9,7.8,85.4,49.1,67.8,17,0,87.3,7.9,110.9,7.09,22.8,4.35,23.74,5319.22,2.42,54.74,3483.73,1.58,119.05,2.37,0,31.7,9.98,69.95,69.89,3.5,596,0,8.06,2084,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:13,智界1111,3998,16.08,1.95,13.1,62.7,9.14,7.04,8.5,594.6,3.71,2206,12,0.23,56.9,7.8,85.4,49.1,67.8,17,0,87.7,7.9,110.9,7.1,22.8,4.4,23.82,5335.95,2.42,54.83,3497.37,1.59,119.08,2.39,0,31.7,9.98,69.95,69.88,3.8,596,0,7.92,2269,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:14,智界1111,3998,16.08,1.97,13.1,62.7,9.15,7.04,8.7,594.9,3.72,2213,12,0.23,56.9,7.8,85.4,49.1,67.8,17,0,88.6,8.5,110.9,7.11,22.7,4.54,23.56,5390.72,2.44,54.89,3532.19,1.6,119.01,2.42,0,31.7,9.98,69.94,69.88,3.78,595,0,8.08,2254,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:15,智界1111,3998,16.14,1.98,13.2,62.8,9.15,7.06,8.7,594.6,3.74,2223,12,0.23,56.9,7.8,85.4,49.1,67.7,17,0,89,8.7,110.9,7.11,22.7,4.54,23.53,5407.3,2.44,55.09,3543.66,1.6,118.97,2.43,0,31.7,9.98,69.94,69.88,3.82,595,0,7.94,2275,46,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:16,智界1111,3999,16.14,1.99,13.2,62.8,9.15,7.06,8.6,594.9,3.74,2224,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,90.2,8.5,110.9,7.13,22.6,4.74,23.4,5480.23,2.46,55.39,3590.91,1.61,119.9,2.45,0,31.7,9.96,69.94,69.89,3.76,596,0,8.1,2242,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:17,智界1111,3999,16.17,2,13.2,62.9,9.17,7.08,8.1,594.6,3.74,2223,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,90.6,8.2,110.9,7.13,22.6,4.74,23.28,5500.58,2.47,55.55,3603.21,1.62,119.8,2.45,0,31.7,9.96,69.94,69.89,3.72,596,0,8.1,2216,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:18,智界1111,4002,16.17,2.01,13.2,63,9.18,7.08,8.1,594.9,3.74,2224,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,91.6,8.1,110.9,7.15,22.6,4.84,23.15,5561.32,2.5,55.97,3642.44,1.64,120.4,2.47,0,31.8,10,69.95,69.89,3.68,596,0,7.9,2193,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:19,智界1111,4003,16.17,2.02,13.3,63.1,9.18,7.1,8.1,594.9,3.7,2200,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,92,8.2,110.9,7.15,22.5,4.94,23.12,5585.61,2.54,56.69,3659.98,1.66,120.31,2.47,0,31.8,10,69.95,69.89,3.72,596,0,7.98,2195,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:20,智界1111,3996,16.17,2.02,13.3,63.1,9.19,7.11,8.1,594.9,3.65,2171,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,92.8,8.1,110.9,7.15,22.4,4.94,23.12,5603.82,2.58,57.63,3671.91,1.69,120.92,2.48,0,31.8,9.98,69.95,69.89,3.7,596,0,8.08,2216,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:21,智界1111,3997,16.15,2.03,13.3,63.2,9.18,7.11,8,594.6,3.7,2200,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,93.1,8.1,110.9,7.16,22.4,5.08,23,5653.75,2.57,57.18,3704.23,1.68,121.3,2.48,0,31.7,9.96,69.94,69.9,3.76,596,0,8,2263,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:22,智界1111,3999,16.15,2.04,13.3,63.2,9.18,7.11,7.5,594.6,3.7,2200,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,93.3,7.5,110.9,7.16,22.3,5.18,22.87,5667.25,2.58,57.12,3712.67,1.69,120.87,2.48,0,31.7,9.96,69.94,69.9,3.82,596,0,8.08,2235,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:23,智界1111,3998,16.13,2.06,13.3,63.2,9.17,7.11,7.2,594.6,3.72,2212,12,0.23,56.9,7.8,85.4,49.1,67.7,17.1,0,93.5,7.2,110.9,7.16,22.2,5.28,22.63,5682.12,2.57,56.56,3721.59,1.68,119.92,2.49,0,31.7,9.96,69.94,69.89,3.68,596,0,8.02,2189,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:24,智界1111,3998,16.13,2.07,13.3,63.2,9.16,7.11,6.9,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,93.9,6.9,110.8,7.16,22.1,5.28,22.5,5700.35,2.56,56.3,3732.96,1.68,119.69,2.49,0,31.7,9.97,69.94,69.89,3.84,596,0,8.08,2273,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:25,智界1111,3999,16.12,2.08,13.3,63.2,9.16,7.11,6.8,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,94,6.8,110.8,7.16,22.1,5.38,22.38,5710.96,2.57,56.24,3741.4,1.68,119.31,2.49,0,31.7,9.97,69.93,69.89,3.7,595,0,8.02,2308,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:26,智界1111,3999,16.13,2.08,13.3,63.3,9.16,7.11,6.7,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,94.4,6.8,110.6,7.16,21.9,5.48,22.38,5728.05,2.58,56.49,3756.25,1.69,119.82,2.48,0,31.7,9.97,69.93,69.89,3.74,595,0,7.94,2228,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:27,智界1111,3998,16.13,2.08,13.3,63.3,9.15,7.12,6.8,594.9,3.74,2224,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,94.7,6.9,110.5,7.16,21.9,5.58,22.38,5743.33,2.58,56.65,3768.19,1.69,120.23,2.48,0,31.7,9.97,69.94,69.89,3.86,596,0,8.1,2299,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:28,智界1111,3999,16.15,2.08,13.2,63.4,9.15,7.11,6.8,594.6,3.76,2235,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,95.1,7,110.5,7.17,21.8,5.73,22.28,5764.84,2.58,56.61,3779.7,1.69,120.66,2.48,0,31.7,10.03,69.94,69.89,3.76,596,0,8.14,2240,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:29,智界1111,3999,16.15,2.09,13.2,63.4,9.16,7.11,6.9,594.9,3.76,2236,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,95.6,7.1,110.2,7.17,21.7,5.83,22.16,5786.27,2.59,17.84,2698.24,1.21,120.68,2.48,0,31.7,10.03,69.94,69.89,3.72,596,0,8.12,2215,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:30,智界1111,4000,16.16,2.09,13.1,63.5,9.17,7.12,6.9,594.9,3.75,2230,11.9,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.1,7.1,110,7.18,21.6,5.83,22.06,5815.14,2.61,57.16,3815.46,1.71,121.23,2.47,0,31.7,10.03,69.94,69.89,3.82,596,0,7.98,2277,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:31,智界1111,3999,16.16,2.09,13.1,63.5,9.17,7.12,6.8,594.9,3.74,2224,11.9,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.3,7.1,109.8,7.18,21.6,5.98,22.06,5815.34,2.61,57.44,3823.41,1.72,121.51,2.47,0,31.7,10.04,69.92,69.89,3.7,596,0,8,2265,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:32,智界1111,3999,16.14,2.09,13,63.5,9.16,7.14,7.1,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.3,7.3,109.7,7.19,21.5,6.13,21.96,5824.19,2.62,57.46,3827.27,1.72,121.58,2.47,0,31.7,10.07,69.92,69.89,3.68,596,0,8.08,2197,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:33,智界1111,4000,16.14,2.09,13,63.5,9.15,7.14,7.1,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.3,7.3,109.6,7.19,21.4,6.23,21.96,5812.19,2.63,57.69,3823.3,1.73,121.43,2.47,0,31.7,10.09,69.93,69.89,3.76,596,0,8.1,2245,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:34,智界1111,4000,16.11,2.09,13,63.6,9.14,7.15,6.9,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.3,7.1,109.6,7.19,21.4,6.23,21.96,5816.4,2.62,57.35,3826.57,1.72,121.43,2.47,0,31.7,10.09,69.93,69.89,3.7,596,0,8.02,2210,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:35,智界1111,3999,16.11,2.09,13,63.6,9.14,7.14,7,594.9,3.74,2224,12,0.23,57,7.8,85.4,49.1,67.7,17.1,0,96.4,7.2,109.4,7.19,21.3,6.33,21.96,5816.48,2.62,57.38,3830.54,1.72,121.58,2.46,0,31.7,10.09,69.94,69.88,3.46,595,0,7.92,2058,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:36,智界1111,4000,16.09,2.09,12.9,63.7,9.13,7.14,6.7,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.8,17.1,0,96.6,6.9,109.3,7.19,21.2,6.43,21.86,5822.34,2.62,57.4,3834.39,1.72,121.63,2.46,0,31.7,10.1,69.94,69.88,3.64,595,0,7.96,2172,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:37,智界1111,3999,16.07,2.09,12.9,63.7,9.13,7.14,6.6,594.9,3.74,2224,12,0.23,57,7.8,85.4,49.1,67.8,17.1,0,96.5,6.8,109.2,7.18,21.3,6.28,21.86,5822.16,2.62,57.34,3836.57,1.73,121.66,2.46,0,31.7,10.1,69.92,69.88,3.76,595,0,8.06,2244,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:38,智界1111,3999,16.05,2.09,12.9,63.8,9.12,7.13,6.3,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.8,17.1,0,96.4,6.5,109.2,7.19,21.2,6.43,21.86,5818.96,2.62,57.27,3834.79,1.73,121.53,2.46,0,31.7,10.07,69.92,69.88,3.78,596,0,8.08,2254,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:39,智界1111,3999,16.04,2.09,12.8,63.8,9.12,7.13,6.4,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,67.8,17.1,0,96.4,6.6,109.1,7.19,21.1,6.53,21.86,5817.38,2.62,57.26,3835.88,1.73,121.53,2.47,0,31.7,10.07,69.92,69.88,3.76,596,0,8.08,2256,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:40,智界1111,3999,16.04,2.09,12.8,63.8,9.11,7.13,6.6,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,67.8,17,0,96.8,6.9,109,7.18,21.1,6.48,21.76,5838.52,2.64,57.75,3849.47,1.74,121.99,2.47,0,31.8,10.05,69.94,69.88,3.62,596,0,8.08,2229,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:41,智界1111,3999,16.02,2.09,12.8,63.9,9.1,7.13,7,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,67.9,17,0,97.2,7.4,109,7.18,21,6.58,21.76,5865.49,2.65,57.96,3867.59,1.75,122.49,2.47,0,31.8,10.05,69.94,69.88,3.9,596,0,8.1,2195,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:42,智界1111,3999,16.02,2.09,12.7,63.9,9.1,7.13,7.2,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,67.9,17,0,97.3,7.5,109,7.17,20.7,6.83,21.66,5871.51,2.65,57.99,3869.23,1.75,122.56,2.48,0,31.7,10.04,69.93,69.89,3.66,596,0,8.08,2213,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:43,智界1111,3999,16.01,2.09,12.7,63.9,9.1,7.13,6.8,594.9,3.72,2213,12,0.23,57,7.8,85.4,49.1,67.9,17,0,96.9,7.2,108.9,7.17,20.6,6.93,21.66,5845.79,2.64,57.71,3854.42,1.74,122.06,2.48,0,31.7,10.05,69.93,69.89,3.7,596,0,8.08,2204,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:44,智界1111,3999,16.01,2.09,12.7,64,9.1,7.12,6.9,594.9,3.71,2207,11.9,0.23,57,7.8,85.4,49.1,67.9,17,0,96.7,7.2,108.9,7.17,20.6,6.93,21.66,5833.73,2.64,57.74,3846.46,1.74,121.81,2.48,0,31.7,10.04,69.92,69.88,3.8,596,0,8.08,2243,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:45,智界1111,3998,16.01,2.09,12.7,64,9.09,7.12,7,594.6,3.72,2212,11.9,0.23,57,7.8,85.4,49.1,67.9,17,0,96.9,7.4,108.9,7.17,20.5,7.03,21.66,5845.79,2.64,57.73,3854.42,1.74,122.09,2.49,0,31.7,10.03,69.92,69.88,3.6,596,0,8,2256,47,70,70,0,0,0,41,2026-5-7 17:45 +2026-5-7,17:45:46,智界1111,4000,16.01,2.09,12.7,64.1,9.08,7.11,7.4,594.9,3.72,2213,11.9,0.23,57,7.8,85.4,49.1,68,16.9,0,97.2,7.8,108.9,7.17,20.5,7.03,21.66,5863.89,2.65,57.88,3866.35,1.75,122.41,2.48,0,31.7,10.03,69.93,69.88,3.72,595,0,7.9,2242,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:47,智界1111,3999,16.01,2.09,12.6,64.1,9.08,7.11,7.6,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,68,16.9,0,97.3,8,108.9,7.16,20.4,7.08,21.56,5869.91,2.64,57.66,3867.99,1.74,122.51,2.49,0,31.7,10.04,69.9,69.88,3.78,595,0,7.92,2248,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:48,智界1111,3999,16.01,2.1,12.6,64.2,9.08,7.11,7.7,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,68,16.9,0,97.7,8.1,108.9,7.17,20.5,7.03,21.43,5894.06,2.65,57.73,3883.3,1.75,122.4,2.49,0,31.7,10.02,69.9,69.89,3.68,595,0,7.92,2192,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:49,智界1111,4000,16,2.1,12.6,64.2,9.09,7.11,7.9,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,68.1,16.9,0,97.7,8.2,108.9,7.17,20.5,7.03,21.43,5895.48,2.65,57.71,3884.41,1.75,122.37,2.49,0,31.7,10.03,69.93,69.89,3.88,596,0,7.9,2313,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:50,智界1111,3999,16,2.1,12.6,64.2,9.09,7.12,7.9,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,68.1,16.9,0,97.7,8.4,108.8,7.17,20.4,7.13,215.32,5892.47,2.65,57.71,3884.41,1.75,122.4,2.51,0,31.7,10.03,69.93,69.88,3.8,596,0,7.94,2280,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:51,智界1111,4000,15.98,2.11,12.6,64.3,9.09,7.12,8.1,594.6,3.74,2223,12,0.23,57,7.8,85.4,49.1,68.1,16.8,0,97.9,8.7,108.8,7.17,20.4,7.13,21.31,5901.36,2.65,57.56,3890,1.75,121.88,2.51,0,31.7,10.03,69.93,69.88,3.78,596,0,8.04,2341,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:52,智界1111,4000,15.98,2.11,12.6,64.3,9.09,7.13,8.1,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,68.1,16.8,0,98,8.6,108.8,7.17,20.3,7.23,21.31,5913.43,2.67,57.97,3897.95,1.76,122.13,2.51,0,31.7,9.99,69.93,69.89,3.7,596,0,8.06,2211,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:53,智界1111,4000,15.96,2.13,12.5,64.4,9.07,7.13,7.6,594.6,3.72,2212,12,0.23,57,7.8,85.4,49.1,68.1,16.8,0,98.2,7.9,108.8,7.17,20.3,7.23,20.97,5928.37,2.68,57.69,3904.57,1.77,121.11,2.52,0,31.7,9.99,69.93,69.89,3.76,596,0,8.06,2237,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:54,智界1111,4000,15.91,2.14,12.5,64.4,9.06,7.13,7.4,594.9,3.71,2207,12,0.23,57,7.8,85.4,49.1,68.1,16.8,0,98.2,7.8,108.7,7.17,20.2,7.33,20.85,5929.65,2.69,57.6,3907.31,1.77,120.51,2.51,0,31.9,9.97,69.93,69.89,3.74,596,0,8.08,2224,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:55,智界1111,4000,15.91,2.14,12.5,64.4,9.05,7.12,7.8,594.6,3.71,2206,12,0.23,57,7.8,85.4,49.1,68.2,16.8,0,97.9,8.3,108.7,7.16,20.2,7.28,20.85,5914.4,2.68,57.41,3897.59,1.77,120.14,2.5,0,31.9,9.97,69.93,69.89,3.7,596,0,7.96,2228,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:56,智界1111,4001,15.87,2.15,12.5,64.4,9.04,7.11,7.6,594.6,3.71,2206,12,0.23,57,7.8,85.4,49.1,68.2,16.7,0,97.8,8.2,108.6,7.15,20.1,7.34,20.73,5911.06,2.68,57.11,3897.44,1.77,119.4,2.51,0,31.9,9.92,69.95,69.89,3.86,596,0,8,2306,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:57,智界1111,3999,15.87,2.15,12.5,64.4,9.03,7.11,7.4,594.6,3.71,2206,11.9,0.23,57,7.8,85.4,49.1,68.2,16.7,0,97.7,7.8,108.6,7.15,20.1,7.34,20.73,5905.02,2.68,57.05,3893.46,1.76,119.34,2.51,0,31.9,9.9,69.95,69.89,3.76,596,0,8.02,2239,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:58,智界1111,4000,15.84,2.15,12.4,64.4,9.02,7.1,7.5,594.9,3.72,2213,12,0.23,57,7.8,85.4,49.1,68.2,16.7,0,97.7,7.9,108.5,7.15,20,7.44,20.63,5906.31,2.67,56.79,3894.46,1.76,119.26,2.51,0,31.9,9.9,69.96,69.88,3.7,596,0,8.06,2204,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:45:59,智界1111,3999,15.84,2.15,12.4,64.3,9.02,7.1,7.3,594.6,3.71,2206,12,0.23,57,7.8,85.4,49.1,68.2,16.7,0,97.2,7.7,108.5,7.14,20,7.39,20.63,5876.07,2.66,56.68,3874.52,1.76,118.68,2.52,0,31.8,9.89,69.94,69.88,3.62,596,0,8.02,2239,47,70,70,0,0,0,42,2026-5-7 17:45 +2026-5-7,17:46:00,智界1111,4000,15.8,2.15,12.4,64.2,9.01,7.09,7.9,594.9,3.71,2207,12,0.23,57,7.8,85.4,49.1,68.2,16.7,0,97.2,8.2,108.5,7.14,20,7.39,20.63,5881.79,2.67,56.58,3878.96,1.76,118.65,2.52,0,31.9,9.86,69.94,69.88,3.64,596,0,7.98,2166,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:01,智界1111,4000,15.8,2.15,12.4,64.2,9.01,7.09,7.8,594.6,3.71,2206,12,0.23,57,7.8,85.4,49.1,68.2,16.6,0,97.3,8.1,108.4,7.14,19.8,7.59,20.63,5884.84,2.67,56.67,3882.95,1.76,118.8,2.52,0,31.7,9.87,69.94,69.87,3.66,596,0,7.94,2177,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:02,智界1111,4000,15.76,2.15,12.3,63.9,9,7.08,7.9,594.9,3.7,2201,12,0.23,57,7.8,85.4,49.1,68.2,16.6,0,97.5,8.5,108.4,7.13,19.7,7.69,20.53,5902.67,2.68,56.81,3893.06,1.77,118.96,2.53,0,31.7,9.87,69.94,69.87,3.78,595,0,7.92,2247,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:03,智界1111,3999,15.74,2.15,12.3,63.7,8.99,7.08,8.1,594.6,3.7,2200,12,0.23,57,7.8,85.4,49.1,68.2,16.6,0,97.3,8.6,108.3,7.12,19.7,7.59,71.25,5890.41,2.68,56.68,3887.28,1.77,118.75,2.52,0,31.7,9.87,69.94,69.88,3.6,595,0,8.04,2146,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:04,智界1111,4001,15.72,2.15,12.3,63.4,8.99,7.07,7.9,594.9,3.67,2183,12,0.23,57,7.8,85.4,49.1,68.3,16.6,0,96.5,8.3,108.3,7.12,19.6,7.59,20.53,5862.99,2.69,56.8,3869.52,1.77,118.08,2.53,0,31.7,9.86,69.94,69.88,3.6,595,0,8,2150,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:05,智界1111,4000,15.72,2.15,12.3,63.4,8.99,7.07,8,594.6,3.67,2182,12,0.23,57,7.8,85.4,49.1,68.3,16.5,0,96.6,8.4,108.3,7.11,19.6,7.64,20.53,5850.87,2.68,56.7,3861.52,1.77,117.86,2.54,0,31.7,9.86,69.94,69.89,3.76,595,0,8.06,2238,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:06,智界1111,4000,15.69,2.15,12.3,62.9,8.98,7.07,7.7,594.9,3.67,2183,12,0.23,57,7.8,85.5,49.2,68.2,16.5,0,97.2,8,108.2,7.11,19.6,7.64,20.53,5888.51,2.7,56.97,3888.85,1.78,118.6,2.54,0,31.7,9.86,69.94,69.89,3.78,596,0,8.04,2257,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:07,智界1111,3998,15.69,2.15,12.3,62.9,8.97,7.06,7.7,594.6,3.67,2182,12,0.23,57,7.8,85.5,49.2,68.2,16.5,0,96.9,8.2,108.2,7.11,19.7,7.54,20.53,5870.34,2.69,56.82,3876.84,1.78,118.29,2.54,0,31.7,9.86,69.96,69.89,3.48,595,0,8.02,2113,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:08,智界1111,4001,15.67,2.15,12.2,62.3,8.96,7.06,8.5,594.9,3.7,2201,11.9,0.23,57,7.8,85.5,49.2,68.2,16.5,0,96.7,9.1,108.1,7.11,19.7,7.54,20.43,5861.07,2.66,56.15,3868.75,1.76,117.91,2.55,0,31.7,9.85,69.96,69.89,3.82,595,0,7.96,2273,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:09,智界1111,4000,15.67,2.16,12.2,62.3,8.96,7.06,8.7,594.6,3.7,2200,11.9,0.23,57,7.8,85.5,49.2,68.2,16.5,0,96.5,9.2,108.1,7.1,19.6,7.6,20.31,5845.97,2.66,55.9,3860.13,1.75,117.11,2.53,0,31.7,9.84,69.94,69.89,3.7,595,0,8.02,2203,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:10,智界1111,4000,15.66,2.16,12.2,61.8,8.97,7.05,8.6,594.6,3.71,2206,12,0.23,57,7.8,85.5,49.2,68.2,16.4,0,96.1,9,108,7.11,19.6,7.64,20.31,5820.21,2.64,55.5,3845.24,1.74,116.63,2.54,0,31.7,9.84,69.94,69.89,3.66,595,0,8.02,2185,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:11,智界1111,3999,15.65,2.16,12.2,61.8,8.97,7.06,8.2,594.6,3.71,2206,12,0.23,57,7.8,85.5,49.2,68.2,16.4,0,96.1,8.5,108,7.1,19.6,7.6,20.31,5820.19,2.64,55.5,3845.23,1.74,116.66,2.54,0,31.7,9.82,69.94,69.89,3.76,595,0,8.02,2244,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:12,智界1111,3999,15.65,2.16,12.1,61.3,8.97,7.06,7.8,594.6,3.7,2200,12,0.23,57,7.8,85.5,49.2,68.2,16.4,0,96.2,8.2,108,7.11,19.5,7.64,20.21,5821.62,2.65,55.61,3844.04,1.75,116.61,2.56,0,31.7,9.78,69.94,69.89,3.74,595,0,7.9,2226,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:13,智界1111,3999,15.64,2.17,12.1,61.3,8.96,7.06,8.1,594.6,3.7,2200,12,0.23,57,7.8,85.5,49.2,68.2,16.4,0,96.3,8.6,107.9,7.1,19.5,7.7,20.09,5832.19,2.65,55.54,3852.53,1.75,116.28,2.56,0,31.8,9.75,69.94,69.89,3.78,595,0,8.06,2252,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:14,智界1111,3999,15.64,2.17,12.1,60.9,8.97,7.05,8.8,594.6,3.7,2200,12,0.23,57.1,7.8,85.5,49.2,68.2,16.3,0,96.3,9.4,107.9,7.1,19.5,7.7,20.09,5838.24,2.65,55.6,3856.54,1.75,116.4,2.57,0,31.8,9.75,69.94,69.89,3.8,595,0,8.08,2267,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:15,智界1111,3998,15.64,2.17,12.1,60.9,8.97,7.05,8.9,594.6,3.69,2194,12,0.23,57.1,7.8,85.5,49.2,68.2,16.3,0,96.3,9.4,107.8,7.1,19.4,7.8,20.09,5829.22,2.66,55.7,3852.53,1.76,116.31,2.56,0,31.8,9.74,69.94,69.89,3.72,596,0,7.96,2216,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:16,智界1111,3999,15.64,2.18,12,60.7,8.98,7.04,8.4,594.6,3.71,2206,12,0.23,57.1,7.8,85.5,49.2,68.2,16.3,0,96.7,8.8,107.8,7.1,19.4,7.8,19.87,5853.43,2.65,55.44,3865.61,1.75,116.15,2.55,0,31.8,9.73,69.94,69.89,3.78,596,0,7.92,2183,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:17,智界1111,4000,15.66,2.19,12,60.6,8.99,7.05,7.8,594.9,3.71,2207,12,0.23,57.1,7.8,85.5,49.2,68.2,16.3,0,96.6,8.3,107.7,7.1,19.4,7.8,19.76,5842.98,2.65,55.21,3859.89,1.75,115.46,2.55,0,31.8,9.73,69.94,69.88,3.74,596,0,7.94,2228,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:18,智界1111,3999,15.66,2.2,12,60.6,8.99,7.05,7.8,594.6,3.71,2206,11.9,0.23,57.1,7.8,85.5,49.2,68.1,16.3,0,96.6,8.2,107.7,7.1,19.3,7.9,19.64,5841.55,2.65,55.1,3858.17,1.75,114.91,2.56,0,31.8,9.74,69.94,69.88,3.74,596,0,7.94,2238,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:19,智界1111,4000,15.69,2.2,12,60.6,8.99,7.06,8.2,594.6,3.7,2200,11.9,0.23,57.1,7.8,85.5,49.2,68.1,16.2,0,96.8,8.5,107.6,7.1,19.4,7.8,19.64,5846.38,2.66,55.42,3862.83,1.76,115.12,2.56,0,31.8,9.74,69.94,69.88,3.84,596,0,8.14,2261,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:20,智界1111,3998,15.69,2.2,12,60.6,8.99,7.06,8.3,594.6,3.71,2206,12,0.23,57.1,7.8,85.5,49.2,68.1,16.2,0,96.4,8.8,107.6,7.11,19.3,7.94,19.64,5822.23,2.64,55.04,3846.88,1.74,114.7,2.57,0,31.8,9.76,69.94,69.89,3.78,596,0,8.12,2475,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:21,智界1111,3999,15.71,2.2,12,60.6,8.99,7.06,8.6,594.6,3.74,2223,12,0.23,57.1,7.8,85.5,49.2,68.1,16.2,0,96.3,9.1,107.6,7.11,19.3,7.94,19.64,5813.35,2.62,54.6,3840.68,1.73,114.55,2.56,0,31.8,9.76,69.94,69.89,3.66,596,0,8.08,2313,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:22,智界1111,3997,15.71,2.2,11.9,60.6,8.99,7.05,8.2,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68.1,16.2,0,96.7,8.6,107.5,7.1,19.3,7.9,19.54,5834.5,2.62,54.8,3854.3,1.73,115.04,2.57,0,31.8,9.8,69.96,69.89,3.8,596,0,7.98,2199,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:23,智界1111,3999,15.74,2.2,11.9,60.7,9.01,7.05,8.1,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68.1,16.2,0,97.1,8.6,107.5,7.11,19.2,8.04,19.54,5854.35,2.63,55.08,3866.92,1.74,115.45,2.57,0,31.8,9.8,69.96,69.89,3.72,596,0,7.9,2219,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:24,智界1111,3999,15.74,2.2,11.9,60.7,9.04,7.06,8.6,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68,16.1,0,97.9,9.2,107.5,7.11,19.2,8.04,19.54,5902.58,2.66,55.53,3898.78,1.75,116.4,2.58,0,31.7,9.82,69.94,69.88,3.76,596,0,7.9,2085,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:25,智界1111,3998,15.74,2.2,11.9,60.8,9.04,7.07,8.5,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68,16.1,0,98,9.1,107.4,7.11,19.1,8.14,19.54,5905.59,2.66,55.59,3902.76,1.76,116.55,2.59,0,31.7,9.85,69.95,69.88,3.82,596,0,7.98,2275,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:26,智界1111,3998,15.74,2.21,11.9,60.8,9.04,7.07,8.4,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68,16.1,0,98.2,9,107.4,7.11,19.1,8.14,19.42,5917.64,2.66,55.54,3910.1,1.76,116.23,2.59,0,31.7,9.85,69.95,69.88,3.8,596,0,8.08,2311,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:27,智界1111,3999,15.73,2.21,11.9,60.9,9.04,7.06,7.7,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68,16.1,0,98.3,8.6,107.4,7.11,19.1,8.14,19.42,5925.12,2.67,55.58,3915.21,1.76,116.32,2.59,0,31.7,9.85,69.94,69.88,3.86,596,0,8.1,2299,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:28,智界1111,3998,15.73,2.21,11.9,60.9,9.03,7.06,7.6,594.9,3.72,2213,12,0.23,57.1,7.8,85.6,49.2,68,16,0,98.3,8.1,107.4,7.11,19,8.24,19.42,5925.12,2.68,55.83,3915.21,1.77,116.35,2.6,0,31.7,9.9,69.94,69.88,3.76,596,0,8.06,2229,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:29,智界1111,3998,15.74,2.21,11.8,61,9.06,7.06,7.8,594.6,3.74,2223,12,0.23,57.1,7.8,85.6,49.2,68,16,0,98.3,8.2,107.3,7.12,19,8.29,19.42,5920.65,2.66,55.6,3914.1,1.76,116.35,2.6,0,31.7,9.9,69.92,69.88,3.84,596,0,7.98,2290,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:30,智界1111,3999,15.74,2.22,11.8,61.1,9.06,7.06,7.8,594.9,3.74,2224,12,0.23,57.1,7.8,85.6,49.2,68,16,0,98.5,8.3,107.3,7.12,19,8.29,19.2,5932.69,2.67,55.5,3919.07,1.76,115.95,2.62,0,31.7,9.9,69.93,69.88,3.62,596,0,8.16,2258,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:31,智界1111,4000,15.74,2.23,11.8,61.1,9.07,7.07,8.1,594.6,3.74,2223,12,0.23,57.1,7.8,85.7,49.2,68,16,0,98.7,8.5,107.3,7.12,19,8.29,19.09,5944.74,2.67,55.48,3926.4,1.77,115.6,2.61,0,31.8,9.9,69.93,69.89,3.84,596,0,8.08,2261,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:32,智界1111,4000,15.74,2.24,11.8,61.2,9.06,7.07,8.1,594.9,3.74,2224,12,0.23,57.1,7.8,85.7,49.3,68,15.9,0,99.2,8.8,107.2,7.12,18.9,8.39,18.97,5971.8,2.69,55.58,3945.67,1.77,115.64,2.61,0,31.8,10,69.94,69.88,3.72,596,0,7.98,2243,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:33,智界1111,3999,15.75,2.24,11.8,61.3,9.07,7.08,7.8,594.9,3.74,2224,11.9,0.23,57.1,7.8,85.7,49.3,67.9,15.9,0,99.5,8.6,107.2,7.12,18.9,8.39,18.97,5988.39,2.69,55.77,3956.46,1.78,116.02,2.61,0,31.8,10,69.94,69.88,3.8,596,0,7.96,2216,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:34,智界1111,3999,15.75,2.24,11.7,61.4,9.08,7.08,7.8,594.9,3.74,2224,12,0.23,57.1,7.8,85.7,49.3,67.9,15.9,0,99.5,8.4,107.2,7.13,18.9,8.44,18.87,5988.4,2.69,55.74,3954.08,1.78,115.97,2.6,0,31.7,9.99,69.94,69.88,3.76,596,0,8.02,2298,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:35,智界1111,4000,15.74,2.24,11.7,61.5,9.08,7.08,7.9,594.6,3.75,2229,12,0.23,57.1,7.8,85.7,49.3,67.9,15.9,0,99.5,8.5,107.1,7.13,18.9,8.44,18.87,5986.8,2.69,55.6,3955.22,1.77,115.94,2.61,0,31.7,9.98,69.94,69.88,3.62,596,0,8.08,2159,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:36,智界1111,4000,15.74,2.24,11.7,61.6,9.08,7.08,7.9,594.9,3.74,2224,12,0.23,57.1,7.8,85.7,49.3,67.9,15.8,0,100.2,8.7,107.1,7.14,18.8,8.59,18.87,6028.93,2.71,56.11,3983.06,1.79,116.75,2.61,0,31.7,10.06,69.96,69.88,3.78,596,0,8.08,2274,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:37,智界1111,4000,15.72,2.24,11.7,61.6,9.08,7.08,8.2,594.6,3.74,2223,12,0.23,57.1,7.8,85.8,49.3,67.9,15.8,0,100.2,8.8,107,7.14,18.8,8.59,18.87,6028.8,2.71,56.1,3985.35,1.79,116.75,2.61,0,31.7,10.03,69.93,69.88,3.78,596,0,8.1,2249,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:38,智界1111,3998,15.72,2.24,11.7,61.7,9.08,7.08,8.1,594.9,3.72,2213,12,0.23,57.1,7.8,85.8,49.3,67.9,15.8,0,100.2,8.8,107,7.13,18.8,8.54,18.87,6028.79,2.72,56.36,3985.34,1.8,116.81,2.61,0,31.7,10.03,69.93,69.89,3.82,596,0,8.08,2273,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:39,智界1111,4000,15.69,2.24,11.6,61.8,9.07,7.08,7.7,594.6,3.74,2223,12,0.23,57.1,7.8,85.8,49.3,67.9,15.7,0,100.1,8.5,107,7.13,18.8,8.54,18.77,6027.21,2.71,55.96,3982.4,1.79,116.59,2.62,0,31.7,10.04,69.94,69.88,3.8,596,0,8.08,2261,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:40,智界1111,3999,15.69,2.24,11.6,61.8,9.07,7.08,7.6,594.6,3.72,2212,12,0.23,57.1,7.8,85.8,49.3,67.9,15.7,0,100.3,8.3,106.9,7.13,18.7,8.64,18.77,6036.16,2.73,56.35,3990.36,1.8,116.85,2.62,0,31.7,10.1,69.94,69.88,3.82,596,0,8.08,2317,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:41,智界1111,3999,15.67,2.24,11.6,61.9,9.06,7.08,7.7,594.6,3.74,2223,12,0.23,57.1,7.8,85.8,49.3,67.9,15.7,0,100.5,8.4,106.9,7.12,18.7,8.59,18.77,6051.16,2.72,56.15,4000.61,1.8,117.08,2.63,0,31.6,10.1,69.95,69.88,3.76,596,0,8.02,2242,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:42,智界1111,3998,15.67,2.24,11.6,62,9.06,7.07,7.9,594.6,3.74,2223,12,0.23,57.1,7.8,85.8,49.3,67.8,15.7,0,100.6,8.7,106.8,7.12,18.7,8.59,18.77,6054.09,2.72,56.21,4004.59,1.8,117.23,2.63,0,31.6,10.11,69.94,69.88,3.94,596,0,8,2243,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:43,智界1111,3999,15.67,2.25,11.5,62.1,9.05,7.07,8.3,594.9,3.74,2224,12,0.23,57.1,7.8,85.9,49.3,67.8,15.6,0,100.4,9,106.8,7.11,18.6,8.64,265.58,6042.04,2.72,55.91,3995.98,1.8,116.41,2.63,0,31.7,10.11,69.94,69.88,3.78,596,0,7.96,2343,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:44,智界1111,3999,15.67,2.25,11.5,62.1,9.06,7.06,8.2,594.9,3.75,2230,11.9,0.23,57.1,7.8,85.9,49.3,67.8,15.6,0,100.6,8.9,106.7,7.11,18.5,8.74,18.56,6050.97,2.71,55.84,4001.53,1.79,116.59,2.63,0,31.7,10.19,69.95,69.88,3.76,596,0,8.02,2270,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:45,智界1111,3999,15.68,2.25,11.5,62.2,9.05,7.06,7.9,594.9,3.75,2230,11.9,0.23,57.1,7.8,85.9,49.4,67.8,15.6,0,100.8,8.6,106.7,7.11,18.5,8.74,18.56,6061.51,2.72,55.97,4008.33,1.8,116.83,2.63,0,31.7,10.19,69.95,69.88,3.76,596,0,8.02,2226,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:46,智界1111,4000,15.68,2.25,11.5,62.3,9.04,7.06,7.9,594.6,3.75,2229,11.9,0.23,57.1,7.8,85.9,49.4,67.9,15.5,0,100.8,8.6,106.6,7.11,18.5,8.74,18.56,6058.41,2.72,56,4008.33,1.8,116.8,2.62,0,31.7,10.19,69.96,69.89,3.86,595,0,8,2230,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:47,智界1111,4000,15.69,2.25,11.4,62.4,9.04,7.06,7.7,594.6,3.74,2223,11.9,0.23,57.1,7.8,85.9,49.4,67.9,15.5,0,100.6,8.3,106.6,7.11,18.4,8.84,18.56,6046.39,2.72,56.04,4000.37,1.8,116.56,2.62,0,31.7,10.2,69.96,69.89,3.74,595,0,8.02,2269,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:48,智界1111,3999,15.69,2.25,11.4,62.5,9.05,7.06,7.8,594.6,3.75,2229,12,0.23,57.1,7.8,85.9,49.4,67.9,15.5,0,100.6,8.6,106.6,7.11,18.4,8.84,18.46,6044.9,2.71,55.88,3996.8,1.79,116.54,2.64,0,31.7,10.25,69.94,69.88,3.76,595,0,8.1,2207,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:49,智界1111,4000,15.7,2.25,11.4,62.6,9.06,7.06,8,594.9,3.74,2224,12,0.23,57.1,7.8,85.9,49.4,67.9,15.4,0,100.8,8.7,106.5,7.11,18.4,8.84,18.46,6052.31,2.72,56.14,4003.59,1.8,116.75,2.65,0,31.6,10.2,69.93,69.88,3.6,596,0,8.16,2144,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:50,智界1111,3999,15.7,2.25,11.4,62.7,9.07,7.07,8.3,594.6,3.74,2223,12,0.23,57.1,7.8,85.9,49.4,67.9,15.4,0,101.1,9.1,106.5,7.12,18.3,8.99,18.46,6070.34,2.73,56.33,4015.52,1.81,117.12,2.65,0,31.6,10.2,69.93,69.89,3.74,596,0,8.16,2240,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:51,智界1111,3999,15.71,2.26,11.3,62.8,9.06,7.07,8.5,594.9,3.74,2224,12,0.23,57.1,7.8,85.9,49.5,67.9,15.4,0,101.5,9.2,106.5,7.13,18.3,9.04,18.24,6092.87,2.74,56.36,4027.17,1.81,116.98,2.65,0,31.6,10.18,69.93,69.89,3.82,596,0,7.98,2283,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:52,智界1111,3999,15.71,2.27,11.3,62.8,9.06,7.08,8.6,594.6,3.74,2223,12,0.23,57.1,7.8,85.9,49.5,67.9,15.3,0,101.9,9.5,106.4,7.12,18.3,8.99,18.12,6113.72,2.75,56.44,4042.37,1.82,116.89,2.66,0,31.6,10.18,69.93,69.89,3.8,596,0,8.04,2244,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:53,智界1111,4000,15.72,2.28,11.3,63,9.04,7.07,8.2,594.6,3.74,2223,12,0.23,57.1,7.8,85.9,49.5,67.9,15.3,0,101.8,9,106.4,7.11,18.3,8.94,18.01,6106.21,2.75,56.25,4036.58,1.82,116.2,2.66,0,31.6,10.15,69.93,69.89,3.8,596,0,8.1,2275,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:54,智界1111,3999,15.73,2.29,11.3,63,9.04,7.07,7.9,594.6,3.76,2235,12,0.23,57.1,7.8,85.9,49.5,67.9,15.3,0,101.5,8.7,106.4,7.12,18.2,9.09,17.9,6088.22,2.72,55.62,4024.04,1.8,115.35,2.66,0,31.6,10.14,69.94,69.9,3.86,596,0,8.16,2305,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:55,智界1111,3999,15.73,2.29,11.3,63.2,9.06,7.07,7.8,594.6,3.75,2229,12,0.23,57.1,7.8,85.9,49.5,67.9,15.3,0,101.6,8.6,106.3,7.12,18.2,9.09,17.9,6080.72,2.73,55.74,4018.91,1.8,115.24,2.67,0,31.6,10.14,69.94,69.9,3.8,596,0,8.16,2260,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:56,智界1111,4000,15.74,2.29,11.3,63.2,9.08,7.07,7.9,594.6,3.76,2235,12,0.23,57.1,7.8,86,49.5,67.9,15.2,0,102.3,8.8,106.3,7.12,18.2,9.09,17.9,6130.03,2.74,56.1,4053.41,1.81,116.23,2.67,0,31.6,10.15,69.93,69.9,3.86,596,0,8.12,2297,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:57,智界1111,4001,15.74,2.3,11.2,63.4,9.1,7.08,8.1,594.6,3.76,2235,12,0.23,57.1,7.8,86,49.5,67.9,15.2,0,103.6,8.8,106.2,7.13,18.2,9.14,17.68,6174.8,2.76,56.35,4081.98,1.83,116.52,2.67,0,31.6,10.15,69.93,69.9,3.72,596,0,8.14,2276,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:58,智界1111,4001,15.74,2.3,11.2,63.4,9.09,7.08,8.4,594.6,3.76,2235,12,0.23,57.1,7.8,86,49.5,67.9,15.2,0,103.9,9.5,106.2,7.14,18.2,9.19,17.68,6222.72,2.78,56.79,4113.67,1.84,117.42,2.67,0,31.6,10.15,69.92,69.89,3.76,596,0,8,2242,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:46:59,智界1111,4000,15.71,2.3,11.2,63.5,9.07,7.09,8.2,594.9,3.76,2236,12,0.23,57.1,7.8,86,49.5,67.9,15.1,0,104.4,9.5,106.2,7.14,18.1,9.29,17.68,6245.32,2.79,56.87,4129.13,1.85,117.79,2.67,0,31.6,10.15,69.92,69.89,3.84,596,0,7.98,2288,47,70,70,0,0,0,42,2026-5-7 17:46 +2026-5-7,17:47:00,智界1111,4000,15.71,2.31,11.2,63.5,9.06,7.09,7.8,594.6,3.75,2229,12,0.23,57.1,7.8,86,49.5,67.9,15.1,0,104.4,8.8,106.1,7.14,18.1,9.29,17.57,6254.08,2.81,57,4136.38,1.86,117.47,2.67,0,31.6,10.13,69.91,69.9,3.82,596,0,8.12,2355,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:01,智界1111,4000,15.66,2.31,11.2,63.6,9.04,7.09,7.4,594.6,3.74,2223,11.9,0.23,57.1,7.8,86,49.5,67.9,15.1,0,104,8.6,106,7.14,18.1,9.29,17.57,6234.62,2.8,56.69,4126.5,1.85,117.02,2.67,0,31.6,10.14,69.93,69.9,3.76,596,0,8.14,2247,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:02,智界1111,4001,15.66,2.31,11.2,63.6,9.03,7.08,7.3,594.6,3.74,2223,11.9,0.23,57.1,7.8,86,49.5,67.9,15.1,0,102.9,8.2,106,7.13,18.1,9.24,17.57,6168.67,2.77,56.24,4082.84,1.84,115.76,2.67,0,31.6,10.14,69.93,69.89,3.78,596,0,7.98,2172,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:03,智界1111,4000,15.61,2.31,11.1,63.5,9.03,7.08,7.6,594.6,3.72,2212,12,0.23,57.1,7.8,86,49.6,67.9,15.1,0,102.7,8.3,105.9,7.12,18.1,9.19,17.47,6161.13,2.79,56.28,4078.33,1.84,115.51,2.66,0,31.6,10.13,69.93,69.89,3.82,596,0,8.08,2292,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:04,智界1111,4000,15.61,2.31,11.1,63.5,9.03,7.07,7.6,594.6,3.74,2223,12,0.23,57.1,7.8,86,49.6,67.9,15,0,102.7,8.4,105.9,7.12,18.1,9.19,17.47,6161.13,2.77,56.01,4078.33,1.83,115.51,2.66,0,31.6,10.07,69.93,69.89,3.76,596,0,8.14,2245,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:05,智界1111,4000,15.55,2.31,11.1,63.4,9.02,7.07,7.5,594.9,3.72,2213,12,0.23,57.1,7.8,86,49.6,67.9,15,0,102.5,8.3,105.8,7.11,18.1,9.14,17.47,6155.1,2.78,56.03,4077.46,1.84,115.29,2.66,0,31.6,10.06,69.92,69.89,3.78,595,0,8.12,2265,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:06,智界1111,4000,15.55,2.31,11.1,63.4,9.02,7.07,7.6,594.6,3.74,2223,12,0.23,57.1,7.8,86,49.6,67.9,15,0,102.4,8.4,105.8,7.11,18,9.24,17.47,6149.1,2.77,55.73,4073.48,1.83,115.17,2.66,0,31.6,10.04,69.92,69.9,3.54,595,0,7.92,2106,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:07,智界1111,4000,15.5,2.31,11.1,63,9.01,7.06,7.9,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.6,67.9,15,0,102.4,8.8,105.7,7.1,18,9.2,17.47,6153.55,2.77,55.63,4079.37,1.84,115.17,2.67,0,31.6,10.04,69.96,69.9,3.74,595,0,7.94,2230,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:08,智界1111,3999,15.5,2.31,11.1,63,9.01,7.06,7.9,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.6,67.9,14.9,0,102.4,8.8,105.7,7.1,18.1,9.1,17.47,6153.55,2.77,55.63,4079.37,1.84,115.2,2.67,0,31.6,9.96,69.96,69.9,3.76,596,0,8,2237,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:09,智界1111,4000,15.46,2.31,11.1,62.5,9,7.05,7.8,594.9,3.72,2213,12,0.23,57.2,7.8,86,49.6,67.9,14.9,0,102.1,8.6,105.6,7.09,18.1,9.05,17.47,6141.6,2.78,55.64,4072.13,1.84,114.84,2.67,0,31.6,9.96,69.96,69.9,3.68,596,0,8.02,2195,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:10,智界1111,4000,15.46,2.31,11.1,62.5,9,7.05,7.9,594.9,3.74,2224,12,0.23,57.2,7.8,86,49.6,67.9,14.9,0,102.1,8.7,105.5,7.08,18.1,9,17.47,6135.31,2.76,55.37,4072.12,1.83,114.84,2.67,0,31.6,10.01,69.94,69.89,4.12,596,0,8.1,2453,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:11,智界1111,3999,15.43,2.31,11,61.9,9,7.04,8,594.9,3.72,2213,11.9,0.23,57.2,7.8,86,49.6,67.9,14.9,0,102,8.9,105.4,7.09,18.1,9.05,17.37,6130.74,2.77,55.51,4069.23,1.84,114.7,2.68,0,31.6,10.01,69.94,69.89,3.9,596,0,8.08,2321,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:12,智界1111,4000,15.43,2.31,11,61.9,8.99,7.04,8.1,594.6,3.71,2206,11.9,0.23,57.2,7.8,86,49.6,67.9,14.8,0,101.9,9,105.4,7.08,18,9.1,17.37,6124.72,2.78,55.63,4065.23,1.84,114.56,2.67,0,31.6,10.05,69.96,69.9,3.92,596,0,8.12,2341,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:13,智界1111,4000,15.42,2.31,11,61.2,9,7.04,8,594.9,3.71,2207,11.9,0.23,57.2,7.8,86,49.6,67.9,14.8,0,101.6,8.9,105.3,7.09,17.8,9.15,17.37,6105.09,2.77,55.42,4054.45,1.84,114.22,2.67,0,31.6,10.09,69.96,69.9,3.78,596,0,8.1,2254,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:14,智界1111,4000,15.41,2.31,11,61,9,7.04,8,594.6,3.71,2206,11.9,0.23,57.2,7.8,86,49.6,67.9,14.8,0,101.7,8.8,105.3,7.09,17.8,9.35,17.37,6111.1,2.77,55.5,4058.44,1.84,114.34,2.67,0,31.6,10.09,69.92,69.89,3.72,596,0,8.14,2265,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:15,智界1111,4000,15.41,2.31,11,60.7,9,7.04,8.1,594.6,3.71,2206,12,0.23,57.2,7.8,86,49.6,67.9,14.8,0,102.1,9,105.2,7.09,17.8,9.35,17.37,6133.52,2.78,55.7,4075.58,1.85,114.79,2.68,0,31.6,10.09,69.92,69.89,3.72,596,0,8.14,2188,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:16,智界1111,3998,15.4,2.31,11,60.5,9.01,7.04,8.3,594.6,3.71,2206,12,0.23,57.2,7.8,86,49.6,67.9,14.7,0,102.1,9.2,105.2,7.09,17.8,9.35,17.37,6135.05,2.78,55.68,4076.76,1.85,114.84,2.69,0,31.6,10.13,69.92,69.9,3.98,596,0,8.12,2375,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:17,智界1111,3999,15.4,2.31,11,60.3,9.01,7.03,8.3,594.9,3.72,2213,12,0.23,57.2,7.8,86,49.6,67.9,14.7,0,102,9.2,105.1,7.08,17.7,9.4,17.37,6125.89,2.77,55.45,4072.76,1.84,114.7,2.7,0,31.6,10.15,69.91,69.9,3.72,596,0,8.1,2199,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:18,智界1111,3998,15.39,2.31,11,60.2,9.01,7.04,8.1,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.6,67.9,14.7,0,102.2,8.9,105.1,7.08,17.7,9.4,17.37,6133.43,2.76,55.23,4077.94,1.83,114.84,2.71,0,31.6,10.15,69.91,69.9,3.78,596,0,7.94,2269,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:19,智界1111,3998,15.39,2.31,11,60.2,9.01,7.03,8,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.6,67.9,14.7,0,102.1,8.9,105.1,7.09,17.8,9.35,17.37,6133.44,2.76,55.23,4077.95,1.83,114.84,2.71,0,31.7,10.14,69.92,69.9,3.54,596,0,8.12,2114,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:20,智界1111,3998,15.41,2.31,11,60,9.02,7.03,8,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.6,67.9,14.7,0,101.8,8.9,105,7.08,17.8,9.3,17.37,6109.23,2.75,55.11,4063.6,1.83,114.51,2.71,0,31.7,10.13,69.92,69.9,3.82,595,0,8.1,2278,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:21,智界1111,3999,15.41,2.31,11,60,9.02,7.03,8,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,102,9,105,7.08,17.7,9.4,17.37,6121.23,2.75,55.22,4071.58,1.83,114.7,2.72,0,31.7,10.13,69.93,69.89,3.86,596,0,8.02,2297,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:22,智界1111,3998,15.43,2.32,11,59.9,9.02,7.03,8.2,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,102.9,9.1,105,7.09,17.7,9.45,17.26,6172.18,2.78,53.44,4104.47,1.85,115.21,2.73,0,31.7,10.12,69.93,69.89,3.9,596,0,7.96,2320,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:23,智界1111,3999,15.45,2.34,11,59.9,9.03,7.03,8.2,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103,9.2,104.9,7.09,17.7,9.45,17.03,6171.93,2.78,55.37,4104.75,1.85,114.24,2.73,0,31.7,10.12,69.93,69.89,3.78,596,0,8.16,2275,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:24,智界1111,3998,15.45,2.34,11,60,9.03,7.04,8.2,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103,9.3,104.9,7.09,17.7,9.45,17.03,6171.93,2.78,55.37,4104.75,1.85,114.27,2.73,0,31.7,10.13,69.94,69.88,3.7,596,0,8.16,2256,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:25,智界1111,3998,15.49,2.35,11,60,9.03,7.04,8.2,594.6,3.74,2223,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103,9.3,104.9,7.1,17.7,9.5,16.92,6168.87,2.78,55.25,4101.71,1.85,113.73,2.73,0,31.7,10.15,69.94,69.88,3.88,596,0,8.02,2234,47,70,70,0,0,0,42,2026-5-7 17:47 +2026-5-7,17:47:26,智界1111,3998,15.51,2.35,10.9,60.1,9.03,7.05,8,594.9,3.75,2230,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103.3,8.9,104.8,7.11,17.6,9.64,16.82,6177.5,2.77,54.63,4121.09,1.85,114.04,2.73,0,31.6,10.15,69.93,69.88,3.74,596,0,8.14,2282,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:27,智界1111,4000,15.53,2.36,10.9,60.1,9.03,7.05,7.9,594.6,3.75,2229,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103.4,8.8,104.8,7.11,17.6,9.64,16.71,6183.48,2.77,55.21,4109.71,1.84,113.6,2.73,0,31.6,10.15,69.93,69.9,3.8,596,0,8.1,2266,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:28,智界1111,3999,15.55,2.36,10.9,60.3,9.06,7.05,7.9,594.6,3.76,2235,12,0.23,57.2,7.8,86,49.7,67.9,14.6,0,103.7,9,104.8,7.11,17.6,9.64,16.71,6195.23,2.77,55.3,4116.85,1.84,113.93,2.73,0,31.6,10.17,69.93,69.9,3.88,596,0,8.08,2262,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:29,智界1111,3999,15.57,2.36,10.9,60.3,9.06,7.06,8.1,594.6,3.76,2235,12,0.23,57.2,7.8,86,49.7,67.9,14.5,0,104,9.2,104.7,7.12,17.6,9.69,16.71,6209.96,2.78,55.46,4128.77,1.85,114.26,2.73,0,31.6,10.19,69.93,69.9,3.86,596,0,8.04,2259,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:30,智界1111,3999,15.57,2.36,10.9,60.5,9.07,7.07,8.3,594.9,3.78,2248,11.9,0.23,57.2,7.7,86,49.7,67.9,14.5,0,104.4,9.4,104.7,7.13,17.5,9.74,16.71,6230.75,2.77,55.39,4142.26,1.84,114.7,2.73,0,31.6,10.19,69.93,69.9,3.86,596,0,8.02,2270,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:31,智界1111,4000,15.59,2.36,10.9,60.7,9.07,7.07,8.2,594.6,3.78,2247,11.9,0.23,57.2,7.7,86,49.7,67.9,14.5,0,104.6,9.4,104.6,7.13,17.5,9.84,16.71,6236.34,2.78,55.56,4147.78,1.85,114.89,2.73,0,31.6,10.18,69.94,69.9,3.88,596,0,8.08,2316,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:32,智界1111,4000,15.59,2.36,10.9,60.8,9.08,7.07,8.1,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.7,67.8,14.5,0,104.9,9.2,104.6,7.13,17.6,9.74,16.24,6254.23,2.78,55.72,4159.68,1.85,115.22,2.73,0,31.6,10.14,69.94,69.9,3.8,596,0,8.04,2264,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:33,智界1111,3999,15.6,2.36,10.9,61,9.08,7.08,7.5,594.6,3.79,2253,12,0.23,57.2,7.7,85.9,49.7,67.8,14.5,0,105.1,8.7,104.5,7.13,17.5,228.12,16.71,7515.91,3.34,55.69,5420.96,2.41,115.47,2.73,0,31.6,10.14,69.96,69.89,3.7,596,0,8.08,2205,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:34,智界1111,4000,15.6,2.36,10.9,61.1,9.07,7.08,7.4,594.9,3.78,2248,12,0.23,57.2,7.7,85.9,49.7,67.8,14.5,0,105.5,8.5,104.5,7.14,17.5,9.89,16.71,6285.19,2.8,56.03,4182.27,1.86,115.88,2.74,0,31.6,10.13,69.95,69.89,3.88,596,0,8.1,2319,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:35,智界1111,4000,15.6,2.36,10.9,61.2,9.06,7.08,7.6,594.6,3.76,2235,12,0.23,57.2,7.7,85.9,49.7,67.8,14.4,0,105.6,8.6,104.4,7.13,17.5,9.84,16.71,6287.88,2.81,56.41,4186.22,1.87,115.99,2.74,0,31.6,10.13,69.95,69.89,3.82,596,0,8.12,2264,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:36,智界1111,4000,15.6,2.36,10.9,61.2,9.06,7.08,7.6,594.6,3.76,2235,12,0.23,57.2,7.7,85.9,49.7,67.8,14.4,0,105.6,8.7,104.4,7.13,17.5,9.84,16.71,6287.88,2.81,56.41,4186.22,1.87,115.99,2.74,0,31.6,10.04,69.94,69.9,3.78,596,0,8.04,2252,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:37,智界1111,3999,15.6,2.36,10.9,61.5,9.05,7.08,7.6,594.9,3.75,2230,12,0.23,57.2,7.7,85.9,49.7,67.8,14.4,0,105.4,8.7,104.3,7.12,17.5,9.79,16.71,6278.66,2.82,56.48,4182.25,1.88,115.91,2.75,0,31.6,10.04,69.94,69.9,4,596,0,8.04,2383,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:38,智界1111,3999,15.6,2.36,10.9,61.5,9.05,7.08,7.6,594.6,3.76,2235,12,0.23,57.2,7.7,85.9,49.7,67.8,14.4,0,105.6,8.7,104.3,7.12,17.3,9.99,16.71,6284.62,2.81,56.41,4186.21,1.87,116.02,2.75,0,31.6,10.02,69.94,69.89,3.84,595,0,8.06,2253,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:39,智界1111,4000,15.6,2.36,10.8,61.8,9.07,7.08,7.8,594.9,3.76,2236,12,0.23,57.2,7.7,85.9,49.7,67.8,14.4,0,106,8.9,104.3,7.12,17.3,9.99,16.61,6308.42,2.82,56.57,4199.51,1.88,116.38,2.75,0,31.6,10.01,69.94,69.89,3.88,595,0,8.02,2291,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:40,智界1111,4000,15.6,2.36,10.8,61.8,9.07,7.08,7.8,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.7,67.8,14.4,0,106.7,9,104.2,7.13,17.2,10.14,16.61,6346.8,2.82,56.66,4227.26,1.88,117.15,2.75,0,31.6,9.95,69.95,69.89,3.8,595,0,8.08,2262,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:41,智界1111,4000,15.59,2.36,10.8,62,9.06,7.07,7.7,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.8,67.9,14.3,0,107.1,8.9,104.2,7.13,17.2,10.14,16.61,6366.24,2.83,56.8,4240.37,1.89,117.48,2.76,0,31.6,9.95,69.96,69.89,3.74,595,0,8.08,2227,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:42,智界1111,4000,15.59,2.37,10.8,62,9.05,7.07,7.7,594.6,3.78,2247,12,0.23,57.2,7.7,85.9,49.8,67.9,14.3,0,107.1,9,104.1,7.13,17.2,10.14,16.5,6368.89,2.83,56.7,4243.64,1.89,117.06,2.75,0,31.6,9.95,69.96,69.89,3.8,595,0,8.04,2261,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:43,智界1111,4000,15.58,2.37,10.8,62.3,9.06,7.07,7.8,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.7,67.9,14.3,0,106.8,8.9,104.1,7.12,17.2,10.09,16.5,6352.63,2.82,56.37,4232.97,1.88,116.73,2.76,0,31.6,9.95,69.96,69.89,3.72,595,0,8.04,2219,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:44,智界1111,4000,15.58,2.37,10.8,62.3,9.05,7.07,7.8,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.7,67.9,14.3,0,106.6,9,104.1,7.11,17.3,9.94,16.5,6340.73,2.82,56.41,4225.03,1.88,116.51,2.76,0,31.7,9.94,69.95,69.89,3.84,596,0,8,2287,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:45,智界1111,4000,15.56,2.38,10.8,62.5,9.05,7.07,7.7,594.9,3.76,2236,12,0.23,57.2,7.7,86,49.8,67.9,14.3,0,106.7,8.9,104,7.11,17.2,10.04,16.39,6346.57,2.84,56.55,4230.76,1.89,116.1,2.76,0,31.7,9.94,69.95,69.89,3.88,596,0,8,2315,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:46,智界1111,4000,15.56,2.39,10.8,62.5,9.05,7.07,7.7,594.6,3.76,2235,12,0.23,57.2,7.7,86,49.8,67.9,14.3,0,106.7,8.9,104,7.12,17.2,10.09,16.28,6346.59,2.84,56.42,4230.08,1.89,115.58,2.76,0,31.7,9.94,69.92,69.89,3.72,596,0,8.12,2272,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:47,智界1111,4000,15.55,2.39,10.8,62.7,9.03,7.07,7.5,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,107.1,8.8,103.9,7.13,17.2,10.14,16.28,6368.69,2.86,56.76,4247.18,1.91,116.01,2.76,0,31.7,9.94,69.92,69.89,3.66,596,0,8.14,2231,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:48,智界1111,4000,15.55,2.4,10.8,62.7,9.03,7.07,7.3,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,107.1,8.4,103.9,7.12,17.2,10.09,16.17,6368.68,2.86,56.6,4246.48,1.91,115.49,2.77,0,31.7,9.9,69.94,69.88,3.9,596,0,8.14,2330,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:49,智界1111,3999,15.53,2.4,10.7,63,9.03,7.07,7.2,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,107,8.3,103.8,7.12,17.2,10.09,16.07,6362.63,2.85,56.48,4242.39,1.9,115.36,2.76,0,31.7,9.9,69.94,69.88,3.72,596,0,8.14,2281,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:50,智界1111,4000,15.53,2.4,10.7,63,9.03,7.07,7.4,594.9,3.76,2236,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,106.7,8.5,103.8,7.11,17.1,10.14,16.07,6344.78,2.84,56.15,4230.49,1.89,115.01,2.76,0,31.7,9.91,69.93,69.88,3.8,596,0,8.16,2247,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:51,智界1111,4000,15.51,2.4,10.7,63.1,9.02,7.07,7.4,594.6,3.76,2235,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,106.7,8.5,103.7,7.11,17,10.24,16.07,5390.46,2.41,56.13,4232.95,1.89,115.01,2.76,0,31.7,9.93,69.93,69.88,3.82,596,0,8.12,2281,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:52,智界1111,4001,15.51,2.4,10.7,63.1,9.02,7.07,7.4,594.9,3.76,2236,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,106.6,8.5,103.7,7.11,17,10.24,16.07,6338.74,2.83,56.06,4228.98,1.89,114.87,2.76,0,31.7,9.94,69.96,69.89,3.88,596,0,8.04,2240,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:53,智界1111,4000,15.48,2.4,10.7,63.2,9,7.06,7.4,594.6,3.76,2235,12,0.23,57.2,7.7,86,49.8,67.9,14.2,0,106.2,8.5,103.6,7.11,17,10.24,16.07,6316.46,2.83,55.81,4216.79,1.89,114.47,2.76,0,31.7,9.94,69.94,69.89,3.78,596,0,8.12,2275,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:54,智界1111,4000,15.48,2.4,10.7,63.1,8.99,7.05,7.4,594.9,3.75,2230,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,106.2,8.4,103.6,7.1,17,10.2,16.07,6316.45,2.83,55.94,4216.78,1.89,114.47,2.77,0,31.7,9.94,69.94,69.89,3.78,596,0,8.14,2351,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:55,智界1111,4000,15.44,2.4,10.7,63.1,8.99,7.05,7.6,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,106.2,8.6,103.6,7.1,17,10.2,16.07,6322.81,2.84,56.03,4221.69,1.9,114.47,2.77,0,31.7,9.94,69.96,69.88,3.72,596,0,8.16,2219,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:56,智界1111,3999,15.44,2.4,10.7,63,8.99,7.04,7.7,594.9,3.74,2224,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.8,8.9,103.5,7.09,16.9,10.25,16.07,6295.73,2.83,55.8,4205.78,1.89,114.07,2.77,0,31.6,9.98,69.96,69.88,3.74,596,0,8.18,2232,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:57,智界1111,4000,15.4,2.4,10.7,63,8.99,7.05,7.9,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.6,9.1,103.5,7.09,16.9,10.25,16.07,6286.99,2.83,55.68,4200.28,1.89,113.83,2.77,0,31.6,9.98,69.94,69.88,3.74,596,0,7.94,2230,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:58,智界1111,4000,15.39,2.4,10.7,62.5,8.98,7.05,7.9,594.9,3.74,2224,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.8,9,103.4,7.09,16.9,10.3,16.07,6300.42,2.83,55.7,4211.92,1.89,114.04,2.77,0,31.6,9.98,69.94,69.88,3.6,596,0,7.98,2148,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:47:59,智界1111,3999,15.39,2.4,10.7,62.5,8.97,7.04,7.7,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.7,8.7,103.4,7.09,16.9,10.25,16.07,6294.45,2.83,55.67,4207.93,1.89,113.96,2.78,0,31.6,9.98,69.96,69.88,3.74,596,0,8.08,2263,47,70,70,0,0,0,41,2026-5-7 17:47 +2026-5-7,17:48:00,智界1111,3998,15.35,2.4,10.7,61.8,8.97,7.03,7.5,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.5,8.5,103.4,7.08,16.8,10.25,16.07,6294.84,2.83,55.54,4208.85,1.89,113.88,2.78,0,31.6,10,69.96,69.88,3.72,596,0,8.08,2212,47,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:01,智界1111,4000,15.35,2.4,10.7,61.8,8.97,7.03,7.4,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.5,8.5,103.3,7.07,16.8,10.25,16.07,6285.62,2.83,55.49,4204.84,1.89,113.72,2.78,0,31.6,10,69.96,69.88,3.8,596,0,7.94,2163,47,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:02,智界1111,4000,15.33,2.4,10.8,61.1,8.97,7.03,7.9,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.3,8.7,103.3,7.07,16.9,10.15,16.17,6276.87,2.82,55.22,4201.85,1.89,113.55,2.78,0,31.6,9.97,69.96,69.88,3.8,596,0,7.96,2218,47,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:03,智界1111,4000,15.33,2.4,10.8,61.1,8.97,7.03,8.2,594.9,3.74,2224,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.4,9.6,103.2,7.08,16.9,10.2,16.17,6279.6,2.82,55.4,4205.85,1.89,113.66,2.78,0,31.6,9.96,69.96,69.88,3.82,596,0,8.04,2214,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:04,智界1111,4000,15.32,2.4,10.8,60.4,8.97,7.03,8.2,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.6,9.6,103.1,7.08,16.9,10.2,16.17,6289.86,2.83,55.51,4215.06,1.9,113.88,2.79,0,31.6,9.95,69.96,69.88,3.9,596,0,8.02,2328,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:05,智界1111,3998,15.32,2.4,10.8,60.4,8.97,7.03,7.9,594.9,3.74,2224,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.3,9,103.1,7.07,16.9,10.15,16.17,6271.98,2.82,55.33,4203.08,1.89,113.61,2.79,0,31.6,9.97,69.96,69.89,3.68,596,0,7.98,2243,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:06,智界1111,3998,15.31,2.4,10.8,59.9,8.97,7.02,7.6,594.9,3.74,2224,11.9,0.23,57.2,7.7,86,49.8,67.9,14.1,0,104.9,8.6,103,7.07,16.9,9.97,16.17,4534.42,2.04,69.68,7554.44,3.4,170.05,2.79,0,31.6,9.97,69.96,69.89,3.76,596,0,8.08,2258,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:07,智界1111,3999,15.31,2.4,10.8,59.9,8.97,7.02,7.7,594.6,3.74,2223,11.9,0.23,57.2,7.7,86,49.8,67.9,14.1,0,104.9,8.8,103,7.07,16.8,10.25,16.17,6246.51,2.81,55.12,4188.33,1.88,113.15,2.8,0,31.6,9.98,69.96,69.89,3.84,596,0,8.14,2287,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:08,智界1111,3999,15.32,2.4,10.8,59.6,8.99,7.02,8.2,594.6,3.74,2223,11.9,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105,9.2,102.9,7.07,16.8,10.25,16.17,6247.65,2.81,55.19,4191.1,1.89,113.26,2.8,0,31.6,10.02,69.96,69.89,3.82,596,0,8.12,2280,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:09,智界1111,3999,15.32,2.4,10.8,59.6,9,7.02,8.4,594.6,3.75,2229,11.9,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105,9.7,102.9,7.08,16.8,10.3,16.17,6247.66,2.8,55.05,4191.11,1.88,113.26,2.8,0,31.6,10.02,69.96,69.88,3.72,596,0,8,2221,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:10,智界1111,3999,15.35,2.4,10.8,59.5,9.01,7.03,8.5,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,105.3,9.8,102.8,7.08,16.8,10.3,16.17,6257.52,2.81,55.41,4199.42,1.89,113.58,2.81,0,31.6,10.04,69.96,69.88,3.78,596,0,8.06,2256,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:11,智界1111,3999,15.35,2.41,10.8,59.5,9,7.03,8.3,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,106,9.4,102.8,7.09,16.8,10.35,16.06,6299.13,2.83,55.47,4226.66,1.9,113.83,2.81,0,31.6,10.04,69.96,69.88,3.74,596,0,8.16,2225,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:12,智界1111,3999,15.39,2.41,10.8,59.5,9,7.04,7.6,594.6,3.76,2235,11.9,0.23,57.2,7.7,86,49.8,67.8,14.1,0,106.1,9,102.7,7.09,16.8,10.35,16.06,6295.43,2.82,55.46,4225.72,1.89,113.94,2.81,0,31.6,10.09,69.96,69.88,3.76,596,0,8.14,2242,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:13,智界1111,4000,15.39,2.43,10.8,59.6,9.01,7.04,7.6,594.6,3.76,2235,11.9,0.23,57.2,7.7,86,49.8,67.8,14.1,0,106.3,8.8,102.7,7.09,16.8,10.35,15.84,6307.29,2.82,55.25,4232.3,1.89,113.12,2.82,0,31.6,10.09,69.96,69.87,3.88,596,0,8.02,2261,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:14,智界1111,3998,15.42,2.43,10.8,59.7,9.01,7.03,8.1,594.6,3.76,2235,12,0.23,57.2,7.7,86,49.8,67.9,14.1,0,106.3,9.1,102.6,7.09,16.8,10.35,15.84,6299.23,2.82,55.31,4228.61,1.89,113.18,2.81,0,31.6,10.09,69.98,69.88,3.88,596,0,8.18,2314,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:15,智界1111,4000,15.42,2.44,10.8,59.8,9.02,7.04,8.3,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,106.5,9.7,102.6,7.09,16.8,10.35,15.73,6311.08,2.8,54.82,4235.87,1.88,112.83,2.82,0,31.6,10.09,69.98,69.88,3.78,596,0,8.24,2258,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:16,智界1111,4000,15.46,2.44,10.8,59.9,9.05,7.04,8.3,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.8,14.1,0,106.6,9.8,102.6,7.1,16.8,10.4,15.73,6310.61,2.8,54.95,4234.92,1.88,112.94,2.81,0,31.6,10.08,69.96,69.88,3.84,596,0,8.22,2294,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:17,智界1111,4000,15.46,2.44,10.8,60.1,9.06,7.05,8.1,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.8,14.1,0,107.4,9.5,102.5,7.11,16.8,10.44,15.73,6354.67,2.82,55.36,4266.72,1.89,113.79,2.82,0,31.6,10.06,69.96,69.88,3.8,596,0,8.22,2322,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:18,智界1111,3999,15.47,2.44,10.8,60.2,9.07,7.06,7.9,594.6,3.78,2247,12,0.23,57.2,7.7,85.9,49.9,67.8,14.1,0,107.7,9.3,102.5,7.11,16.8,10.44,15.73,6370.8,2.84,55.69,4277.39,1.9,114.11,2.82,0,31.6,10.06,69.96,69.87,3.68,596,0,8.22,2195,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:19,智界1111,4000,15.47,2.44,10.8,60.3,9.06,7.07,7.7,594.6,3.78,2247,12,0.23,57.2,7.7,85.9,49.9,67.8,14.1,0,108.4,9,102.4,7.12,16.8,10.49,15.73,6408.88,2.85,56.05,4305.2,1.92,114.85,2.82,0,31.6,10.04,69.94,69.88,3.84,595,0,8.22,2265,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:20,智界1111,3999,15.47,2.44,10.8,60.4,9.05,7.07,7.8,594.6,3.78,2247,12,0.23,57.2,7.7,85.9,49.9,67.8,14.1,0,108.1,9.1,102.4,7.11,16.8,10.44,15.73,6391.14,2.84,55.89,4293.28,1.91,114.56,2.83,0,31.6,10.07,69.94,69.88,3.82,595,0,8.24,2273,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:21,智界1111,4000,15.47,2.44,10.8,60.5,9.05,7.06,7.9,594.6,3.76,2235,12,0.23,57.2,7.7,85.9,49.9,67.9,14.1,0,108.1,9.4,102.4,7.12,16.8,10.49,15.73,6391.15,2.86,56.19,4293.29,1.92,114.53,2.84,0,31.6,10.05,69.97,69.88,3.8,595,0,8.22,2322,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:22,智界1111,3999,15.47,2.44,10.8,60.5,9.06,7.06,8.1,594.6,3.78,2247,12,0.23,57.2,7.7,85.9,49.9,67.9,14.1,0,108.2,9.7,102.3,7.11,16.8,10.44,15.73,6393.71,2.85,55.94,4297.25,1.91,114.66,2.83,0,31.6,10.03,69.97,69.88,3.72,595,0,8.12,2262,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:23,智界1111,4000,15.47,2.44,10.8,60.9,9.06,7.06,8.1,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,108.7,9.5,102.3,7.11,16.8,10.44,15.73,6411.44,2.85,56.1,4309.16,1.92,114.95,2.83,0,31.6,10.03,69.97,69.88,3.9,595,0,8.16,2276,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:24,智界1111,4000,15.48,2.45,10.8,61,9.06,7.05,8,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,108.7,9.4,102.2,7.1,16.8,10.4,15.73,6419.9,2.86,56.2,4317.09,1.92,115.17,2.84,0,31.6,10.04,69.96,69.89,3.82,595,0,8.22,2251,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:25,智界1111,4001,15.48,2.45,10.8,61.2,9.08,7.06,7.6,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.1,9,102.2,7.11,16.7,10.54,15.62,6441.9,2.86,56.12,4331.02,1.92,115.06,2.84,0,31.6,10.04,69.95,69.89,3.86,595,0,8.19,2233,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:26,智界1111,4000,15.48,2.45,10.8,61.2,9.09,7.06,7.6,594.9,3.78,2248,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.2,9,102.1,7.12,16.7,10.59,15.62,6444.45,2.87,56.3,4335,1.93,115.19,2.84,0,31.6,10.05,69.94,69.89,3.78,596,0,8.22,2295,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:27,智界1111,4000,15.47,2.45,10.8,61.5,9.09,7.07,8.2,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.6,9.8,102.1,7.12,16.7,10.59,15.62,6469.7,2.87,56.36,4352.15,1.93,115.61,2.86,0,31.6,10.05,69.94,69.89,3.68,596,0,8.24,2255,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:28,智界1111,3999,15.47,2.45,10.8,61.5,9.07,7.08,8.3,594.9,3.79,2254,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.9,10,102.1,7.13,16.7,10.64,15.62,6487.42,2.88,56.49,4364.07,1.94,115.96,2.85,0,31.6,10.05,69.96,69.87,3.88,596,0,8.22,2287,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:29,智界1111,4000,15.45,2.45,10.8,61.8,9.03,7.07,7.9,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.9,9.8,102,7.13,16.7,10.64,15.62,6487.34,2.88,56.48,4366.61,1.94,115.93,2.86,0,31.6,10.03,69.96,69.87,3.78,596,0,8.19,2314,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:30,智界1111,3999,15.45,2.45,10.8,61.8,9.02,7.07,7.5,594.9,3.79,2254,12,0.23,57.2,7.7,86,49.9,67.9,14.1,0,109.7,8.8,102,7.11,16.7,10.54,15.62,6475.51,2.87,56.35,4358.64,1.93,115.75,2.86,0,31.6,10.03,69.97,69.87,3.82,596,0,8.1,2313,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:31,智界1111,4000,15.44,2.45,10.8,62,9.04,7.06,7.3,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68,14.1,0,109.5,8.7,102,7.1,16.7,10.54,15.62,6471.26,2.88,56.45,4355.94,1.94,115.61,2.87,0,31.6,10.02,69.95,69.87,3.9,596,0,8.06,2309,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:32,智界1111,3999,15.44,2.45,10.8,62,9.03,7.05,7.5,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68,14.1,0,109.5,9,101.9,7.1,16.6,10.6,15.62,6461.97,2.88,56.4,4351.95,1.94,115.54,2.86,0,31.7,9.95,69.95,69.88,3.82,596,0,8.18,2306,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:33,智界1111,3999,15.45,2.46,10.9,62.3,9.04,7.05,8,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68,14.1,0,109.7,9.2,101.9,7.1,16.6,10.6,15.61,6454.42,2.87,56.24,4348.64,1.94,114.98,2.86,0,31.7,9.93,69.96,69.88,3.78,596,0,8.22,2265,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:34,智界1111,4000,15.45,2.47,10.9,62.3,9.05,7.05,8.2,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68,14.1,0,110.1,9.9,101.8,7.1,16.6,10.6,15.5,6492.33,2.89,56.45,4375.75,1.95,115.18,2.86,0,31.7,9.94,69.96,69.89,3.82,596,0,8.18,2328,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:35,智界1111,4001,15.46,2.48,10.9,62.6,9.06,7.06,8.2,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68,14.1,0,110.2,9.9,101.8,7.11,16.6,10.64,15.4,6496.58,2.89,56.36,4377.74,1.95,114.76,2.87,0,31.7,9.94,69.96,69.89,3.78,596,0,8.12,2240,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:36,智界1111,4000,15.46,2.48,10.9,62.6,9.04,7.06,8.1,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,68,14.1,0,110.8,9.7,101.7,7.11,16.6,10.64,15.4,6528.54,2.9,56.52,4401.58,1.95,115.42,2.86,0,31.6,9.92,69.96,69.89,3.82,596,0,8.19,2285,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:37,智界1111,4001,15.43,2.48,10.8,62.8,9.03,7.05,8,594.9,3.79,2254,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110.4,9.5,101.7,7.1,16.6,10.6,15.3,6515.84,2.89,56.25,4390.81,1.95,115.02,2.86,0,31.6,9.92,69.97,69.89,3.82,596,0,8.19,2197,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:38,智界1111,4001,15.43,2.48,10.8,62.8,9.04,7.05,7.7,594.6,3.79,2253,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110.3,9,101.6,7.11,16.5,10.74,15.3,6500.66,2.89,56.18,4382.87,1.95,114.82,2.88,0,31.6,9.91,69.96,69.87,3.94,596,0,8.16,2274,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:39,智界1111,4000,15.4,2.48,10.8,62.9,9.04,7.05,7.6,594.9,3.79,2254,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110.2,9.1,101.5,7.1,16.4,10.8,15.3,6496.35,2.88,56.04,4382.71,1.94,114.74,2.87,0,31.6,9.91,69.96,69.87,3.72,596,0,8.18,2276,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:40,智界1111,4000,15.37,2.48,10.8,62.9,9.04,7.05,7.8,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110,9.3,101.5,7.1,16.4,10.8,15.3,6489.53,2.89,56.05,4378.58,1.95,114.53,2.87,0,31.6,9.92,69.95,69.88,3.82,596,0,8.02,2273,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:41,智界1111,4000,15.37,2.48,10.9,62.8,9.02,7.06,8.2,594.6,3.78,2247,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110,9.8,101.4,7.1,16.4,10.8,15.4,6495.43,2.89,56.13,4385.23,1.95,114.69,2.87,0,31.5,9.92,69.95,69.88,3.74,596,0,8.14,2231,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:42,智界1111,4000,15.35,2.48,10.9,62.8,9.01,7.05,8.2,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,110,9.7,101.4,7.09,16.4,10.75,15.4,6489.46,2.91,56.49,4383.79,1.97,114.58,2.87,0,31.5,9.97,69.96,69.87,3.76,596,0,8.14,2242,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:43,智界1111,4001,15.3,2.48,10.9,62.5,9.01,7.05,7.9,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,109.6,9.4,101.3,7.09,16.4,10.8,15.4,6488.49,2.91,56.34,4386.2,1.97,114.45,2.86,0,31.5,9.97,69.96,69.87,3.82,596,0,8.08,2231,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:44,智界1111,3999,15.28,2.48,10.9,62.5,9,7.04,7.8,594.6,3.74,2223,12,0.23,57.2,7.7,86,49.9,68.1,14.2,0,109.5,9.2,101.2,7.09,16.4,10.75,15.4,6461.5,2.91,56.28,4370.22,1.97,114.09,2.87,0,31.6,10,69.96,69.89,3.88,596,0,8,2315,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:45,智界1111,4000,15.28,2.48,10.9,62.1,8.98,7.03,7.5,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.9,68.2,14.2,0,109.2,8.9,101.2,7.08,16.4,10.65,15.4,6458.88,2.9,56.04,4368.75,1.96,113.96,2.87,0,31.6,9.96,69.96,69.89,3.8,596,0,7.96,2265,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:46,智界1111,4000,15.26,2.48,10.9,62.1,8.98,7.02,7.7,594.6,3.75,2229,12,0.23,57.2,7.7,86,49.9,68.2,14.2,0,109.1,9.1,101.1,7.08,16.4,10.7,15.4,6441.13,2.89,55.85,4359.32,1.96,113.65,2.86,0,31.6,9.96,69.94,69.89,3.76,596,0,8.08,2247,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:47,智界1111,3999,15.23,2.48,10.9,61.4,8.98,7.02,7.9,594.9,3.76,2236,11.9,0.23,57.2,7.7,86,49.9,68.2,14.2,0,108.6,9.3,101,7.08,16.4,10.7,15.4,6434.27,2.88,55.51,4355.14,1.95,113.47,2.87,0,31.6,9.95,69.95,69.89,3.82,596,0,8.08,2283,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:48,智界1111,3999,15.23,2.48,10.9,61.4,8.98,7.03,7.9,594.6,3.76,2235,11.9,0.23,57.2,7.7,86,49.9,68.2,14.2,0,108.6,9.4,100.9,7.07,16.4,10.65,15.4,6409.86,2.87,55.38,4343.13,1.94,113.15,2.88,0,31.6,9.93,69.95,69.89,3.82,596,0,8,2275,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:49,智界1111,3999,15.22,2.48,10.9,60.6,8.97,7.02,8,594.9,3.78,2248,11.9,0.23,57.2,7.7,86,50,68.2,14.3,0,108.6,9.5,100.9,7.08,16.4,10.7,15.4,6417.42,2.85,55.09,4348.41,1.93,113.26,2.88,0,31.6,9.93,69.95,69.89,3.9,596,0,8.04,2326,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:50,智界1111,3999,15.22,2.48,10.9,60.6,8.97,7.02,8,594.6,3.76,2235,11.9,0.23,57.2,7.7,86,50,68.2,14.3,0,108.7,9.4,100.7,7.06,16.3,10.7,15.4,6410.71,2.87,55.41,4348.38,1.95,113.26,2.88,0,31.6,9.95,69.96,69.89,3.78,596,0,8.18,2253,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:51,智界1111,3998,15.23,2.48,10.9,59.9,8.97,7.02,7.9,594.9,3.78,2248,12,0.23,57.2,7.7,86,50,68.2,14.3,0,108.7,9.4,100.6,7.07,16.3,10.75,15.4,6405.73,2.85,55.11,4347.13,1.93,113.29,2.89,0,31.7,9.95,69.96,69.89,3.86,596,0,8.16,2303,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:52,智界1111,3998,15.24,2.48,10.9,59.7,8.97,7.01,8,594.6,3.76,2235,12,0.23,57.2,7.7,86,50,68.2,14.3,0,108.7,9.5,100.6,7.07,16.3,10.75,178.58,6405.73,2.87,55.43,4347.13,1.95,113.26,2.89,0,31.7,9.96,69.95,69.88,3.8,596,0,8.12,2228,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:53,智界1111,3999,15.24,2.48,10.9,59.5,8.99,7.01,8.1,594.6,3.76,2235,12,0.23,57.2,7.7,86,50,68.2,14.3,0,109.2,9.6,100.5,7.07,16.2,10.85,15.4,7743.13,3.46,55.71,5678.8,2.54,113.78,2.89,0,31.7,9.96,69.95,69.89,4.02,596,0,8.02,2298,46,70,70,0,0,0,41,2026-5-7 17:48 +2026-5-7,17:48:54,智界1111,3999,15.26,2.48,10.9,59.4,9,7.02,8.1,594.6,3.78,2247,12,0.23,57.2,7.7,86,50,68.2,14.3,0,109.4,9.6,100.5,7.07,16.2,10.85,15.4,6440.3,2.87,55.53,4372.57,1.95,113.99,2.89,0,31.7,9.96,69.94,69.89,3.8,596,0,8.24,2262,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:48:55,智界1111,4000,15.26,2.48,10.9,59.3,9,7.03,8.2,594.6,3.76,2235,12,0.23,57.2,7.7,86,50,68.3,14.3,0,109.8,9.8,100.4,7.08,16.2,10.9,15.4,6458.82,2.89,56.05,4387.29,1.96,114.37,2.9,0,31.7,9.97,69.94,69.89,3.82,596,0,8.22,2274,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:48:56,智界1111,3998,15.3,2.48,10.9,59.3,9.01,7.03,8.1,594.9,3.76,2236,12,0.23,57.2,7.7,86,50,68.2,14.3,0,110.1,9.7,100.4,7.08,16.4,10.7,15.4,6469.79,2.89,56.26,4394.16,1.97,114.74,2.91,0,31.7,9.98,69.94,69.9,3.92,596,0,8.16,2297,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:48:57,智界1111,3999,15.3,2.48,10.9,59.2,9.02,7.03,8.1,594.6,3.78,2247,12,0.23,57.2,7.7,86,50,68.3,14.3,0,110.2,9.8,100.3,7.09,16.4,10.75,15.4,6472.28,2.88,56.04,4398.16,1.96,114.82,2.91,0,31.7,9.99,69.97,69.9,3.74,596,0,8.19,2390,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:48:58,智界1111,3999,15.33,2.49,10.9,59.2,9.03,7.04,8.2,594.9,3.8,2260,12,0.23,57.2,7.7,86,50,68.3,14.4,0,110.3,9.9,100.3,7.09,16.4,10.75,15.29,6473.14,2.86,55.68,4397.58,1.95,114.43,2.91,0,31.7,9.99,69.97,69.89,3.8,595,0,8.24,2263,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:48:59,智界1111,4001,15.33,2.49,11,59.3,9.05,7.04,8.3,594.6,3.8,2259,11.9,0.23,57.2,7.7,86,50,68.3,14.4,0,110.5,10.1,100.2,7.09,16.4,10.75,15.39,6481.48,2.87,55.83,4408.23,1.95,114.63,2.91,0,31.7,9.97,69.97,69.89,3.92,595,0,8.22,2261,46,70,70,0,0,0,40,2026-5-7 17:48 +2026-5-7,17:49:00,智界1111,3999,15.36,2.49,11,59.4,9.07,7.04,8.3,594.6,3.8,2259,11.9,0.23,57.2,7.7,86,50,68.3,14.4,0,110.6,10.1,100.2,7.1,16.4,10.8,15.39,6482.33,2.87,55.94,4408.38,1.95,114.79,2.91,0,31.7,9.94,69.97,69.89,3.7,595,0,8.24,2205,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:01,智界1111,4001,15.36,2.5,11,59.5,9.1,7.05,8.3,594.6,3.81,2265,12,0.23,57.2,7.7,86,50,68.3,14.4,0,111.3,10,100.2,7.11,16.4,10.84,15.28,6523.37,2.88,55.99,4435.57,1.96,114.97,2.92,0,31.7,9.89,69.94,69.89,3.88,595,0,8.22,2307,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:02,智界1111,4001,15.37,2.51,11,59.6,9.13,7.07,7.9,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.3,14.4,0,112.1,9.8,100.1,7.12,16.4,10.89,15.18,6565.12,2.91,56.41,4465.43,1.98,115.3,2.92,0,31.7,9.89,69.94,69.89,3.7,595,0,8.16,2199,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:03,智界1111,4000,15.37,2.51,11,59.7,9.11,7.08,7.8,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.4,9.7,100.1,7.14,16.2,11.19,15.18,6641.27,2.94,57.06,4517.24,2,116.66,2.93,0,31.7,9.89,69.96,69.89,3.84,595,0,8.22,2283,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:04,智界1111,4001,15.34,2.52,11,59.8,9.07,7.09,8.2,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.6,10.2,100,7.14,16.2,11.19,15.07,6654.65,2.95,57.1,4528.41,2.01,116.34,2.92,0,31.7,9.81,69.95,69.89,3.84,595,0,8.24,2282,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:05,智界1111,4000,15.34,2.53,11,60,9.06,7.09,8,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.6,9.8,100,7.14,16.2,11.19,14.97,6654.65,2.95,56.94,4527.67,2.01,115.88,2.92,0,31.7,9.81,69.95,69.89,3.76,596,0,8.18,2241,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:06,智界1111,4000,15.32,2.53,11,60.1,9.03,7.08,7.8,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.2,9.5,99.9,7.12,16.2,11.14,14.97,6648.73,2.95,56.85,4526.31,2.01,115.78,2.93,0,31.7,9.83,69.96,69.89,3.8,596,0,8.19,2304,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:07,智界1111,4000,15.32,2.54,11,60.1,9.03,7.08,7.6,594.6,3.78,2247,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113,9.2,99.9,7.12,16.1,11.19,14.86,6619.43,2.95,56.6,4505.62,2.01,114.78,2.93,0,31.7,9.83,69.96,69.89,3.92,596,0,8.19,2282,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:08,智界1111,4000,15.33,2.54,11,60.5,9.02,7.07,7.4,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.3,14.4,0,112.7,9,99.8,7.11,16.2,11.14,14.86,6596.66,2.93,56.32,4492.33,1.99,114.48,2.93,0,31.8,9.85,69.96,69.89,3.74,596,0,8.24,2230,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:09,智界1111,3999,15.33,2.54,11,60.6,9.02,7.06,7.4,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.3,14.4,0,112.8,9,99.7,7.11,16.1,11.14,14.86,6599.04,2.93,56.37,4496.32,2,114.61,2.94,0,31.8,9.88,69.96,69.9,3.9,596,0,8.24,2326,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:10,智界1111,4000,15.33,2.54,11,60.8,9.03,7.06,7.5,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.1,9.2,99.7,7.11,16.1,11.14,14.86,6616.59,2.93,56.37,4508.28,2,114.88,2.93,0,31.8,9.88,69.95,69.9,3.7,596,0,8.22,2280,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:11,智界1111,4001,15.36,2.54,11,61,9.05,7.06,7.6,594.9,3.8,2260,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.3,9.3,99.7,7.11,16.1,11.14,14.86,6623.13,2.93,56.5,4512.31,2,115.06,2.93,0,31.8,9.88,69.98,69.9,3.82,596,0,8.19,2255,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:12,智界1111,4000,15.36,2.54,11,61,9.04,7.06,7.6,594.6,3.81,2265,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.3,9.3,99.6,7.11,16.1,11.14,14.86,6619.64,2.92,56.38,4512.31,1.99,115.09,2.93,0,31.8,9.88,69.98,69.89,4.06,596,0,8.22,2416,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:13,智界1111,4000,15.35,2.54,11,61.3,9.03,7.06,7.7,594.6,3.81,2265,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113.1,9.5,99.6,7.11,16.1,11.14,14.86,6621.36,2.92,56.36,4513.62,1.99,115.09,2.93,0,31.8,9.9,69.94,69.89,3.8,596,0,8.24,2267,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:14,智界1111,3999,15.36,2.54,11,61.3,9.03,7.06,7.6,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.3,14.4,0,113,9.3,99.5,7.11,16.1,11.14,14.86,6600.35,2.92,56.36,4501.67,1.99,114.81,2.93,0,31.8,9.9,69.94,69.89,3.82,596,0,8.24,2272,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:15,智界1111,4000,15.36,2.54,11,61.7,9.04,7.06,7.5,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.1,9.2,99.5,7.1,16,11.2,14.86,6604.46,2.92,56.43,4504.33,1.99,114.88,2.93,0,31.7,9.93,69.94,69.89,3.92,596,0,8.14,2336,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:16,智界1111,4000,15.36,2.54,11,61.8,9.06,7.06,7.5,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.2,9.2,99.4,7.1,16,11.2,257.05,6606.81,2.92,56.48,4508.31,2,114.98,2.92,0,31.7,9.9,69.96,69.91,3.84,595,0,8.24,2233,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:17,智界1111,4000,15.36,2.54,11,62,9.05,7.05,7.6,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.6,9.4,99.4,7.1,16,11.2,14.86,6630.16,2.94,56.83,4524.24,2.01,115.39,2.93,0,31.7,9.9,69.96,69.9,3.76,595,0,8.22,2271,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:18,智界1111,4001,15.35,2.54,11,62.1,9.04,7.05,7.5,594.9,3.79,2254,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.7,9.2,99.3,7.11,16,11.24,14.86,6634.23,2.94,56.83,4529.56,2.01,115.46,2.92,0,31.7,9.89,69.96,69.9,3.72,595,0,8.22,2217,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:19,智界1111,4000,15.35,2.54,11,62.3,9.04,7.06,7.5,594.6,3.79,2253,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.7,9.2,99.3,7.11,16,11.24,14.86,6634.23,2.94,56.86,4529.56,2.01,115.49,2.93,0,31.7,9.89,69.96,69.9,3.82,596,0,8.14,2279,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:20,智界1111,4001,15.33,2.53,11,62.4,9.05,7.06,7.6,594.9,3.8,2260,12,0.23,57.2,7.7,85.9,50,68.4,14.4,0,113.4,9.4,99.2,7.12,15.9,11.39,14.97,6616.68,2.93,56.64,4520.99,2,115.65,2.93,0,31.7,9.96,69.96,69.9,3.8,596,0,8.04,2310,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:21,智界1111,4000,15.31,2.53,11,62.4,9.07,7.07,7.8,594.6,3.8,2259,12,0.23,57.2,7.7,86,50,68.4,14.4,0,113.4,9.6,99.2,7.12,15.9,11.39,14.97,6620.13,2.93,56.63,4523.63,2,115.68,2.93,0,31.7,9.96,69.96,69.89,3.96,596,0,8.19,2355,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:22,智界1111,3999,15.31,2.53,11,62.6,9.04,7.07,7.8,594.6,3.79,2253,11.9,0.23,57.2,7.7,86,50.1,68.4,14.4,0,113.6,9.5,99.1,7.11,15.9,11.34,14.97,6631.79,2.94,56.88,4531.59,2.01,115.91,2.95,0,31.7,9.96,69.95,69.9,3.88,596,0,8.22,2337,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:23,智界1111,3999,15.26,2.53,11,62.6,9.03,7.06,7.5,594.9,3.79,2254,11.9,0.23,57.2,7.7,86,50.1,68.4,14.4,0,113.4,9.1,99.1,7.1,15.9,11.3,14.97,6621.79,2.94,56.69,4527.56,2.01,115.7,2.94,0,31.7,9.94,69.97,69.9,3.82,596,0,8.24,2281,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:24,智界1111,4000,15.26,2.53,11,62.6,8.99,7.04,7.3,594.6,3.79,2253,12,0.23,57.2,7.7,85.9,50.1,68.5,14.4,0,112.5,8.9,99,7.08,15.9,11.2,14.97,7424.2,3.3,70.24,5115.28,2.27,114.76,2.94,0,31.7,9.98,69.97,69.89,3.88,596,0,8.22,2273,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:25,智界1111,4001,15.23,2.53,11,62.5,8.97,7.02,7.2,594.6,3.79,2253,12,0.23,57.2,7.7,86,50.1,68.5,14.4,0,112.1,8.8,99,7.08,15.9,11.2,14.97,6549.23,2.91,55.98,4480.85,1.99,114.38,2.94,0,31.7,9.97,69.96,69.89,3.78,596,0,8.19,2322,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:26,智界1111,4000,15.23,2.54,11,62.4,8.97,7.02,7.2,594.9,3.78,2248,12,0.23,57.2,7.7,86,50.1,68.5,14.4,0,111.8,8.8,99,7.07,15.8,11.15,14.86,6533.39,2.91,55.79,4469.42,1.99,113.56,2.94,0,31.7,9.97,69.96,69.89,3.82,596,0,8.22,2251,46,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:27,智界1111,4001,15.22,2.54,11,62.1,8.94,7.02,7.6,594.6,3.78,2247,12,0.23,57.2,7.7,86,50.1,68.5,14.4,0,111.8,9,98.9,7.07,16,11.05,14.86,6531.66,2.91,55.79,4470.72,1.99,113.53,2.94,0,31.7,9.99,69.96,69.9,3.88,596,0,8.16,2184,45,70,70,0,0,0,40,2026-5-7 17:49 +2026-5-7,17:49:28,智界1111,3999,15.22,2.54,11,61.8,8.94,7.02,7.8,594.6,3.76,2235,11.9,0.23,57.2,7.7,86,50.1,68.5,14.4,0,111.5,9.5,98.9,7.07,15.9,11.15,14.86,6514.13,2.91,55.94,4458.73,1.99,113.29,2.94,0,31.7,10.02,69.96,69.9,3.9,595,0,8.18,2314,45,70,70,0,0,0,40,2026-5-7 17:49 diff --git a/CapMachine.Wpf/Services/DataRecordService.cs b/CapMachine.Wpf/Services/DataRecordService.cs index de96d7e..43867d4 100644 --- a/CapMachine.Wpf/Services/DataRecordService.cs +++ b/CapMachine.Wpf/Services/DataRecordService.cs @@ -123,13 +123,14 @@ namespace CapMachine.Wpf.Services new Columns(){ Name="OS2温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="COND2温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="EVAP出口温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, + new Columns(){ Name="吸气电加热温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="冷媒流量[kg/h]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="润滑油流量[kg/h]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="排气温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="膨胀阀前压力[BarA]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="膨胀阀前温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="EVAP出口压力[BarA]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, - new Columns(){ Name="腔内压力[BarA]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, + new Columns(){ Name="背压压力[BarA]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="压缩机表面温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="PTC流量[L/min]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, new Columns(){ Name="PTC入水温度[℃]",MapType=typeof(float).ToString(),IsIdentity=false,IsPrimary=false}, diff --git a/CapMachine.Wpf/Services/MachineRtDataService.cs b/CapMachine.Wpf/Services/MachineRtDataService.cs index dfd1898..f6b83e5 100644 --- a/CapMachine.Wpf/Services/MachineRtDataService.cs +++ b/CapMachine.Wpf/Services/MachineRtDataService.cs @@ -162,7 +162,8 @@ namespace CapMachine.Wpf.Services TagManger.AddTag(new Tag("OS1温度", "OS1温度[℃]", "OS1Temp", "程序", "VW15030", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("OS2温度", "OS2温度[℃]", "OS2Temp", "程序", "VW15032", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("COND2温度", "COND2温度[℃]", "Cond2Temp", "程序", "VW15034", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - TagManger.AddTag(new Tag("EVAP出口温度", "EVAP出口温度[℃]", "EVAPExpTemp", "程序", "VW15036", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); + TagManger.AddTag(new Tag("吸气电加热温度", "吸气电加热温度[℃]", "InhEleHeatTemp", "程序", "VW15036", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); + TagManger.AddTag(new Tag("EVAP出口温度", "EVAP出口温度[℃]", "EVAPExpTemp", "程序", "VW15104", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); //TagManger.AddTag(new Tag("冷媒流量", "冷媒流量[L/min]", "VRV", "程序", "VW15038", 100, 0, 1, "L/min", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("冷媒流量", "冷媒流量[kg/h]", "VRV", "程序", "VW15038", 100, 0, 10, "kg/h", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("润滑油流量", "润滑油流量[kg/h]", "LubeFlow", "程序", "VW15040", 100, 0, 10, "kg/h", new ShortTagValue(), false) { DecimalPoint = 1 }); @@ -170,7 +171,7 @@ namespace CapMachine.Wpf.Services TagManger.AddTag(new Tag("膨胀阀前压力", "膨胀阀前压力[BarA]", "TxvFrPress", "程序", "VW15044", 100, 0, 100, "BarA", new ShortTagValue(), false) { DecimalPoint = 2 }); TagManger.AddTag(new Tag("膨胀阀前温度", "膨胀阀前温度[℃]", "TxvFrTemp", "程序", "VW15046", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("EVAP出口压力", "EVAP出口压力[BarA]", "EVAPExpPress", "程序", "VW15048", 100, 0, 100, "BarA", new ShortTagValue(), false) { DecimalPoint = 2 }); - TagManger.AddTag(new Tag("腔内压力", "腔内压力[BarA]", "IntrplPress", "程序", "VW15050", 100, 0, 100, "BarA", new ShortTagValue(), false) { DecimalPoint = 2 }); + TagManger.AddTag(new Tag("背压压力", "背压压力[BarA]", "IntrplPress", "程序", "VW15050", 100, 0, 100, "BarA", new ShortTagValue(), false) { DecimalPoint = 2 }); TagManger.AddTag(new Tag("压缩机表面温度", "压缩机表面温度[℃]", "CapSurfTemp", "程序", "VW15052", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("PTC流量", "PTC流量[L/min]", "PTCFlow", "程序", "VW15054", 100, 0, 100, "L/min", new ShortTagValue(), false) { DecimalPoint = 2 }); TagManger.AddTag(new Tag("PTC入水温度", "PTC入水温度[℃]", "PTCEntTemp", "程序", "VW15056", 100, 0, 100, "℃", new ShortTagValue(), false) { DecimalPoint = 2 }); @@ -197,642 +198,14 @@ namespace CapMachine.Wpf.Services TagManger.AddTag(new Tag("过冷度", "过冷度[K]", "Subcooling", "程序", string.Empty, 100, 0, 1, "K", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("制热量Qh", "制热量Qh[W]", "HeatingCapacity", "程序", string.Empty, 1000, 0, 1, "W", new ShortTagValue(), false) { DecimalPoint = 1 }); - TagManger.AddTag(new Tag("压缩机性能系数(制热COP)", "压缩机性能系数(制热COP)", "COPHeat", "程序", string.Empty, 1000, 0, 1, "K", new ShortTagValue(), false) { DecimalPoint = 1 }); + TagManger.AddTag(new Tag("压缩机性能系数(制热COP)", "压缩机性能系数(制热COP)", "COPHeat", "程序", string.Empty, 1000, 0, 1, "", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("等熵效率ns", "等熵效率ns[%]", "IsentrpEff", "程序", string.Empty, 1000, 0, 1, "%", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("制冷量Qc", "制冷量Qc[W]", "CoolCapacity", "程序", string.Empty, 1000, 0, 1, "W", new ShortTagValue(), false) { DecimalPoint = 1 }); - TagManger.AddTag(new Tag("压缩机性能系数(制冷COP)", "压缩机性能系数(制冷COP)", "COPCool", "程序", string.Empty, 1000, 0, 1, "K", new ShortTagValue(), false) { DecimalPoint = 1 }); + TagManger.AddTag(new Tag("压缩机性能系数(制冷COP)", "压缩机性能系数(制冷COP)", "COPCool", "程序", string.Empty, 1000, 0, 1, "", new ShortTagValue(), false) { DecimalPoint = 1 }); TagManger.AddTag(new Tag("容积效率nv", "容积效率nv[%]", "VoltricEff", "程序", string.Empty, 1000, 0, 1, "%", new ShortTagValue(), false) { DecimalPoint = 1 }); #endregion - - - #region SongZhi - - ////【SongZhi】 - - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "转速[rpm]",//名称带单位 - // NameNoUnit = "转速",//无单位名称 - // EnName = "Speed",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "rpm", - // PVAddress = "VW100",//地址信息 - // SVAddress = "VW200", - // MVAddress = "VW242", - // IsMeter = true, - // AutoHandSwitchAddress = "VW240", - // Precision = 1, - // DecimalPoint = 0, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "排气压力[MpaA]",//名称带单位 - // NameNoUnit = "排气压力",//无单位名称 - // EnName = "ExPress",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "MpaA", - // PVAddress = "VW102",//地址信息 - // SVAddress = "VW202", - // MVAddress = "VW242", - // IsMeter = true, - // AutoHandSwitchAddress = "VW240", - // Precision = 1000, - // DecimalPoint = 3, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "吸气压力[MpaA]",//名称带单位 - // NameNoUnit = "吸气压力",//无单位名称 - // EnName = "InhPress",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "MpaA", - // PVAddress = "VW104",//地址信息 - // SVAddress = "VW204", - // MVAddress = "VW246", - // IsMeter = true, - // AutoHandSwitchAddress = "VW244", - // Precision = 1000, - // DecimalPoint = 3, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "吸气温度[℃]",//名称带单位 - // NameNoUnit = "吸气温度",//无单位名称 - // EnName = "InhTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW106",//地址信息 - // SVAddress = "VW206", - // MVAddress = "VW250", - // IsMeter = true, - // AutoHandSwitchAddress = "VW248", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "冷凝器出口水温[℃]",//名称带单位 COND1水温 - // NameNoUnit = "冷凝器出口水温",//无单位名称 - // EnName = "Cond1Temp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW108",//地址信息 - // SVAddress = "VW208", - // MVAddress = "VW254", - // IsMeter = true, - // AutoHandSwitchAddress = "VW252", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "吸气混合器温度[℃]",//名称带单位 OS2温度 - // NameNoUnit = "吸气混合器温度",//无单位名称 OS2温度 - // EnName = "OS2Temp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW110",//地址信息 - // SVAddress = "VW210", - // MVAddress = "VW258", - // IsMeter = true, - // AutoHandSwitchAddress = "VW256", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "HV_V[V]",//名称带单位 - // NameNoUnit = "HV_V",//无单位名称 - // EnName = "HV_V",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "V", - // PVAddress = "VW112",//地址信息 - // SVAddress = "VW212", - // MVAddress = "VW262", - // IsMeter = true, - // AutoHandSwitchAddress = "VW260", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "HV_A[A]",//名称带单位 - // NameNoUnit = "HV_A",//无单位名称 - // EnName = "HV_A",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "A", - // PVAddress = "VW114",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 100, - // DecimalPoint = 2, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "HV_W[W]",//名称带单位 - // NameNoUnit = "HV_W",//无单位名称 - // EnName = "HV_W",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "W", - // PVAddress = "VW116",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 1, - // DecimalPoint = 0, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "LV_V[V]",//名称带单位 - // NameNoUnit = "LV_V",//无单位名称 - // EnName = "LV_V",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "V", - // PVAddress = "VW118",//地址信息 - // SVAddress = "VW214", - // MVAddress = "", - // IsMeter = true, - // AutoHandSwitchAddress = "", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "LV_A[A]",//名称带单位 - // NameNoUnit = "LV_A",//无单位名称 - // EnName = "LV_A",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "A", - // PVAddress = "VW120",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 100, - // DecimalPoint = 2, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "试验箱温度[℃]",//名称带单位 - // NameNoUnit = "试验箱温度",//无单位名称 - // EnName = "EnvTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW122",//地址信息 - // SVAddress = "VW216", - // MVAddress = "", - // IsMeter = true, - // AutoHandSwitchAddress = "", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "试验箱湿度[%]",//名称带单位 - // NameNoUnit = "试验箱湿度",//无单位名称 - // EnName = "EnvRH",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "%", - // PVAddress = "VW124",//地址信息 - // SVAddress = "VW218", - // MVAddress = "", - // IsMeter = true, - // AutoHandSwitchAddress = "", - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "排气温度[℃]",//名称带单位 - // NameNoUnit = "排气温度",//无单位名称 - // EnName = "ExTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW126",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "膨胀阀前温度[℃]",//名称带单位 - // NameNoUnit = "膨胀阀前温度",//无单位名称 - // EnName = "TxvFrTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW128",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "膨胀阀前压力[MpaA]",//名称带单位 - // NameNoUnit = "膨胀阀前压力",//无单位名称 - // EnName = "TxvFrPress",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "MpaA", - // PVAddress = "VW130",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 1000, - // DecimalPoint = 3, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "冷凝器进口温度[℃]",//名称带单位 - // NameNoUnit = "冷凝器进口温度",//无单位名称 - // EnName = "CondInTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW132",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "冷凝器进口压力[MpaA]",//名称带单位 - // NameNoUnit = "冷凝器进口压力",//无单位名称 - // EnName = "CondInPress",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "MpaA", - // PVAddress = "VW134",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 1000, - // DecimalPoint = 3, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "水箱进水温度[℃]",//名称带单位 - // NameNoUnit = "水箱进水温度",//无单位名称 - // EnName = "WaterTankInTemp",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // Unit = "℃", - // MaxValue = 100, - // PVAddress = "VW136",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "水加热温度H1[℃]",//名称带单位 - // NameNoUnit = "水加热温度H1",//无单位名称 - // EnName = "WaterHeatTempH1",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW138",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "压缩机表面温度1[℃]",//名称带单位 - // NameNoUnit = "压缩机表面温度1",//无单位名称 - // EnName = "CapSurfTemp1",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW140",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "压缩机表面温度2[℃]",//名称带单位 - // NameNoUnit = "压缩机表面温度2",//无单位名称 - // EnName = "CapSurfTemp2",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW142",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "压缩机表面温度3[℃]",//名称带单位 - // NameNoUnit = "压缩机表面温度3",//无单位名称 - // EnName = "CapSurfTemp3",//英文名称 - // Group = "程序",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW144",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "通讯母线电压[V]",//名称带单位 - // NameNoUnit = "通讯母线电压",//无单位名称 - // EnName = "ComCapBusVol",//英文名称 - // Group = "CANLIN",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "V", - // PVAddress = "VW146",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "通讯母线电流[A]",//名称带单位 - // NameNoUnit = "通讯母线电流",//无单位名称 - // EnName = "ComCapBusCur",//英文名称 - // Group = "CANLIN",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "A", - // PVAddress = "VW148",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 100, - // DecimalPoint = 2, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "通讯相电流[A]",//名称带单位 - // NameNoUnit = "通讯相电流",//无单位名称 - // EnName = "ComCapPhCur",//英文名称 - // Group = "CANLIN",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "A", - // PVAddress = "VW150",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 100, - // DecimalPoint = 2, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "通讯功率[W]",//名称带单位 - // NameNoUnit = "通讯功率",//无单位名称 - // EnName = "ComCapPw",//英文名称 - // Group = "CANLIN",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "W", - // PVAddress = "VW152",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 1000, - // DecimalPoint = 2, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "通讯芯片温度[℃]",//名称带单位 - // NameNoUnit = "通讯芯片温度",//无单位名称 - // EnName = "ComCapChipTemp",//英文名称 - // Group = "CANLIN",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "℃", - // PVAddress = "VW154",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "过冷度[K]",//名称带单位 - // NameNoUnit = "过冷度",//无单位名称 - // EnName = "Subcooling",//英文名称 - // Group = "计算",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "K", - // PVAddress = "",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - //TagManger.AddTag(new Tag(new ShortTagValue()) - //{ - // Name = "过热度[K]",//名称带单位 - // NameNoUnit = "过热度",//无单位名称 - // EnName = "Superheat",//英文名称 - // Group = "计算",//分组 - // MinValue = 0, - // MaxValue = 100, - // Unit = "K", - // PVAddress = "",//地址信息 - // SVAddress = "", - // MVAddress = "", - // IsMeter = false, - // Precision = 10, - // DecimalPoint = 1, - // Samp = 1, - // ValueType = typeof(short), - // Index = "", - //}); - - //#endregion - - //TagManger.AddTag(new Tag("OCR", "OCR[%]", "OCR", "程序", "VW15014", 100, 0, 10, "%", new ShortTagValue(), true) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("HV[V]", "HV[V]", "HV", "程序", "VW15016", 100, 0, 10, "V", new ShortTagValue(), true) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("HV[A]", "HV[A]", "HVCur", "程序", "VW15018", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("HV[W]", "HV[W]", "HVPw", "程序", "VW15020", 100, 0, 1, "W", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("LV[V]", "LV[V]", "LV", "程序", "VW15022", 100, 0, 10, "V", new ShortTagValue(), true) { DecimalPoint = 1 }); - ////TagManger.AddTag(new Tag("LV[A]", "LV[A]", "LVCur", "程序", "VW15024", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("LV[A]", "LV[A]", "LVCur", "程序", "VW15024", 100, 0, 100, "A", new ShortTagValue(), false) { DecimalPoint = 2 }); - //TagManger.AddTag(new Tag("环境温度", "环境温度[℃]", "EnvTemp", "程序", "VW15026", 100, 0, 10, "℃", new ShortTagValue(), true) { DecimalPoint = 1 }); - ////TagManger.AddTag(new Tag("环境湿度", "环境湿度[%]", "EnvRH", "程序", "VW15028", 100, 0, 10, "%", new ShortTagValue(), true) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("环境湿度", "环境湿度[%]", "EnvRH", "程序", "VW15028", 100, 0, 1, "%", new ShortTagValue(), true) { DecimalPoint = 0 }); - //TagManger.AddTag(new Tag("OS1温度", "OS1温度[℃]", "OS1Temp", "程序", "VW15030", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("OS2温度", "OS2温度[℃]", "OS2Temp", "程序", "VW15032", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("COND2温度", "COND2温度[℃]", "Cond2Temp", "程序", "VW15034", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("EVAP出口温度", "EVAP出口温度[℃]", "EVAPExpTemp", "程序", "VW15036", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - ////TagManger.AddTag(new Tag("冷媒流量", "冷媒流量[L/min]", "VRV", "程序", "VW15038", 100, 0, 1, "L/min", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("冷媒流量", "冷媒流量[L/min]", "VRV", "程序", "VW15038", 100, 0, 10, "L/min", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("润滑油流量", "润滑油流量[L/min]", "LubeFlow", "程序", "VW15040", 100, 0, 1, "L/min", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("排气温度", "排气温度[℃]", "ExTemp", "程序", "VW15042", 100, 0, 10, "℃", new ShortTagValue(), true) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("膨胀阀前压力", "膨胀阀前压力[MpaA]", "TxvFrPress", "程序", "VW15044", 100, 0, 100, "MpaA", new ShortTagValue(), false) { DecimalPoint = 2 }); - //TagManger.AddTag(new Tag("膨胀阀前温度", "膨胀阀前温度[℃]", "TxvFrTemp", "程序", "VW15046", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("EVAP出口压力", "EVAP出口压力[MpaA]", "EVAPExpPress", "程序", "VW15048", 100, 0, 100, "MpaA", new ShortTagValue(), false) { DecimalPoint = 2 }); - //TagManger.AddTag(new Tag("腔内压力", "腔内压力[MpaA]", "IntrplPress", "程序", "VW15050", 100, 0, 100, "MpaA", new ShortTagValue(), false) { DecimalPoint = 2 }); - //TagManger.AddTag(new Tag("压缩机表面温度", "压缩机表面温度[℃]", "CapSurfTemp", "程序", "VW15052", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("PTC流量", "PTC流量[L/min]", "PTCFlow", "程序", "VW15054", 100, 0, 1, "L/min", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("PTC入水温度", "PTC入水温度[℃]", "PTCEntTemp", "程序", "VW15056", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("PTC出水温度", "PTC出水温度[℃]", "PTCExpTemp", "程序", "VW15058", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp母线电流", "通讯Cmp母线电流[A]", "ComCapBusCur", "程序", "VW15060", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp母线电压", "通讯Cmp母线电压[V]", "ComCapBusVol", "程序", "VW15062", 100, 0, 10, "V", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp逆变器温度", "通讯Cmp逆变器温度[℃]", "ComCapInvTemp", "程序", "VW15064", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp相电流", "通讯Cmp相电流[A]", "ComCapPhCur", "程序", "VW15066", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp功率", "通讯Cmp功率[W]", "ComCapPw", "程序", "VW15068", 100, 0, 1, "W", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯Cmp芯片温度", "通讯Cmp芯片温度[℃]", "ComCapChipTemp", "程序", "VW15070", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC入水温度", "通讯PTC入水温度[℃]", "ComPTCEntTemp", "程序", "VW15072", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC出水温度", "通讯PTC出水温度[℃]", "ComPTCExpTemp", "程序", "VW15074", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC峰值电流", "通讯PTC峰值电流[A]", "ComPTCPeakCur", "程序", "VW15076", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC母线电流", "通讯PTC母线电流[A]", "ComPTCBusCur", "程序", "VW15078", 100, 0, 1, "A", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC膜温", "通讯PTC膜温[℃]", "ComPTCFlmTemp", "程序", "VW15080", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - //TagManger.AddTag(new Tag("通讯PTC模块温度", "通讯PTC模块温度[℃]", "ComPTCMdTemp", "程序", "VW15082", 100, 0, 10, "℃", new ShortTagValue(), false) { DecimalPoint = 1 }); - - #endregion + ListHandSwitchData = new List() { diff --git a/CapMachine.Wpf/Services/PPCService.cs b/CapMachine.Wpf/Services/PPCService.cs index 8babcfb..8be10c3 100644 --- a/CapMachine.Wpf/Services/PPCService.cs +++ b/CapMachine.Wpf/Services/PPCService.cs @@ -11,7 +11,9 @@ using Prism.Mvvm; using Prism.Services.Dialogs; using SixLabors.ImageSharp.ColorSpaces; using System.Collections.Generic; +using System.Globalization; using System.Text; +using System.Text.RegularExpressions; namespace CapMachine.Wpf.Services { @@ -37,6 +39,11 @@ namespace CapMachine.Wpf.Services private readonly PPCThermodynamicSixResultsCalculator _thermodynamicSixResultsCalculator; private readonly EnthalpyDrynessCalculator _enthalpyDrynessCalculator; + private DateTime _lastSuperheatSubcoolErrorLogAt = DateTime.MinValue; + private string _lastSuperheatSubcoolErrorText = string.Empty; + + private int _hvZeroStreak; + /// /// 标签中心 /// @@ -120,7 +127,7 @@ namespace CapMachine.Wpf.Services SuperHeatCoolConfig.FluidsPath = ConfigHelper.GetValue("FluidsPath"); SuperHeatCoolConfig.Cryogen = ConfigHelper.GetValue("Cryogen"); - _superheatSubcoolCalculator = new PPCSuperheatSubcoolCalculator(); + _superheatSubcoolCalculator = new PPCSuperheatSubcoolCalculator(_refpropLock); _thermodynamicSixResultsCalculator = new PPCThermodynamicSixResultsCalculator(_refpropLock); _enthalpyDrynessCalculator = new EnthalpyDrynessCalculator(_refpropLock); ReloadTherdyH3TempOffset(); @@ -337,14 +344,19 @@ namespace CapMachine.Wpf.Services { while (RtCalcEnable) { - await Task.Delay(100); + await Task.Delay(300); try { - if (!TryUpdateSuperheatAndSubcool(out var superheatSubcoolErr)) + _ = TryUpdateSuperheatAndSubcool(out var superheatSubcoolErr); + if (!string.IsNullOrWhiteSpace(superheatSubcoolErr)) { - if (!string.IsNullOrWhiteSpace(superheatSubcoolErr)) + var now = DateTime.UtcNow; + if (!string.Equals(superheatSubcoolErr, _lastSuperheatSubcoolErrorText, StringComparison.Ordinal) + || (now - _lastSuperheatSubcoolErrorLogAt) >= TimeSpan.FromSeconds(5)) { Logger?.Error($"过热度/过冷度计算失败: {superheatSubcoolErr}"); + _lastSuperheatSubcoolErrorLogAt = now; + _lastSuperheatSubcoolErrorText = superheatSubcoolErr; } } @@ -363,7 +375,6 @@ namespace CapMachine.Wpf.Services // } //} - if (TryUpdateThermodynamicSixResults(out var thermoErr)) { if (!string.IsNullOrWhiteSpace(thermoErr)) @@ -400,7 +411,7 @@ namespace CapMachine.Wpf.Services } else if (_superheatSubcoolCalculator.TryCalculateSuperheatK(InhPressTag.EngPvValue, InhTempTag.EngPvValue, out var superheatValue, out var superheatErr)) { - Superheat.EngPvValue = superheatValue; + Superheat.EngPvValue = Math.Abs(superheatValue); updated = true; } else @@ -414,7 +425,7 @@ namespace CapMachine.Wpf.Services } else if (_superheatSubcoolCalculator.TryCalculateSubcoolK(TxvFrPressTag.EngPvValue, TxvFrTempTag.EngPvValue, out var subcoolValue, out var subcoolErr)) { - Subcool.EngPvValue = subcoolValue; + Subcool.EngPvValue = Math.Abs(subcoolValue); updated = true; } else @@ -521,6 +532,52 @@ namespace CapMachine.Wpf.Services { error = string.Empty; + double w_W = HVPwTag?.EngPvValue ?? double.NaN; + if (!double.IsNaN(w_W) && !double.IsInfinity(w_W) && w_W == 0) + { + _hvZeroStreak = Math.Min(_hvZeroStreak + 1, 1000); + if (_hvZeroStreak < 3) + { + return false; + } + + HeatingCapacityQh_kW = 0; + CoolingCapacityQc_kW = 0; + COPHeating = 0; + COPCooling = 0; + IsentropicEfficiencyPct = 0; + VolumetricEfficiencyPct = 0; + + if (HeatingCapacity != null) + { + HeatingCapacity.EngPvValue = 0; + } + if (COPHeat != null) + { + COPHeat.EngPvValue = 0; + } + if (IsentrpEff != null) + { + IsentrpEff.EngPvValue = 0; + } + if (CoolCapacity != null) + { + CoolCapacity.EngPvValue = 0; + } + if (COPCool != null) + { + COPCool.EngPvValue = 0; + } + if (VoltricEff != null) + { + VoltricEff.EngPvValue = 0; + } + + return true; + } + + _hvZeroStreak = 0; + // 先把本周期所需的标签值组装为输入模型。 // PPCService 在这里负责完成“标签 -> 领域输入对象”的映射, // 从而把计算类和 UI/标签层解耦。 @@ -672,29 +729,50 @@ namespace CapMachine.Wpf.Services displacement_cc = double.NaN; error = string.Empty; - displacement_cc = 35; - return true; - + const double defaultDisplacementCc = 35d; const string key = "CompressorDisplacementCc"; - //if (!ConfigHelper.IsExist(key)) - //{ - // error = $"未配置压缩机排量,请在 App.config/appSettings 增加 {key}(单位 cc)"; - // return false; - //} - string v = ConfigHelper.GetValue(key); - if (!double.TryParse(v, out displacement_cc)) + static bool TryParseDisplacementCc(string? text, out double displacementCc) { - error = $"压缩机排量配置无法解析: {v}"; - return false; + displacementCc = double.NaN; + if (string.IsNullOrWhiteSpace(text)) + { + return false; + } + + var normalized = text.Trim().ToLowerInvariant(); + normalized = normalized.Replace(',', '.'); + + var match = Regex.Match(normalized, @"[-+]?\d+(\.\d+)?"); + if (!match.Success) + { + return false; + } + + if (!double.TryParse(match.Value, NumberStyles.Float, CultureInfo.InvariantCulture, out var v)) + { + return false; + } + + displacementCc = v; + return true; } - if (displacement_cc <= 0) + try { - error = $"压缩机排量<=0: {displacement_cc}"; - return false; + string raw = ConfigHelper.GetValue(key); + if (TryParseDisplacementCc(raw, out var cfgCc) && cfgCc > 0) + { + displacement_cc = cfgCc; + return true; + } + } + catch + { + // 忽略配置读取异常,走默认回退值 } + displacement_cc = defaultDisplacementCc; return true; } } diff --git a/CapMachine.Wpf/Services/PPCSuperheatSubcoolCalculator.cs b/CapMachine.Wpf/Services/PPCSuperheatSubcoolCalculator.cs index 615f73c..c8c5efa 100644 --- a/CapMachine.Wpf/Services/PPCSuperheatSubcoolCalculator.cs +++ b/CapMachine.Wpf/Services/PPCSuperheatSubcoolCalculator.cs @@ -85,9 +85,9 @@ namespace CapMachine.Wpf.Services /// /// 初始化过热度 / 过冷度计算类。 /// - public PPCSuperheatSubcoolCalculator() + public PPCSuperheatSubcoolCalculator(object refpropLock) { - _support = new LocalCalculationSupport(); + _support = new LocalCalculationSupport(refpropLock); } /// @@ -149,6 +149,12 @@ namespace CapMachine.Wpf.Services superheatK = double.NaN; error = string.Empty; + if (double.IsNaN(suctionPressureBarA) || double.IsInfinity(suctionPressureBarA) || suctionPressureBarA <= 0) + { + error = "吸气压力无效"; + return false; + } + // REFPROP 相关函数调用前先做幂等初始化。 if (!_support.EnsureRefpropInitialized(out var initErr)) { @@ -159,6 +165,12 @@ namespace CapMachine.Wpf.Services // 现有物性 helper 约定输入压力为 MPa,因此这里把 BarA 转成 MPa。 double pressureMPa = suctionPressureBarA * 0.1; + if (pressureMPa <= 0) + { + error = "吸气压力无效"; + return false; + } + // 按压力求饱和温度。 // 本计算只关心 Tsat,因此 Dl/Dv 结果不使用,用 out _ 丢弃。 if (!_support.TrySATP_SaturationByP_MPa(pressureMPa, out var tSatK, out _, out _, out var satErr)) @@ -178,6 +190,12 @@ namespace CapMachine.Wpf.Services return false; } + if (Math.Abs(superheatK) > 100.0) + { + error = $"过热度结果超范围: {superheatK}"; + return false; + } + return true; } @@ -200,6 +218,12 @@ namespace CapMachine.Wpf.Services subcoolK = double.NaN; error = string.Empty; + if (double.IsNaN(liquidPressureBarA) || double.IsInfinity(liquidPressureBarA) || liquidPressureBarA <= 0) + { + error = "液路压力无效"; + return false; + } + // REFPROP 相关函数调用前先做幂等初始化。 if (!_support.EnsureRefpropInitialized(out var initErr)) { @@ -210,6 +234,12 @@ namespace CapMachine.Wpf.Services // 现有 SATP helper 约定压力单位为 MPa,因此先由 BarA 转成 MPa。 double pressureMPa = liquidPressureBarA * 0.1; + if (pressureMPa <= 0) + { + error = "液路压力无效"; + return false; + } + // 查询该液路压力下的饱和温度 Tsat。 if (!_support.TrySATP_SaturationByP_MPa(pressureMPa, out var tSatK, out _, out _, out var satErr)) { @@ -227,6 +257,12 @@ namespace CapMachine.Wpf.Services return false; } + if (Math.Abs(subcoolK) > 100.0) + { + error = $"过冷度结果超范围: {subcoolK}"; + return false; + } + return true; } @@ -239,9 +275,14 @@ namespace CapMachine.Wpf.Services /// private sealed class LocalCalculationSupport : IPPCCalculationSupport { - private static readonly object _refpropLock = new object(); + private readonly object _refpropLock; private static volatile bool _rpInitialized; + public LocalCalculationSupport(object refpropLock) + { + _refpropLock = refpropLock ?? throw new ArgumentNullException(nameof(refpropLock)); + } + public bool EnsureRefpropInitialized(out string error) { error = string.Empty; diff --git a/CapMachine.Wpf/Services/PPCThermodynamicSixResultsCalculator.cs b/CapMachine.Wpf/Services/PPCThermodynamicSixResultsCalculator.cs index bcb3349..3ef1ea7 100644 --- a/CapMachine.Wpf/Services/PPCThermodynamicSixResultsCalculator.cs +++ b/CapMachine.Wpf/Services/PPCThermodynamicSixResultsCalculator.cs @@ -461,29 +461,21 @@ namespace CapMachine.Wpf.Services /// 失败原因。 /// 是否计算成功。 /// - /// 当前流程: - /// 1. BarA -> MPa - /// 2. 用气相 TPRHO 求摩尔密度 D - /// 3. 用 THERM 求焓 + /// 当前流程(与 HASCO_KR26001_Fr25002 保持一致): + /// 1. 使用 TPFLSH 一次计算得到 h /// private bool TryGetVaporPointEnthalpy_ByTP_BarA_C(double pressureBarA, double temperatureC, out double h_kJkg, out string error) { h_kJkg = double.NaN; error = string.Empty; - // 物性 helper 的压力输入单位是 MPa,因此先换算。 - double pMPa = pressureBarA * 0.1; - - // 先求气相摩尔密度 D。 - if (!_support.TryTPRHO_VaporDensity_ByTP_MPa_C(pMPa, temperatureC, out var d_molL, out var dErr)) + if (!_support.TryTPFLSH_ByTP_BarA_C(pressureBarA, temperatureC, out _, out var h_Jmol, out _, out _, out var flashErr)) { - error = dErr; + error = flashErr; return false; } - // THERM helper 的温度输入为 K,因此把 ℃ 转成 K 后再求焓。 - double tK = temperatureC + 273.15; - if (!_support.TryTHERM_Enthalpy_kJkg_ByT_K_D(tK, d_molL, out h_kJkg, out var hErr)) + if (!_support.TryConvertH_Jmol_To_kJkg(h_Jmol, out h_kJkg, out var hErr)) { error = hErr; return false; @@ -535,6 +527,10 @@ namespace CapMachine.Wpf.Services /// 输出比容,单位 m³/kg。 /// 失败原因。 /// 是否计算成功。 + /// + /// 当前流程(与 HASCO_KR26001_Fr25002 保持一致): + /// 1. 使用 TPFLSH 一次计算得到 d, h, s + /// private bool TryGetVaporPointState_ByTP_BarA_C(double pressureBarA, double temperatureC, out double h_kJkg, out double s_kJkgK, out double v_m3kg, out string error) { h_kJkg = double.NaN; @@ -542,32 +538,25 @@ namespace CapMachine.Wpf.Services v_m3kg = double.NaN; error = string.Empty; - // 第一步:BarA -> MPa。 - double pMPa = pressureBarA * 0.1; - - // 第二步:由气相 TPRHO 求摩尔密度 D。 - if (!_support.TryTPRHO_VaporDensity_ByTP_MPa_C(pMPa, temperatureC, out var d_molL, out var dErr)) + if (!_support.TryTPFLSH_ByTP_BarA_C(pressureBarA, temperatureC, out var d_molL, out var h_Jmol, out var s_JmolK, out _, out var flashErr)) { - error = dErr; + error = flashErr; return false; } - // 第三步:用 THERM 求吸气点比焓 h1。 - double tK = temperatureC + 273.15; - if (!_support.TryTHERM_Enthalpy_kJkg_ByT_K_D(tK, d_molL, out h_kJkg, out var hErr)) + if (!_support.TryConvertH_Jmol_To_kJkg(h_Jmol, out h_kJkg, out var hErr)) { error = hErr; return false; } - // 第四步:用 THERM 求吸气点比熵 s1。 - if (!_support.TryTHERM_VaporEntropy_ByTD(temperatureC, d_molL, out s_kJkgK, out var sErr)) + s_kJkgK = s_JmolK / _support.GetMolarMass() * 0.001; + if (double.IsNaN(s_kJkgK) || double.IsInfinity(s_kJkgK)) { - error = sErr; + error = "无效吸气熵 s1"; return false; } - // 第五步:由摩尔密度换算为质量比容 v1。 if (!_support.TryConvertMolarDensityToSpecificVolume(d_molL, out v_m3kg, out var vErr)) { error = vErr; @@ -1089,6 +1078,7 @@ namespace CapMachine.Wpf.Services { private readonly object _refpropLock; private static volatile bool _rpInitialized; + private static double _molarMassKgPerMol = double.NaN; public LocalCalculationSupport(object refpropLock) { @@ -1100,6 +1090,39 @@ namespace CapMachine.Wpf.Services error = string.Empty; if (_rpInitialized) { + if (!double.IsNaN(_molarMassKgPerMol) && !double.IsInfinity(_molarMassKgPerMol) && _molarMassKgPerMol > 0) + { + return true; + } + + lock (_refpropLock) + { + if (!double.IsNaN(_molarMassKgPerMol) && !double.IsInfinity(_molarMassKgPerMol) && _molarMassKgPerMol > 0) + { + return true; + } + + double wmm = 0; + double Trp = 0; + double Tnbpt = 0; + double Tc = 0; + double Pc = 0; + double Dc = 0; + double Zc = 0; + double acf = 0; + double dip = 0; + double Rgas = 0; + long componentId = 1; + + IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + _molarMassKgPerMol = wmm * 0.001; + if (double.IsNaN(_molarMassKgPerMol) || double.IsInfinity(_molarMassKgPerMol) || _molarMassKgPerMol <= 0) + { + error = "无效的摩尔质量"; + return false; + } + } + return true; } @@ -1155,6 +1178,30 @@ namespace CapMachine.Wpf.Services return false; } + if (double.IsNaN(_molarMassKgPerMol) || double.IsInfinity(_molarMassKgPerMol) || _molarMassKgPerMol <= 0) + { + double wmm = 0; + double Trp = 0; + double Tnbpt = 0; + double Tc = 0; + double Pc = 0; + double Dc = 0; + double Zc = 0; + double acf = 0; + double dip = 0; + double Rgas = 0; + long componentId = 1; + + IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + _molarMassKgPerMol = wmm * 0.001; + if (double.IsNaN(_molarMassKgPerMol) || double.IsInfinity(_molarMassKgPerMol) || _molarMassKgPerMol <= 0) + { + error = "无效的摩尔质量"; + _rpInitialized = false; + return false; + } + } + _rpInitialized = true; return true; } @@ -1262,7 +1309,7 @@ namespace CapMachine.Wpf.Services double w = 0; double hjt = 0; - double molarMassKgPerMol = GetMolarMass(); + double molarMassKgPerMol = _molarMassKgPerMol; if (molarMassKgPerMol <= 0) { error = "无效的摩尔质量"; @@ -1331,7 +1378,7 @@ namespace CapMachine.Wpf.Services double w = 0; double hjt = 0; - double molarMassKgPerMol = GetMolarMass(); + double molarMassKgPerMol = _molarMassKgPerMol; if (molarMassKgPerMol <= 0) { error = "无效的摩尔质量"; @@ -1367,7 +1414,7 @@ namespace CapMachine.Wpf.Services double w = 0; double hjt = 0; - double molarMassKgPerMol = GetMolarMass(); + double molarMassKgPerMol = _molarMassKgPerMol; if (molarMassKgPerMol <= 0) { error = "无效的摩尔质量"; @@ -1394,7 +1441,7 @@ namespace CapMachine.Wpf.Services return false; } - double molarMassKgPerMol = GetMolarMass(); + double molarMassKgPerMol = _molarMassKgPerMol; if (molarMassKgPerMol <= 0) { error = "无效的摩尔质量"; @@ -1412,6 +1459,105 @@ namespace CapMachine.Wpf.Services return true; } + public bool TryTPFLSH_ByTP_BarA_C( + double pressureBarA, + double temperatureC, + out double d_molL, + out double h_Jmol, + out double s_JmolK, + out double t_K, + out string error) + { + d_molL = double.NaN; + h_Jmol = double.NaN; + s_JmolK = double.NaN; + t_K = double.NaN; + error = string.Empty; + + if (!EnsureRefpropInitialized(out var initErr)) + { + error = initErr; + return false; + } + + double t = temperatureC + 273.15; + double pKPa = pressureBarA * 100.0; + + if (pKPa <= 0) + { + error = $"无效压力: {pressureBarA} BarA"; + return false; + } + + double[] x = new double[20]; + x[0] = 1.0; + + double d = 0.0; + double Dl = 0.0; + double Dv = 0.0; + double[] xliq = new double[20]; + double[] xvap = new double[20]; + double q = 0.0; + double ee = 0.0; + double h = 0.0; + double ss = 0.0; + double Cv = 0.0; + double Cp = 0.0; + double w = 0.0; + long ierr = 0; + long herrLen = 255; + string herr = new string(' ', 255); + + lock (_refpropLock) + { + IRefProp64.TPFLSHdll(ref t, ref pKPa, x, ref d, ref Dl, ref Dv, xliq, xvap, ref q, ref ee, ref h, ref ss, ref Cv, ref Cp, ref w, ref ierr, ref herr, ref herrLen); + } + + if (ierr != 0) + { + error = $"TPFLSH 错误: {herr.Trim()} (ierr={ierr})"; + return false; + } + + d_molL = d; + h_Jmol = h; + s_JmolK = ss; + t_K = t; + return true; + } + + public bool TryConvertH_Jmol_To_kJkg(double h_Jmol, out double h_kJkg, out string error) + { + h_kJkg = double.NaN; + error = string.Empty; + + double molarMassKgPerMol = _molarMassKgPerMol; + if (molarMassKgPerMol <= 0) + { + error = "无效的摩尔质量"; + return false; + } + + h_kJkg = (h_Jmol / molarMassKgPerMol) * 0.001; + return true; + } + + public double GetMolarMass() + { + if (double.IsNaN(_molarMassKgPerMol) || double.IsInfinity(_molarMassKgPerMol) || _molarMassKgPerMol <= 0) + { + double wmm = 0, Trp = 0, Tnbpt = 0, Tc = 0, Pc = 0, Dc = 0, Zc = 0, acf = 0, dip = 0, Rgas = 0; + long componentId = 1; + + lock (_refpropLock) + { + IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + } + _molarMassKgPerMol = wmm * 0.001; + } + return _molarMassKgPerMol; + } + public bool TryGetIsentropicOutletEnthalpy_h2s_ByP2AndS1_BarA(double dischargePressureBarA, double suctionEntropy_kJkgK, out double h2s_kJkg, out string error) { h2s_kJkg = double.NaN; @@ -1469,46 +1615,12 @@ namespace CapMachine.Wpf.Services return TryConvertH_Jmol_To_kJkg(h, out h2s_kJkg, out error); } - private static double GetMolarMass() - { - double wmm = 0; - double Trp = 0; - double Tnbpt = 0; - double Tc = 0; - double Pc = 0; - double Dc = 0; - double Zc = 0; - double acf = 0; - double dip = 0; - double Rgas = 0; - long componentId = 1; - - IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); - return wmm * 0.001; - } - - private static bool TryConvertH_Jmol_To_kJkg(double h_Jmol, out double h_kJkg, out string error) - { - h_kJkg = double.NaN; - error = string.Empty; - - double molarMassKgPerMol = GetMolarMass(); - if (molarMassKgPerMol <= 0) - { - error = "无效的摩尔质量"; - return false; - } - - h_kJkg = (h_Jmol / molarMassKgPerMol) * 0.001; - return true; - } - private static bool TryConvertS_kJkgK_To_JmolK(double s_kJkgK, out double s_JmolK, out string error) { s_JmolK = double.NaN; error = string.Empty; - double molarMassKgPerMol = GetMolarMass(); + double molarMassKgPerMol = _molarMassKgPerMol; if (molarMassKgPerMol <= 0) { error = "无效的摩尔质量"; diff --git a/temp_hasco_superheat.cs b/temp_hasco_superheat.cs new file mode 100644 index 0000000..af71afb --- /dev/null +++ b/temp_hasco_superheat.cs @@ -0,0 +1,79 @@ +using System; + +namespace CapMachine.Wpf.PPCalculation +{ + /// + /// 杩囩儹搴?杩囧喎搴﹁绠楀櫒銆? /// + /// 璇存槑锛氳绫讳粎璐熻矗灏佽 SATPdll 璋冪敤涓庤绠楀叕寮忥紝淇濇寔涓庡巻鍙叉祦绋嬩竴鑷淬€? /// - 鍘嬪姏鎹㈢畻淇濇寔鍘熼€昏緫锛欱arA * 100.0 + /// - 娓╁害鎹㈢畻淇濇寔鍘熼€昏緫锛歍sat[K] - 273.15 + /// - 澶辫触鏃惰繑鍥?0锛堜笌鍘熷厛鍦ㄦ湇鍔′腑鐩存帴鍐?Tag 鐨勮涓轰竴鑷达級 + /// + public sealed class SuperheatSubcoolCalculator + { + private readonly object _refpropLock; + + /// + /// 鏋勯€犲嚱鏁般€? /// + /// REFPROP 鍏ㄥ眬閿侊紙REFPROP DLL 闈炵嚎绋嬪畨鍏紝闇€涓茶鍖栬皟鐢級銆?/param> + public SuperheatSubcoolCalculator(object refpropLock) + { + _refpropLock = refpropLock ?? throw new ArgumentNullException(nameof(refpropLock)); + } + + /// + /// 鎸夋棦鏈夋祦绋嬭绠楄繃鐑害/杩囧喎搴︺€? /// + /// 鍚告皵鍘嬪姏锛圔arA锛夈€?/param> + /// 鍚告皵娓╁害锛堚剝锛夈€?/param> + /// 鑶ㄨ儉闃€鍓嶅帇鍔涳紙BarA锛夈€?/param> + /// 鑶ㄨ儉闃€鍓嶆俯搴︼紙鈩冿級銆?/param> + /// 杩囩儹搴︼紙K锛夈€傚け璐ユ椂涓?0銆?/param> + /// 杩囧喎搴︼紙K锛夈€傚け璐ユ椂涓?0銆?/param> + public void Calculate( + double inhPressBarA, + double inhTempC, + double txvFrPressBarA, + double txvFrTempC, + out double superheatK, + out double subcoolK) + { + superheatK = 0.0; + subcoolK = 0.0; + + long iErr; + long kph = 1; + + double te = 0.0; + double te1 = 0.0; + double p = 0.0; + double p1 = 0.0; + double Dl = 0.0; + double Dv = 0.0; + + double[] x = new double[20], xliq = new double[20], xvap = new double[20]; + x[0] = 1.0; + + //p = Convert.ToDouble(textBox2.Text) * 1000.0;//textBox2 Comp.鍚告皵鍘嬪姏锛坘pa锛? p = inhPressBarA * 100.0;// 淇濇寔浣犲師鏈夋祦绋嬶細灏?BarA 褰撲綔 MPa? 鍘嗗彶浠g爜涓?*1000.0锛屼笉鏀瑰彉浣犵殑绠楁硶 + + p1 = txvFrPressBarA * 100.0;// 淇濇寔浣犲師鏈夋祦绋? //p1 = Convert.ToDouble(textBox3.Text) * 1000.0;//textBox3 Evap.鑶ㄨ儉闃€鍓嶅帇鍔涳紙Mpa锛? // 缁熶竴鏀惧叆鍚屼竴鎶婇攣涓紝閬垮厤骞跺彂瀵艰嚧鐨?Fortran 璇绘枃浠?鐘舵€佺珵鎬? string herr = new string(' ', 255); long herrLen = 255; iErr = 0; + lock (_refpropLock) + { + IRefProp64.SATPdll(ref p, x, ref kph, ref te, ref Dl, ref Dv, xliq, xvap, ref iErr, ref herr, ref herrLen); + } + + if (iErr == 0) + superheatK = Math.Abs(inhTempC - (te - 273.15)); + else + superheatK = 0; + + herr = new string(' ', 255); herrLen = 255; iErr = 0; + lock (_refpropLock) + { + IRefProp64.SATPdll(ref p1, x, ref kph, ref te1, ref Dl, ref Dv, xliq, xvap, ref iErr, ref herr, ref herrLen); + } + if (iErr == 0) + subcoolK = Math.Abs(txvFrTempC - (te1 - 273.15)); + else + subcoolK = 0; + } + } +} diff --git a/temp_hasco_thermo.cs b/temp_hasco_thermo.cs new file mode 100644 index 0000000..950b9a6 --- /dev/null +++ b/temp_hasco_thermo.cs @@ -0,0 +1,984 @@ +using CapMachine.Core; +using System; +using System.Diagnostics; +using System.Text; + +namespace CapMachine.Wpf.PPCalculation +{ + /// + /// 鍏釜鐗╂€х粨鏋滐紙鍒剁儹閲?COP(鍒剁儹)/绛夌喌鏁堢巼/鍒跺喎閲?COP(鍒跺喎)/瀹圭Н鏁堢巼锛夎绠楀皝瑁呯被銆? /// + /// 璇存槑锛? /// - 鏈被鐢ㄤ簬灏嗗師鍏堜綅浜?PPCService 鐨勮绠楄繃绋嬪畬鏁存惉杩佷负鐙珛绫伙紝鏂逛究鍚庣画缁存姢涓庡姣旈獙璇併€? /// - 璁$畻鍏紡銆佸崟浣嶆崲绠椼€丷EFPROP 璋冪敤閾捐矾搴斾笌鐜版湁瀹炵幇淇濇寔涓€鑷达紝浠呭仛缁撴瀯鎬у皝瑁呫€? /// + public sealed class ThermodynamicSixResultsCalculator + { + private readonly object _refpropLock; + + private static volatile bool _rpInitialized; + private static string _rpFluidFile = string.Empty; + + private double _h3TempOffset_C = -10.0; + + public void SetH3TempOffset_C(double offsetC) + { + if (double.IsNaN(offsetC) || double.IsInfinity(offsetC)) + { + return; + } + + _h3TempOffset_C = offsetC; + } + + /// + /// 鏋勯€犲嚱鏁般€? /// + /// REFPROP 鍏ㄥ眬浜掓枼閿佸璞★紙寤鸿浼犲叆涓?PPCService 鐩稿悓鐨勯攣瀵硅薄锛岄伩鍏嶅苟鍙戠珵鎬侊級銆?/param> + public ThermodynamicSixResultsCalculator(object refpropLock) + { + _refpropLock = refpropLock ?? throw new ArgumentNullException(nameof(refpropLock)); + } + + /// + /// 杈撳叆妯″瀷锛堜粠 Tag 鎴栧閮ㄦ潵婧愯鍙栧悗浼犲叆锛夈€? /// + public readonly struct Input + { + public Input( + double suctionPress_BarA, + double suctionTemp_C, + double dischargePress_BarA, + double dischargeTemp_C, + double txvFrPress_BarA, + double txvFrTemp_C, + double hvPower_W, + double totalFlow_kg_h, + double speed_rpm, + double displacement_cc) + { + SuctionPress_BarA = suctionPress_BarA; + SuctionTemp_C = suctionTemp_C; + DischargePress_BarA = dischargePress_BarA; + DischargeTemp_C = dischargeTemp_C; + TxvFrPress_BarA = txvFrPress_BarA; + TxvFrTemp_C = txvFrTemp_C; + HvPower_W = hvPower_W; + TotalFlow_kg_h = totalFlow_kg_h; + Speed_rpm = speed_rpm; + Displacement_cc = displacement_cc; + } + + public double SuctionPress_BarA { get; } + public double SuctionTemp_C { get; } + + public double DischargePress_BarA { get; } + public double DischargeTemp_C { get; } + + public double TxvFrPress_BarA { get; } + public double TxvFrTemp_C { get; } + + public double HvPower_W { get; } + public double TotalFlow_kg_h { get; } + + public double Speed_rpm { get; } + public double Displacement_cc { get; } + } + + /// + /// 璁$畻杈撳嚭妯″瀷銆? /// + public readonly struct Result + { + public Result( + double heatingCapacityQh_kW, + double coolingCapacityQc_kW, + double copHeating, + double copCooling, + double isentropicEfficiencyPct, + double volumetricEfficiencyPct, + double mRef_kg_s, + double w_kW, + double h1_kJkg, + double s1_JmolK, + double v1_m3kg, + double h2_kJkg, + double h3_kJkg, + double h2s_kJkg) + { + HeatingCapacityQh_kW = heatingCapacityQh_kW; + CoolingCapacityQc_kW = coolingCapacityQc_kW; + COPHeating = copHeating; + COPCooling = copCooling; + IsentropicEfficiencyPct = isentropicEfficiencyPct; + VolumetricEfficiencyPct = volumetricEfficiencyPct; + + MRef_kg_s = mRef_kg_s; + W_kW = w_kW; + + H1_kJkg = h1_kJkg; + S1_JmolK = s1_JmolK; + V1_m3kg = v1_m3kg; + H2_kJkg = h2_kJkg; + H3_kJkg = h3_kJkg; + H2s_kJkg = h2s_kJkg; + } + + public double HeatingCapacityQh_kW { get; } + public double CoolingCapacityQc_kW { get; } + public double COPHeating { get; } + public double COPCooling { get; } + public double IsentropicEfficiencyPct { get; } + public double VolumetricEfficiencyPct { get; } + + public double MRef_kg_s { get; } + public double W_kW { get; } + + public double H1_kJkg { get; } + public double S1_JmolK { get; } + public double V1_m3kg { get; } + public double H2_kJkg { get; } + public double H3_kJkg { get; } + public double H2s_kJkg { get; } + } + + /// + /// 璁$畻鍏釜鐗╂€х粨鏋溿€? /// + /// 杩斿洖鍊硷細 + /// - true锛氳嚦灏戝凡鎴愬姛璁$畻 Qh/Qc/COP/畏s锛涘绉晥鐜囪嫢澶辫触灏嗚繑鍥?NaN锛屼絾鏈柟娉曚粛杩斿洖 true锛屽苟閫氳繃 error 杈撳嚭璀﹀憡淇℃伅銆? /// - false锛氬叧閿緭鍏?REFPROP 璁$畻澶辫触銆? /// + /// 杈撳叆鍙傛暟銆?/param> + /// 杈撳嚭缁撴灉銆?/param> + /// 閿欒/璀﹀憡淇℃伅銆?/param> + /// 鏄惁鎴愬姛銆?/returns> + public bool TryCalculate(Input input, out Result result, out string error) + { + result = default; + error = string.Empty; + + if (!EnsureRefpropInitialized(out var initErr)) + { + error = initErr; + return false; + } + + var w_W = input.HvPower_W; + if (!double.IsNaN(w_W) && !double.IsInfinity(w_W) && w_W == 0) + { + result = new Result( + heatingCapacityQh_kW: 0, + coolingCapacityQc_kW: 0, + copHeating: 0, + copCooling: 0, + isentropicEfficiencyPct: 0, + volumetricEfficiencyPct: 0, + mRef_kg_s: 0, + w_kW: 0, + h1_kJkg: 0, + s1_JmolK: 0, + v1_m3kg: 0, + h2_kJkg: 0, + h3_kJkg: 0, + h2s_kJkg: 0); + return true; + } + + if (!TryGetCompressorPower_kW(input, out var w_kW, out var wErr)) + { + error = wErr; + return false; + } + + if (!TryGetRefrigerantMassFlow_kg_s(input, out var mRef_kg_s, out var mRefErr)) + { + error = mRefErr; + return false; + } + + if (!TryGetVaporPointState_ByTP_BarA_C(input.SuctionPress_BarA, input.SuctionTemp_C, out var h1_kJkg, out var s1_JmolK, out var v1_m3kg, out var p1Err)) + { + error = $"h1/s1/鍚告皵姣斿璁$畻澶辫触: {p1Err}"; + return false; + } + + if (!TryGetVaporPointEnthalpy_ByTP_BarA_C(input.DischargePress_BarA, input.DischargeTemp_C, out var h2_kJkg, out var p2Err)) + { + error = $"h2 璁$畻澶辫触: {p2Err}"; + return false; + } + + double txvFrTempForH3_C = input.TxvFrTemp_C; + if (TryGetTxvFrTempForH3_ByDischargePress_BarA(input.DischargePress_BarA, out var derivedTxvFrTempForH3_C, out var satWarn)) + { + txvFrTempForH3_C = derivedTxvFrTempForH3_C; + } + else if (!string.IsNullOrWhiteSpace(satWarn)) + { + error = string.IsNullOrWhiteSpace(error) + ? $"h3娓╁害鏀圭敤SATP(鎺掓皵鍘嬪姏)璁$畻Tsat澶辫触锛屽凡鍥為€€浣跨敤TxvFrTemp_C銆傚師鍥? {satWarn}" + : $"{error}; h3娓╁害鏀圭敤SATP(鎺掓皵鍘嬪姏)璁$畻Tsat澶辫触锛屽凡鍥為€€浣跨敤TxvFrTemp_C銆傚師鍥? {satWarn}"; + } + + if (!TryGetLiquidPointEnthalpy_ByTP_BarA_C(input.TxvFrPress_BarA, txvFrTempForH3_C, out var h3_kJkg, out var p3Err)) + { + error = $"h3 璁$畻澶辫触: {p3Err}"; + return false; + } + + if (!TryGetIsentropicOutletEnthalpy_h2s_ByP2AndS1_BarA(input.DischargePress_BarA, s1_JmolK, out var h2s_kJkg, out var h2sErr)) + { + error = $"h2s 璁$畻澶辫触: {h2sErr}"; + return false; + } + + if (!TryComputeCapacitiesAndCOP(mRef_kg_s, h1_kJkg, h2_kJkg, h3_kJkg, w_kW, out var qh_kW, out var qc_kW, out var copH, out var copC, out var capErr)) + { + error = capErr; + return false; + } + + if (!TryComputeIsentropicEfficiencyPct(mRef_kg_s, h1_kJkg, h2s_kJkg, w_kW, out var etaS_pct, out var etaSErr)) + { + error = etaSErr; + return false; + } + + if (!TryComputeVolumetricEfficiencyPct(mRef_kg_s, v1_m3kg, input.Speed_rpm, input.Displacement_cc, out var etaV_pct, out var etaVErr)) + { + result = new Result( + heatingCapacityQh_kW: qh_kW, + coolingCapacityQc_kW: qc_kW, + copHeating: copH, + copCooling: copC, + isentropicEfficiencyPct: etaS_pct, + volumetricEfficiencyPct: double.NaN, + mRef_kg_s: mRef_kg_s, + w_kW: w_kW, + h1_kJkg: h1_kJkg, + s1_JmolK: s1_JmolK, + v1_m3kg: v1_m3kg, + h2_kJkg: h2_kJkg, + h3_kJkg: h3_kJkg, + h2s_kJkg: h2s_kJkg); + + error = etaVErr; + return true; + } + + result = new Result( + heatingCapacityQh_kW: qh_kW, + coolingCapacityQc_kW: qc_kW, + copHeating: copH, + copCooling: copC, + isentropicEfficiencyPct: etaS_pct, + volumetricEfficiencyPct: etaV_pct, + mRef_kg_s: mRef_kg_s, + w_kW: w_kW, + h1_kJkg: h1_kJkg, + s1_JmolK: s1_JmolK, + v1_m3kg: v1_m3kg, + h2_kJkg: h2_kJkg, + h3_kJkg: h3_kJkg, + h2s_kJkg: h2s_kJkg); + + return true; + } + + /// + /// 杈撳嚭璋冭瘯蹇収鍒?Console/Debug锛堢敤浜庝汉宸ュ姣旈獙璇侊級銆? /// + /// 鏍囬/闃舵鏍囪瘑銆?/param> + /// 杈撳叆銆?/param> + /// 杈撳嚭缁撴灉锛堝彲涓?null锛岃〃绀鸿绠楀け璐ユ椂浠呰緭鍑鸿緭鍏ワ級銆?/param> + /// 閿欒/璀﹀憡銆?/param> + public static void PrintDebugSnapshotToConsole(string title, Input input, Result? result, string error) + { + void Print(string line) + { + try { Debug.WriteLine(line); } catch { } + try { Console.WriteLine(line); } catch { } + } + + Print($"================ {title} ================"); + Print("--- Inputs ---"); + Print($"Suction : T1={input.SuctionTemp_C} 掳C, P1={input.SuctionPress_BarA} BarA"); + Print($"Discharge : T2={input.DischargeTemp_C} 掳C, P2={input.DischargePress_BarA} BarA"); + Print($"TXV-before : T3={input.TxvFrTemp_C} 掳C, P3={input.TxvFrPress_BarA} BarA"); + Print($"Flow : mTotal={input.TotalFlow_kg_h} kg/h"); + Print($"Power(HV) : W={input.HvPower_W} W"); + Print($"Speed : n={input.Speed_rpm} rpm"); + Print($"Disp : disp={input.Displacement_cc} cc"); + + if (result.HasValue) + { + var r = result.Value; + Print("--- Intermediate (computed) ---"); + Print($"mRef={r.MRef_kg_s:F8} kg/s, W={r.W_kW:F6} kW"); + Print($"h1={r.H1_kJkg:F6} kJ/kg"); + Print($"s1={r.S1_JmolK:F6} J/(mol路K)"); + Print($"v1={r.V1_m3kg:F8} m3/kg"); + Print($"h2={r.H2_kJkg:F6} kJ/kg"); + Print($"h3={r.H3_kJkg:F6} kJ/kg"); + Print($"h2s={r.H2s_kJkg:F6} kJ/kg"); + + Print("--- Final (computed) ---"); + Print($"Qc={r.CoolingCapacityQc_kW:F5} kW"); + Print($"COP(cool)={r.COPCooling:F5}"); + Print($"Qh={r.HeatingCapacityQh_kW:F5} kW"); + Print($"COP(heat)={r.COPHeating:F5}"); + Print($"etaS={r.IsentropicEfficiencyPct:F4} %"); + Print($"etaV={r.VolumetricEfficiencyPct:F3} %"); + } + + if (!string.IsNullOrWhiteSpace(error)) + { + Print($"--- Error/Warning ---\r\n{error}"); + } + + Print("===================================================="); + } + + private bool EnsureRefpropInitialized(out string error) + { + error = string.Empty; + if (_rpInitialized) return true; + + try + { + lock (_refpropLock) + { + if (_rpInitialized) return true; + + string hpath = ConfigHelper.GetValue("FluidsPath"); + if (string.IsNullOrWhiteSpace(hpath)) hpath = @".\PPCalculation\REFPROP\FLUIDS"; + + string configuredCryogen = ConfigHelper.GetValue("Cryogen"); + if (string.IsNullOrWhiteSpace(configuredCryogen)) configuredCryogen = "R134a"; + + string hfldCore = configuredCryogen.Equals("R134a", StringComparison.OrdinalIgnoreCase) + ? "R134A.FLD" + : "R134A.FLD"; + + long size = hpath.Length; + string hpathPadded = hpath + new string(' ', Math.Max(0, 255 - (int)size)); + IRefProp64.SETPATHdll(hpathPadded, ref size); + + long numComps = 1; + string hfld = hfldCore; + size = hfld.Length; + string hfldPadded = hfld + new string(' ', Math.Max(0, 10000 - (int)size)); + + string hfmix = "hmx.bnc" + new string(' ', 255); + string hrf = "DEF"; + string herr = new string(' ', 255); + long ierr = 0; + long hfldLen = hfldPadded.Length, hfmixLen = hfmix.Length, hrfLen = hrf.Length, herrLen = herr.Length; + + IRefProp64.SETUPdll(ref numComps, ref hfldPadded, ref hfmix, ref hrf, + ref ierr, ref herr, ref hfldLen, ref hfmixLen, ref hrfLen, ref herrLen); + if (ierr != 0) + { + error = $"REFPROP 鍒濆鍖栧け璐? {herr.Trim()} (ierr={ierr})"; + _rpInitialized = false; + return false; + } + + _rpInitialized = true; + _rpFluidFile = hfldCore; + return true; + } + } + catch (Exception ex) + { + error = $"REFPROP 鍒濆鍖栧紓甯? {ex.Message}"; + _rpInitialized = false; + return false; + } + } + + private static double GetMolarMass() + { + double wmm = 0, Trp = 0, Tnbpt = 0, Tc = 0, Pc = 0, Dc = 0, Zc = 0, acf = 0, dip = 0, Rgas = 0; + long componentId = 1; + IRefProp64.INFOdll(ref componentId, ref wmm, ref Trp, ref Tnbpt, ref Tc, ref Pc, ref Dc, ref Zc, ref acf, ref dip, ref Rgas); + return wmm * 0.001; + } + + private bool TryGetCompressorPower_kW(Input input, out double w_kW, out string error) + { + w_kW = double.NaN; + error = string.Empty; + + double w_W = input.HvPower_W; + if (double.IsNaN(w_W) || double.IsInfinity(w_W) || w_W <= 0) + { + error = $"鏃犳晥鍘嬬缉鏈哄姛鐜?HV[W]={w_W}"; + return false; + } + + w_kW = w_W / 1000.0; + return true; + } + + private bool TryGetRefrigerantMassFlow_kg_s(Input input, out double mRef_kg_s, out string error) + { + mRef_kg_s = double.NaN; + error = string.Empty; + + double mTotal_kg_h = input.TotalFlow_kg_h; + if (double.IsNaN(mTotal_kg_h) || double.IsInfinity(mTotal_kg_h)) + { + error = "鎬绘祦閲?鍐峰獟娴侀噺)涓?NaN/Inf"; + return false; + } + + double mRef_kg_h = mTotal_kg_h; + if (mRef_kg_h <= 0) + { + error = $"鍐峰獟璐ㄩ噺娴侀噺<=0锛屾€绘祦閲?{mTotal_kg_h}kg/h"; + return false; + } + + mRef_kg_s = mRef_kg_h / 3600.0; + return true; + } + + private bool TryGetVaporPointEnthalpy_ByTP_BarA_C(double pressureBarA, double temperatureC, out double h_kJkg, out string error) + { + h_kJkg = double.NaN; + error = string.Empty; + + if (!TryTPFLSH_ByTP_BarA_C(pressureBarA, temperatureC, out _, out var h_Jmol, out _, out _, out var flashErr)) + { + error = flashErr; + return false; + } + + if (!TryConvertH_Jmol_To_kJkg(h_Jmol, out h_kJkg, out var hErr)) + { + error = hErr; + return false; + } + + return true; + } + + private bool TryGetLiquidPointEnthalpy_ByTP_BarA_C(double pressureBarA, double temperatureC, out double h_kJkg, out string error) + { + h_kJkg = double.NaN; + error = string.Empty; + + double pMPa = pressureBarA * 0.1; + if (!TryTPRHO_LiquidDensity_ByTP_MPa_C(pMPa, temperatureC, out var d_molL, out var dErr)) + { + error = dErr; + return false; + } + + if (!TryTHERM_LiquidEnthalpy_ByTD(temperatureC, d_molL, out h_kJkg, out var hErr)) + { + error = hErr; + return false; + } + + return true; + } + + private bool TryGetVaporPointState_ByTP_BarA_C( + double pressureBarA, + double temperatureC, + out double h_kJkg, + out double s_JmolK, + out double v_m3kg, + out string error) + { + h_kJkg = double.NaN; + s_JmolK = double.NaN; + v_m3kg = double.NaN; + error = string.Empty; + + if (!TryTPFLSH_ByTP_BarA_C(pressureBarA, temperatureC, out var d_molL, out var h_Jmol, out var sOut_JmolK, out _, out var flashErr)) + { + error = flashErr; + return false; + } + + if (!TryConvertH_Jmol_To_kJkg(h_Jmol, out h_kJkg, out var hErr)) + { + error = hErr; + return false; + } + + s_JmolK = sOut_JmolK; + if (double.IsNaN(s_JmolK) || double.IsInfinity(s_JmolK)) + { + error = "鏃犳晥鍚告皵鐔?; + return false; + } + + if (!TryConvertMolarDensityToSpecificVolume(d_molL, out v_m3kg, out var vErr)) + { + error = vErr; + return false; + } + + return true; + } + + private bool TryGetIsentropicOutletEnthalpy_h2s_ByP2AndS1_BarA(double dischargePressureBarA, double suctionEntropy_JmolK, out double h2s_kJkg, out string error) + { + h2s_kJkg = double.NaN; + error = string.Empty; + + if (!EnsureRefpropInitialized(out var initErr)) + { + error = initErr; + return false; + } + + double pKPa = dischargePressureBarA * 100.0; + if (pKPa <= 0) + { + error = $"鏃犳晥鎺掓皵鍘嬪姏: {dischargePressureBarA} BarA"; + return false; + } + + if (double.IsNaN(suctionEntropy_JmolK) || double.IsInfinity(suctionEntropy_JmolK)) + { + error = "鏃犳晥鍚告皵鐔?s1"; + return false; + } + + double s_JmolK = suctionEntropy_JmolK; + + double[] z = new double[20]; + z[0] = 1.0; + + double t = 0.0; + double d = 0.0; + double Dl = 0.0; + double Dv = 0.0; + double[] xliq = new double[20]; + double[] xvap = new double[20]; + double q = 0.0; + double ee = 0.0; + double h = 0.0; + double Cv = 0.0; + double Cp = 0.0; + double w = 0.0; + long ierr = 0; + long herrLen = 255; + string herr = new string(' ', 255); + + lock (_refpropLock) + { + IRefProp64.PSFLSHdll(ref pKPa, ref s_JmolK, z, ref t, ref d, ref Dl, ref Dv, xliq, xvap, ref q, ref ee, ref h, ref Cv, ref Cp, ref w, ref ierr, ref herr, ref herrLen); + } + + if (ierr != 0) + { + error = $"PSFLSH 閿欒: {herr.Trim()} (ierr={ierr})"; + return false; + } + + if (!TryConvertH_Jmol_To_kJkg(h, out h2s_kJkg, out var hConvErr)) + { + error = hConvErr; + return false; + } + + return true; + } + + private bool TryComputeCapacitiesAndCOP( + double mRef_kg_s, + double h1_kJkg, + double h2_kJkg, + double h3_kJkg, + double w_kW, + out double qh_kW, + out double qc_kW, + out double copHeating, + out double copCooling, + out string error) + { + qh_kW = double.NaN; + qc_kW = double.NaN; + copHeating = double.NaN; + copCooling = double.NaN; + error = string.Empty; + + if (mRef_kg_s <= 0 || double.IsNaN(mRef_kg_s) || double.IsInfinity(mRef_kg_s)) + { + error = "鏃犳晥鍐峰獟璐ㄩ噺娴侀噺"; + return false; + } + if (w_kW <= 0 || double.IsNaN(w_kW) || double.IsInfinity(w_kW)) + { + error = "鏃犳晥鍘嬬缉鏈哄姛鐜?; + return false; + } + + qh_kW = mRef_kg_s * (h2_kJkg - h3_kJkg); + qc_kW = mRef_kg_s * (h1_kJkg - h3_kJkg); + + copHeating = qh_kW / w_kW; + copCooling = qc_kW / w_kW; + return true; + } + + private bool TryComputeIsentropicEfficiencyPct(double mRef_kg_s, double h1_kJkg, double h2s_kJkg, double w_kW, out double etaS_pct, out string error) + { + etaS_pct = double.NaN; + error = string.Empty; + + if (double.IsNaN(mRef_kg_s) || double.IsInfinity(mRef_kg_s) || mRef_kg_s <= 0) + { + error = "鏃犳晥鍐峰獟璐ㄩ噺娴侀噺"; + return false; + } + if (double.IsNaN(w_kW) || double.IsInfinity(w_kW) || w_kW <= 0) + { + error = "鏃犳晥鍘嬬缉鏈哄姛鐜?; + return false; + } + + double dh_isentropic = h2s_kJkg - h1_kJkg; + double eta = (mRef_kg_s * dh_isentropic) / w_kW; + if (double.IsNaN(eta) || double.IsInfinity(eta)) + { + error = "绛夌喌鏁堢巼缁撴灉寮傚父"; + return false; + } + + etaS_pct = eta * 100.0; + return true; + } + + private bool TryComputeVolumetricEfficiencyPct( + double mRef_kg_s, + double v1_m3kg, + double speed_rpm, + double displacement_cc, + out double etaV_pct, + out string error) + { + etaV_pct = double.NaN; + error = string.Empty; + + if (double.IsNaN(speed_rpm) || double.IsInfinity(speed_rpm) || speed_rpm <= 0) + { + error = $"鏃犳晥杞€? {speed_rpm} rpm"; + return false; + } + + if (double.IsNaN(displacement_cc) || double.IsInfinity(displacement_cc) || displacement_cc <= 0) + { + error = $"鏃犳晥鎺掗噺: {displacement_cc} cc"; + return false; + } + + if (double.IsNaN(v1_m3kg) || double.IsInfinity(v1_m3kg) || v1_m3kg <= 0) + { + error = "鏃犳晥鍚告皵姣斿"; + return false; + } + + if (double.IsNaN(mRef_kg_s) || double.IsInfinity(mRef_kg_s) || mRef_kg_s <= 0) + { + error = "鏃犳晥鍐峰獟璐ㄩ噺娴侀噺"; + return false; + } + + double suctionVolFlow_m3_h = (mRef_kg_s * 3600.0) * v1_m3kg; + double theoVolFlow_m3_h = (speed_rpm / 60.0) * displacement_cc * 0.0036; + if (theoVolFlow_m3_h <= 0) + { + error = "鐞嗚鍚告皵浣撶Н娴侀噺<=0"; + return false; + } + + etaV_pct = (suctionVolFlow_m3_h / theoVolFlow_m3_h) * 100.0; + return true; + } + + private bool TryTPFLSH_ByTP_BarA_C( + double pressureBarA, + double temperatureC, + out double d_molL, + out double h_Jmol, + out double s_JmolK, + out double t_K, + out string error) + { + d_molL = double.NaN; + h_Jmol = double.NaN; + s_JmolK = double.NaN; + t_K = double.NaN; + error = string.Empty; + + if (!EnsureRefpropInitialized(out var initErr)) + { + error = initErr; + return false; + } + + double t = temperatureC + 273.15; + double pKPa = pressureBarA * 100.0; + + if (pKPa <= 0) + { + error = $"鏃犳晥鍘嬪姏: {pressureBarA} BarA"; + return false; + } + + double[] x = new double[20]; + x[0] = 1.0; + + double d = 0.0; + double Dl = 0.0; + double Dv = 0.0; + double[] xliq = new double[20]; + double[] xvap = new double[20]; + double q = 0.0; + double ee = 0.0; + double h = 0.0; + double ss = 0.0; + double Cv = 0.0; + double Cp = 0.0; + double w = 0.0; + long ierr = 0; + long herrLen = 255; + string herr = new string(' ', 255); + + lock (_refpropLock) + { + IRefProp64.TPFLSHdll(ref t, ref pKPa, x, ref d, ref Dl, ref Dv, xliq, xvap, ref q, ref ee, ref h, ref ss, ref Cv, ref Cp, ref w, ref ierr, ref herr, ref herrLen); + } + + if (ierr != 0) + { + error = $"TPFLSH 閿欒: {herr.Trim()} (ierr={ierr})"; + return false; + } + + d_molL = d; + h_Jmol = h; + s_JmolK = ss; + t_K = t; + return true; + } + + private bool TryConvertH_Jmol_To_kJkg(double h_Jmol, out double h_kJkg, out string error) + { + h_kJkg = double.NaN; + error = string.Empty; + + double molarMassKgPerMol = GetMolarMass(); + if (molarMassKgPerMol <= 0) + { + error = "鏃犳晥鐨勬懇灏旇川閲?; + return false; + } + + h_kJkg = (h_Jmol / molarMassKgPerMol) * 0.001; + return true; + } + + private bool TryConvertMolarDensityToSpecificVolume(double d_molL, out double v_m3kg, out string error) + { + v_m3kg = double.NaN; + error = string.Empty; + + if (double.IsNaN(d_molL) || double.IsInfinity(d_molL) || d_molL <= 0) + { + error = $"鏃犳晥鎽╁皵瀵嗗害: {d_molL} mol/L"; + return false; + } + + double molarMassKgPerMol = GetMolarMass(); + if (molarMassKgPerMol <= 0) + { + error = "鏃犳晥鐨勬懇灏旇川閲?; + return false; + } + + double rho_kg_m3 = d_molL * molarMassKgPerMol * 1000.0; + if (rho_kg_m3 <= 0) + { + error = $"鏃犳晥瀵嗗害: {rho_kg_m3} kg/m3"; + return false; + } + + v_m3kg = 1.0 / rho_kg_m3; + return true; + } + + private bool TryTPRHO_LiquidDensity_ByTP_MPa_C(double pressureMPa, double temperatureC, out double densityMolPerL, out string error) + { + densityMolPerL = double.NaN; + error = string.Empty; + + double tK = temperatureC + 273.15; + double pKPa = pressureMPa * 1000.0; + + double[] x = new double[20]; + x[0] = 1.0; + + long kph = 1; + long kguess = 0; + double D = 0.0; + long ierr = 0; + long herrLen = 255; + string herr = new string(' ', 255); + + lock (_refpropLock) + { + IRefProp64.TPRHOdll(ref tK, ref pKPa, x, ref kph, ref kguess, ref D, ref ierr, ref herr, ref herrLen); + } + + if (ierr != 0) + { + error = $"TPRHO(娑茬浉) 閿欒: {herr.Trim()} (ierr={ierr})"; + return false; + } + + densityMolPerL = D; + return true; + } + + private bool TryTHERM_LiquidEnthalpy_ByTD(double temperatureC, double densityMolPerL, out double h_liq_kJ_per_kg, out string error) + { + h_liq_kJ_per_kg = double.NaN; + error = string.Empty; + + double tK = temperatureC + 273.15; + double D = densityMolPerL; + + double[] x = new double[20]; + x[0] = 1.0; + + double pOut = 0, e = 0, hJmol = 0, sJmolK = 0, cv = 0, cp = 0, w = 0, hjt = 0; + + double molarMassKgPerMol = GetMolarMass(); + if (molarMassKgPerMol <= 0) + { + error = "鏃犳晥鐨勬懇灏旇川閲?; + return false; + } + + lock (_refpropLock) + { + IRefProp64.THERMdll(ref tK, ref D, x, ref pOut, ref e, ref hJmol, ref sJmolK, ref cv, ref cp, ref w, ref hjt); + } + + h_liq_kJ_per_kg = (hJmol / molarMassKgPerMol) * 0.001; + return true; + } + + private bool TrySATP_SaturationTemperatureK_ByP_BarA(double pressureBarA, out double tSatK, out string error) + { + tSatK = double.NaN; + error = string.Empty; + + if (!EnsureRefpropInitialized(out var initErr)) + { + error = initErr; + return false; + } + + double pKPa = pressureBarA * 100.0; + if (pKPa <= 0) + { + error = $"鏃犳晥鍘嬪姏: {pressureBarA} BarA"; + return false; + } + + double[] x = new double[20]; + x[0] = 1.0; + + long kph = 1; + double t = 0.0; + double Dl = 0.0; + double Dv = 0.0; + double[] xliq = new double[20]; + double[] xvap = new double[20]; + long ierr = 0; + long herrLen = 255; + string herr = new string(' ', 255); + + lock (_refpropLock) + { + IRefProp64.SATPdll(ref pKPa, x, ref kph, ref t, ref Dl, ref Dv, xliq, xvap, ref ierr, ref herr, ref herrLen); + } + + if (ierr != 0) + { + error = $"SATP 閿欒: {herr.Trim()} (ierr={ierr})"; + return false; + } + + tSatK = t; + return true; + } + + private bool TryGetTxvFrTempForH3_ByDischargePress_BarA(double dischargePressBarA, out double txvFrTempForH3_C, out string warning) + { + txvFrTempForH3_C = double.NaN; + warning = string.Empty; + + if (!TrySATP_SaturationTemperatureK_ByP_BarA(dischargePressBarA, out var tSatK, out var satErr)) + { + warning = satErr; + return false; + } + + double tSatC = tSatK - 273.15; + double offsetC = _h3TempOffset_C; + txvFrTempForH3_C = tSatC + offsetC; + return true; + } + + /// + /// 鐢熸垚涓€娈典究浜庝繚瀛?瀵规瘮鐨勬枃鏈姤鍛娿€? /// + /// 鏍囬銆?/param> + /// 杈撳叆銆?/param> + /// 杈撳嚭銆?/param> + /// 閿欒/璀﹀憡銆?/param> + /// 鎶ュ憡鏂囨湰銆?/returns> + public static string BuildDebugReport(string title, Input input, Result? result, string error) + { + var sb = new StringBuilder(512); + sb.AppendLine($"================ {title} ================"); + sb.AppendLine("--- Inputs ---"); + sb.AppendLine($"Suction : T1={input.SuctionTemp_C} 掳C, P1={input.SuctionPress_BarA} BarA"); + sb.AppendLine($"Discharge : T2={input.DischargeTemp_C} 掳C, P2={input.DischargePress_BarA} BarA"); + sb.AppendLine($"TXV-before : T3={input.TxvFrTemp_C} 掳C, P3={input.TxvFrPress_BarA} BarA"); + sb.AppendLine($"Flow : mTotal={input.TotalFlow_kg_h} kg/h"); + sb.AppendLine($"Power(HV) : W={input.HvPower_W} W"); + sb.AppendLine($"Speed : n={input.Speed_rpm} rpm"); + sb.AppendLine($"Disp : disp={input.Displacement_cc} cc"); + + if (result.HasValue) + { + var r = result.Value; + sb.AppendLine("--- Intermediate (computed) ---"); + sb.AppendLine($"mRef={r.MRef_kg_s:F8} kg/s, W={r.W_kW:F6} kW"); + sb.AppendLine($"h1={r.H1_kJkg:F6} kJ/kg"); + sb.AppendLine($"s1={r.S1_JmolK:F6} J/(mol路K)"); + sb.AppendLine($"v1={r.V1_m3kg:F8} m3/kg"); + sb.AppendLine($"h2={r.H2_kJkg:F6} kJ/kg"); + sb.AppendLine($"h3={r.H3_kJkg:F6} kJ/kg"); + sb.AppendLine($"h2s={r.H2s_kJkg:F6} kJ/kg"); + + sb.AppendLine("--- Final (computed) ---"); + sb.AppendLine($"Qc={r.CoolingCapacityQc_kW:F5} kW"); + sb.AppendLine($"COP(cool)={r.COPCooling:F5}"); + sb.AppendLine($"Qh={r.HeatingCapacityQh_kW:F5} kW"); + sb.AppendLine($"COP(heat)={r.COPHeating:F5}"); + sb.AppendLine($"etaS={r.IsentropicEfficiencyPct:F4} %"); + sb.AppendLine($"etaV={r.VolumetricEfficiencyPct:F3} %"); + } + + if (!string.IsNullOrWhiteSpace(error)) + { + sb.AppendLine("--- Error/Warning ---"); + sb.AppendLine(error); + } + + sb.AppendLine("===================================================="); + return sb.ToString(); + } + } +}