GageAD.cs 7.45 KB
Newer Older
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
using FLY.Thick.Base.Common;
using FLY.Thick.Base.Server;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Simulation.Battery.RayLaser
{
    public class GageAd
    {
        #region 极片轮廓
        /// <summary>
        /// 极片的横向视图, 精度1mm,
        /// um
        /// </summary>
        public List<DataInfo> HorizontalView = new List<DataInfo>();

        /// <summary>
        /// 极片的一段涂布纵向视图,精度1mm, 第1个数据为 头部
        /// um
        /// </summary>
        public List<DataInfo> SegmentView = new List<DataInfo>();

        /// <summary>
        /// 箔材值, 当上面的视图 IsLight = true, 使用 FoilValue
        /// </summary>
        public double FoilValue { get; set; } = 27;
        #endregion

        #region 机架信息
        /// <summary>
        /// 机架长度 mm
        /// </summary>
        public int TotalLength { get; set; } = 940;

        /// <summary>
        /// 托管左支架位置 mm
        /// </summary>
        public int HoldPosLeft { get; set; } = 57;
        
        /// <summary>
        /// 托管左支架位置 mm
        /// </summary>
        public int HoldPosRight { get; set; } = 885;

        /// <summary>
        /// 支架宽度 mm
        /// </summary>
        public int HoldWidth { get; set; } = 15;

        /// <summary>
        /// 射线样品值 
        /// </summary>
        public double SampleValueRay { get; set; } = 432;

        /// <summary>
        /// 激光样品值
        /// </summary>
        public double SampleValueLaser { get; set; } = 654;

        /// <summary>
        /// 射线样品宽度 mm
        /// </summary>
        public double SampleWidthRay { get; set; } = 250;

        /// <summary>
        /// 激光样品宽度 mm
        /// </summary>
        public double SampleWidthLaser { get; set; } = 25;
        #endregion

        /// <summary>
        /// 纵向光纤与射线纵向距离 mm
        /// </summary>
        public double VSignOffsetRay { get; set; } = 207;

        /// <summary>
        /// 纵向光纤与激光纵向距离 mm
        /// </summary>
        public double VSignOffsetLaser { get; set; } = 610;


        /// <summary>
        /// 相对于机架 左起始位置 mm
        /// </summary>
        public int FilmBegin { get; set; } = 170;

        /// <summary>
        /// 极片速度 m/min
        /// </summary>
        public double FilmVelocity { get; set; } = 20;

        /// <summary>
        /// 当前极片位置 m
        /// </summary>
        public double FilmPosition { get; set; } = 0;

        /// <summary>
        /// 纵向光纤信号触发了
        /// </summary>
        public bool IsVSignLight { get; set; }

        /// <summary>
        /// 同步信号触发了
        /// </summary>
        public bool IsSyncLight { get; set; }
        public CurveCollection curve_laser;
        public CurveCollection curve_ray;


        public void Init() {
            curve_ray = new CurveCollection("curve_ray.json");
            curve_laser = new CurveCollection("curve_laser.json");

            Load();
        }
        void Load() {
            Load_DataInfo(HorizontalView, "HorizontalView.csv");
            Load_DataInfo(SegmentView, "SegmentView.csv");
        }
        void Load_DataInfo(List<DataInfo> dataInfos, string csvFilePath)
        {
            dataInfos.Clear();
            using (StreamReader sr = new StreamReader(csvFilePath))
            {
                string header = sr.ReadLine();//标题 , Thick, HSign

                while (!sr.EndOfStream)
                {
                    string s = sr.ReadLine();
                    string[] ss = s.Split(',');

                    double thk = double.Parse(ss[0]);
                    int hsign = int.Parse(ss[1]);
                    dataInfos.Add(new DataInfo()
                    {
                        Thick = thk,
                        IsLight = hsign == 1
                    });
                }
                sr.Close();
            }
        }

        DateTime lastTime = DateTime.MinValue;
        public void OnPoll(DateTime now) {


            if (lastTime == DateTime.MinValue) {
                lastTime = now;
                return;
            }

            var ts = now - lastTime;

            double ms = 1.0 * ts.Ticks / TimeSpan.TicksPerMillisecond;
            double minute = ms / 1000 / 60;
            if (FilmVelocity != 0) {
                FilmPosition += minute * FilmVelocity;
            }

            int index = (int)(FilmPosition*1000 % SegmentView.Count());
            IsVSignLight = SegmentView[index].IsLight;

            lastTime = now;
        }
        public enum PosType 
        {
            /// <summary>
            /// 空气
            /// </summary>
            Air,
            /// <summary>
            /// 极片
            /// </summary>
            Film,
            /// <summary>
            /// 托辊支架
            /// </summary>
            Hold,
            /// <summary>
            /// 样品
            /// </summary>
            Sample
        }


        /// <summary>
        /// 
        /// </summary>
        /// <param name="isRay">是射线?</param>
        /// <param name="mm">相对于机架横向位置mm</param>
        /// <param name="mm_v">相对于极片纵向位置mm</param>
        /// <param name="posType">输出位置类型</param>
        /// <returns></returns>
        public double GetValue(bool isRay, int mm, int mm_v, out PosType posType) {


            if (mm >= (HoldPosLeft - HoldWidth / 2) && mm <= (HoldPosLeft + HoldWidth / 2)) 
            {
                posType = PosType.Hold;
                return 100000;
            }

            if (mm >= FilmBegin && mm < FilmBegin + HorizontalView.Count) {
                posType = PosType.Film;
                var dataInfoH = HorizontalView[mm - FilmBegin];
                while (mm_v<0)
                {
                    mm_v += SegmentView.Count();
                }
                var dataInfoV = SegmentView[mm_v % SegmentView.Count()];

                if ((dataInfoV.IsLight)|| (dataInfoH.IsLight))
                {
                    return FoilValue;
                }

                double vValue = dataInfoV.Thick;
                double hValue = dataInfoH.Thick;

                return (vValue + hValue) / 2;
            }

            if (mm >= (HoldPosRight - HoldWidth / 2) && mm <= (HoldPosRight + HoldWidth / 2))
            {
                posType = PosType.Hold;
                return 100000;
            }

            if (isRay) {
                if (mm >= (HoldPosRight + HoldWidth / 2) && mm <= (HoldPosRight + HoldWidth / 2 + SampleWidthRay))
                {
                    posType = PosType.Sample;
                    return SampleValueRay;
                }
            }
            else
            {
                if (mm >= (HoldPosRight + HoldWidth / 2) && mm <= (HoldPosRight + HoldWidth / 2 + SampleWidthLaser))
                {
                    posType = PosType.Sample;
                    return SampleValueLaser;
                }
            }

            
            posType = PosType.Air;
            return 0;
        }
    }

    public class DataInfo
    {
        /// <summary>
        /// 上光纤是亮
        /// </summary>
        public bool IsLight;
        /// <summary>
        /// 厚度值
        /// </summary>
        public double Thick;
    }
}