31 lines
798 B
C#
31 lines
798 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwConf.Iob
|
|
{
|
|
/// <summary>
|
|
/// Classe gestione parametri legati a gestioen TempoCiclo
|
|
/// </summary>
|
|
public class TCData
|
|
{
|
|
/// <summary>
|
|
/// Fattore Lambda (innovazione) per calcolo EWMA valore TCiclo corrente
|
|
/// </summary>
|
|
public double Lambda { get; set; } = 0.4;
|
|
|
|
/// <summary>
|
|
/// Fattore massimo ammesso di delay x il TCiclo
|
|
/// </summary>
|
|
public double MaxDelayFactor { get; set; } = 1.2;
|
|
|
|
/// <summary>
|
|
/// Incremento massimo pezzi per cui fare calcolo del tempociclo attuale
|
|
/// </summary>
|
|
public double MaxIncrPz { get; set; } = 2;
|
|
|
|
}
|
|
}
|