|
@@ -1,6 +1,12 @@
|
|
|
-using MECF.Framework.Simulator.Core.Driver;
|
|
|
+using Aitex.Common.Util;
|
|
|
+using Aitex.Core.RT.Log;
|
|
|
+using Aitex.Core.Util;
|
|
|
+using MECF.Framework.Common.Device.TemperatureController;
|
|
|
+using MECF.Framework.Simulator.Core.Driver;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
+using System.Diagnostics;
|
|
|
+using System.IO;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
@@ -49,19 +55,20 @@ namespace MECF.Framework.Simulator.Core.Commons
|
|
|
{ 0x48,"Saved" }
|
|
|
};
|
|
|
|
|
|
- private double[] _reserviorValues = { 16.6, 16.6, 16.6, 16.6 };
|
|
|
+ private double[] _reserviorValues = new double[10];
|
|
|
|
|
|
- private double[] _heatValues = { 16.5, 16.5, 16.5, 16.5 };
|
|
|
+ private double[] _heatValues = new double[10];
|
|
|
|
|
|
- private double[] _targetValues = { 0, 0, 0, 0 };
|
|
|
+ private double[] _targetValues = new double[10];
|
|
|
|
|
|
private int _controlOperation = 0;
|
|
|
|
|
|
//private byte[] alarm = new byte[12] { 0,0,0,0,1,0,0,0,0,0,0,0};
|
|
|
private byte[] alarm = new byte[3] {0x30,0x33,0x30};
|
|
|
|
|
|
- System.Timers.Timer[] _timers = new System.Timers.Timer[4];
|
|
|
+ System.Timers.Timer[] _timers;
|
|
|
|
|
|
+ private int _tcCount = 1;
|
|
|
#endregion
|
|
|
|
|
|
/// <summary>
|
|
@@ -71,14 +78,63 @@ namespace MECF.Framework.Simulator.Core.Commons
|
|
|
/// <param name="type"></param>
|
|
|
public TemperatureControllerSerialPortDevice(string port) : base(port, SerialType.BUFFER)
|
|
|
{
|
|
|
- _timers[0] = new System.Timers.Timer(50);
|
|
|
- _timers[0].Elapsed += Timer_Elapsed0;
|
|
|
- _timers[1] = new System.Timers.Timer(50);
|
|
|
- _timers[1].Elapsed += Timer_Elapsed1;
|
|
|
- _timers[2] = new System.Timers.Timer(50);
|
|
|
- _timers[2].Elapsed += Timer_Elapsed2;
|
|
|
- _timers[3] = new System.Timers.Timer(50);
|
|
|
- _timers[3].Elapsed += Timer_Elapsed3;
|
|
|
+ Init(port);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 初始化
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="port"></param>
|
|
|
+ private void Init(string port)
|
|
|
+ {
|
|
|
+ //加载TC配置
|
|
|
+ try
|
|
|
+ {
|
|
|
+ string oldXmlPath = PathManager.GetCfgDir();
|
|
|
+ string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\SMCCfg.xml";
|
|
|
+ TemperatureConfig cfg = CustomXmlSerializer.Deserialize<TemperatureConfig>(new FileInfo(newXmlPath));
|
|
|
+ if (cfg != null)
|
|
|
+ {
|
|
|
+ foreach (TemperatureDeviceConfig config in cfg.TemperatureDeviceConfigs)
|
|
|
+ {
|
|
|
+ if (int.TryParse(config.Port.Substring(3,2), out int result1) && int.TryParse(port.Substring(3, 2), out int result2))
|
|
|
+ {
|
|
|
+ if(result1 + 1 == result2) _tcCount = config.TemperatureDevices.Count;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ }
|
|
|
+ //
|
|
|
+ _timers = new System.Timers.Timer[_tcCount];
|
|
|
+ for(int i = 0; i < _tcCount; i++)
|
|
|
+ {
|
|
|
+ _heatValues[i] = 16.5;
|
|
|
+ _targetValues[i] = 0;
|
|
|
+ _reserviorValues[i] = 16.6;
|
|
|
+ _timers[i] = new System.Timers.Timer(50);
|
|
|
+ switch (i)
|
|
|
+ {
|
|
|
+ case 0:
|
|
|
+ _timers[0].Elapsed += Timer_Elapsed0;
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ _timers[1].Elapsed += Timer_Elapsed1;
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ _timers[2].Elapsed += Timer_Elapsed2;
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ _timers[3].Elapsed += Timer_Elapsed3;
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ _timers[4].Elapsed += Timer_Elapsed4;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// TC1-1的调温
|
|
@@ -87,10 +143,10 @@ namespace MECF.Framework.Simulator.Core.Commons
|
|
|
/// <param name="e"></param>
|
|
|
private void Timer_Elapsed0(object sender, System.Timers.ElapsedEventArgs e)
|
|
|
{
|
|
|
- if (Math.Abs(_heatValues[0] - _targetValues[0]) >=0.2)
|
|
|
+ if (Math.Abs(_heatValues[0] - _targetValues[0]) >= 0.2)
|
|
|
{
|
|
|
//内部调温
|
|
|
- if(_heatValues[0] < _targetValues[0])
|
|
|
+ if (_heatValues[0] < _targetValues[0])
|
|
|
{
|
|
|
_heatValues[0] += 0.1;
|
|
|
}
|
|
@@ -99,7 +155,7 @@ namespace MECF.Framework.Simulator.Core.Commons
|
|
|
_heatValues[0] -= 0.1;
|
|
|
}
|
|
|
//外部调温
|
|
|
- if(_reserviorValues[0] < _targetValues[0])
|
|
|
+ if (_reserviorValues[0] < _targetValues[0])
|
|
|
{
|
|
|
_reserviorValues[0] += 0.1;
|
|
|
}
|
|
@@ -212,6 +268,39 @@ namespace MECF.Framework.Simulator.Core.Commons
|
|
|
_timers[3].Stop();
|
|
|
}
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// TC1-5的调温
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="sender"></param>
|
|
|
+ /// <param name="e"></param>
|
|
|
+ private void Timer_Elapsed4(object sender, System.Timers.ElapsedEventArgs e)
|
|
|
+ {
|
|
|
+ if (Math.Abs(_heatValues[4] - _targetValues[4]) >= 0.2)
|
|
|
+ {
|
|
|
+ //内部调温
|
|
|
+ if (_heatValues[4] < _targetValues[4])
|
|
|
+ {
|
|
|
+ _heatValues[4] += 0.1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ _heatValues[4] -= 0.1;
|
|
|
+ }
|
|
|
+ //外部调温
|
|
|
+ if (_reserviorValues[4] < _targetValues[4])
|
|
|
+ {
|
|
|
+ _reserviorValues[4] += 0.1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ _reserviorValues[4] -= 0.1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ _timers[4].Stop();
|
|
|
+ }
|
|
|
+ }
|
|
|
protected override string MessageConvert(byte[] byt)
|
|
|
{
|
|
|
string str = "";
|