Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 周期设置信息
 * @date 2021/09/28
 */
public class NET_CYCLE_SETTINGS_INFO extends NetSDKLib.SdkStructure{
    
    /**
     *  周期上限,最大饱和度对应的周期值nMaxCyc(30 ~ 240)
     */
    public int nCycleMax;
 
    /**
     *  周期下限,最小饱和度对应的周期值nMinCyc(30 ~ 240)
     */
    public int nCycleMin;
 
    /**
     *  饱和度约束上限(0.000~1.000)
     */
    public float fSaturitionUpLimit;
 
    /**
     *  饱和度约束下限(0.000~1.000)
     */
    public float fSaturitionDnLimit;
 
    /**
     *  周期锁定约束上限(30 ~ 240)
     */
    public int nCycleUpLimit;
 
    /**
     *  周期锁定约束下限(30 ~ 240)
     */
    public int nCycleDnLimit;
 
    /**
     *  周期上升最大步长(1 ~ 20)
     */
    public int nCycleUpStep;
 
    /**
     *  周期下降最大步长(1 ~ 20)
     */
    public int nCycleDnStep;
 
    /**
     *  平滑周期饱和度个数(1 ~ 5)
     */
    public int nSmoothCycNum;
 
    /**
     *  是否允许双周期:0不允许 1允许
     */
    public int nPermitDoubleCyc;
 
    /**
     *  触发双周期的阈值(60 ~ 240)
     */
    public int nDoubleCycThreshold;
 
    /**
     *  预留字节 
     */
    public byte[] szReserved = new byte[32];
}