73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
///
|
|
/// Copyright (c) 2016-2023 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.Keithley.TempMeter
|
|
{
|
|
public class TempMeterCfg : ComponentCfgBase, IChildComponentCfg, GenericDevices.ICalibInfoCfg
|
|
{
|
|
public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(TempMeterCfg) })[0];
|
|
public override XmlSerializer GetSerializer() { return Serializer; }
|
|
|
|
public IComponentCfgCtrl GetControl(IList<Config.Entities.Component> cmpntEntities) { return new TempMeterCfgCtrl(); }
|
|
|
|
///
|
|
/// Serialized parameters
|
|
///
|
|
public int Channel; /// 1..5
|
|
|
|
public bool UseITS90; /// true: use ITS-90 calibration coefficients
|
|
/// false: use Callendar-Van Dusen equations (coefficients)
|
|
|
|
/// ITS-90 calibration coefficients
|
|
public double R001C;
|
|
public double a7;
|
|
public double b7;
|
|
public double c7;
|
|
|
|
/// Callendar-Van Dusen equations
|
|
public double R0;
|
|
public double A;
|
|
public double B;
|
|
|
|
/// Calibration info serialized parameters displayed in Metrology tab page
|
|
public string CalibCertificateNr { get; set; }
|
|
public string CertPath { get; set; }
|
|
public DateTime CalibDate { get; set; }
|
|
public DateTime CalibValidDate { get; set; }
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
TempMeterCfg() { }
|
|
|
|
public TempMeterCfg(string name, IComponentFactory factory)
|
|
: this()
|
|
{
|
|
this.Name = name;
|
|
this.Factory = factory;
|
|
ParentName = "Keithley.Multimeter_2010_RS232";
|
|
Channel = 1;
|
|
UseITS90 = false;
|
|
R0 = 100.0;
|
|
A = 3.9083E-3;
|
|
B = -5.775E-7;
|
|
|
|
CalibCertificateNr = string.Empty;
|
|
CalibDate = TBF.UI.Constants.MinDate;
|
|
CalibValidDate = TBF.UI.Constants.MaxDate;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0}, Parent={1}, Channel={2}, ITS-90={3}",
|
|
Name,
|
|
(string.IsNullOrEmpty(ParentName) ? "-" : ParentName),
|
|
Channel,
|
|
UseITS90);
|
|
}
|
|
}
|
|
}
|