ConfIOB:
-aggiunta progetto originale (WEB) x conversione CONF
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ConfMan.IOB.Core
|
||||
{
|
||||
/// <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;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user