123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using Aitex.Core.RT.Log;
- using Aitex.Core.RT.SCCore;
- using MECF.Framework.Common.Persistent.Reservoirs;
- using MECF.Framework.Common.RecipeCenter;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- namespace CyberX8_RT.Devices.Reservoir
- {
- public class ReservoirDiReplenHelper
- {
- #region 内部变量
-
-
-
- private string _module;
-
-
-
- private ReservoirsPersistentValue _persistentValue;
-
-
-
- private object _locker = new object();
- #endregion
-
-
-
-
-
-
- public ReservoirDiReplenHelper(string module, ReservoirsPersistentValue persistentValue)
- {
- _module = module;
- _persistentValue = persistentValue;
- }
-
-
-
- public void MonitorPeriodTime()
- {
- double levelHysteresis = SC.GetValue<double>("Reservoir.LevelHysteresis");
- double diValveMaxOnTimePeriod = SC.GetValue<double>($"Reservoir.{_module}.DIValveMaxOnTimePeriod");
-
- if (_persistentValue != null && !_persistentValue.IsDiReplenOn)
- {
-
- if (DateTime.Now.Subtract(_persistentValue.PeriodStartTime).TotalMinutes >= diValveMaxOnTimePeriod * 60)
- {
- _persistentValue.PeriodStartTime = DateTime.Now;
- _persistentValue.TotalReplen = 0;
- _persistentValue.LastTotalReplen = 0;
- ReservoirsPersistentManager.Instance.UpdatePersistentValue(_module);
- }
- }
- }
-
-
-
- public bool MonitorManualDiReplenComplete(int replenSecond, Func<string, object[], bool> direplenOffAction)
- {
- lock (_locker)
- {
- _persistentValue.TotalReplen = _persistentValue.LastTotalReplen + (int)DateTime.Now.Subtract(_persistentValue.DiReplenTime).TotalSeconds;
- }
- if (DateTime.Now.Subtract(_persistentValue.DiReplenTime).TotalSeconds >= replenSecond)
- {
- bool result = direplenOffAction("", null);
- if (result)
- {
- _persistentValue.LastTotalReplen = _persistentValue.TotalReplen;
- _persistentValue.IsDiReplenOn = false;
- ReservoirsPersistentManager.Instance.UpdatePersistentValue(_module);
- LOG.WriteLog(eEvent.INFO_RESERVOIR, _module, "Manual Direplen complete");
- }
- return result;
- }
- return false;
- }
-
-
-
-
- public bool AutoDiReplenMonitorTimeOut(Func<string, object[], bool> direplenOffAction)
- {
- lock (_locker)
- {
- _persistentValue.TotalReplen = _persistentValue.LastTotalReplen + (int)DateTime.Now.Subtract(_persistentValue.DiReplenTime).TotalSeconds;
- }
- double diValveMaxOnTimePerFill = SC.GetValue<double>($"Reservoir.{_module}.DIValveMaxOnTimePerFill");
- if (DateTime.Now.Subtract(_persistentValue.DiReplenTime).TotalSeconds >= diValveMaxOnTimePerFill * 60)
- {
- bool result = direplenOffAction("", null);
- if (result)
- {
- LOG.WriteLog(eEvent.WARN_RESERVOIR, _module, $"Direplen time over {diValveMaxOnTimePerFill} min");
- _persistentValue.LastTotalReplen = _persistentValue.TotalReplen;
- _persistentValue.IsDiReplenOn = false;
- ReservoirsPersistentManager.Instance.UpdatePersistentValue(_module);
- }
- return result;
- }
- return false;
- }
-
-
-
-
-
-
-
- public bool AutoDiReplenMonitorComplete(double level, double recipeLevel, bool replenEnable,
- int direplenTimeRate, int direplenCurrentRate, Func<string, object[], bool> direplenOffAction)
- {
- double levelHysteresis = SC.GetValue<double>("Reservoir.LevelHysteresis");
-
- if (replenEnable && direplenTimeRate == 0 && direplenCurrentRate == 0 &&
- level >= recipeLevel)
- {
- LOG.WriteLog(eEvent.INFO_RESERVOIR, _module, "Auto replen complete");
- bool result = direplenOffAction("", null);
- if (result)
- {
- _persistentValue.LastTotalReplen = _persistentValue.TotalReplen;
- _persistentValue.IsDiReplenOn = false;
- ReservoirsPersistentManager.Instance.UpdatePersistentValue(_module);
- }
- }
- return false;
- }
- }
- }
|