IHeatBufService.cs 2.01 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
using FLY.FilmCasting.AutoDie.Common;
using FLY.FilmCasting.AutoDie.Server.Model;
using FObjBase;
using FObjBase.Reflect;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;

namespace FLY.FilmCasting.AutoDie.IService
{
    public interface IHeatBufService: INotifyPropertyChanged
    {
        #region 参数

        /// <summary>
        /// 分区表
        /// </summary>
        BoltMapCell[] Boltmap { get; set; }

        /// <summary>
        /// 加热生效曲线 [2,5,8,5,2]
        /// </summary>
        int[] HeatEffectCurve { get; set; }
        
        /// <summary>
        /// 厚度稳定范围 %, 偏差在范围内,都是稳定的 
        /// </summary>
        int StableRange { get; set; }

        /// <summary>
        /// 对位模式, 加热与厚度相关性阀值, 相关性 >=0.7
        /// </summary>
        double ThresholdR { get; set; }

        /// <summary>
        /// %
        /// 最大sigma, 只有当前的sigma  在 最大sigma 与 最小 sigma 内,才能控制
        /// </summary>
        int ThresholdSigmaMax { get; set; }

        #endregion

        #region 状态
        /// <summary>
        /// 延时
        /// </summary>
        TimeSpan Delay { get; }


        #region 稳定性
        /// <summary>
        /// 当前检测出来的厚度数据 稳定状态
        /// </summary>
        STABILITY Stability { get; }

        /// <summary>
        /// 当前检测出来的厚度数据 的稳定性 
        /// </summary>
        double CurrR { get; }

        /// <summary>
        /// 当前检测出来的厚度数据 2Sigma
        /// </summary>
        double Curr2Sigma { get; }

        /// <summary>
        /// 当前检测出来的厚度数据,时间
        /// </summary>
        DateTime CurrTime { get; }

        #endregion


        #endregion


        #region 功能
        /// <summary>
        /// 参数应用
        /// </summary>
        void Apply();




        #endregion
    }
}