2020-05-06 07:45:23 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using log4net;
|
|
|
|
|
|
using Config.Entities;
|
|
|
|
|
|
using TBF.BenchControl.GenericDevices;
|
|
|
|
|
|
using TBF.Resources;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.DataContainers.Evaporation
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Component : ComponentBase, IEvaporation, GenericDevices.IHasCalendarEvents
|
|
|
|
|
|
{
|
|
|
|
|
|
private static readonly ILog log = LogManager.GetLogger(typeof(Component));
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
|
{
|
|
|
|
|
|
return string.Format("{0}({1})", this.GetType().Namespace.Substring(17), Cfg.ToString(1));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
readonly EvaporationCfg myCfg;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// For a given temperature in [°C] returns an evaporation rate in [kg/s]
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public double EvaporationRate(double temperature)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Config.Formulas.GetCorrection(temperature, Corrections) / 3600.0; /// Converted from kg/h to kg/s
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Component()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Component(Generic.IComponentCfg cfg)
|
|
|
|
|
|
: base(cfg)
|
|
|
|
|
|
{
|
|
|
|
|
|
myCfg = cfg as EvaporationCfg;
|
2020-12-03 14:05:10 +00:00
|
|
|
|
log.Warn(this.ToString());
|
2020-05-06 07:45:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IList<Config.CalendarEvent.ICalendarEvent> GetCalendarEvents()
|
|
|
|
|
|
{
|
|
|
|
|
|
DateTime calibrationDue = myCfg.CalibValidDate;
|
|
|
|
|
|
IList<Config.CalendarEvent.ICalendarEvent> calendarEvents = new List<Config.CalendarEvent.ICalendarEvent>();
|
|
|
|
|
|
|
|
|
|
|
|
if (calibrationDue > TBF.UI.Constants.MinDate)
|
|
|
|
|
|
{
|
|
|
|
|
|
/// Calibration due date calendar event
|
|
|
|
|
|
calendarEvents.Add(new TBF.UI.Calendar.CalibrationDueDateEvent(calibrationDue.Date, Name,
|
|
|
|
|
|
string.Format(Strings.Calibration_due_date_is_0,
|
|
|
|
|
|
calibrationDue.Date.ToString(TBF.UI.Constants.DateFormat))));
|
|
|
|
|
|
if (DateTime.Now.Date <= calibrationDue.AddDays(-7))
|
|
|
|
|
|
{
|
|
|
|
|
|
/// Weekly reminders (last 5 weeks)
|
|
|
|
|
|
calendarEvents.Add(new TBF.UI.Calendar.CalibrationReminderEvent(calibrationDue.Date.AddDays(-35), Name,
|
|
|
|
|
|
string.Format(Strings.Calibration_due_date_is_0,
|
|
|
|
|
|
calibrationDue.Date.ToString(TBF.UI.Constants.DateFormat)),
|
|
|
|
|
|
false));
|
|
|
|
|
|
}
|
|
|
|
|
|
if (DateTime.Now.Date <= calibrationDue.Date)
|
|
|
|
|
|
{
|
|
|
|
|
|
/// Daily reminders (last 5 days)
|
|
|
|
|
|
calendarEvents.Add(new TBF.UI.Calendar.CalibrationReminderEvent(calibrationDue.AddDays(-5), Name,
|
|
|
|
|
|
string.Format(Strings.Calibration_due_date_is_0,
|
|
|
|
|
|
calibrationDue.Date.ToString(TBF.UI.Constants.DateFormat)),
|
|
|
|
|
|
true));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return calendarEvents;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|