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