whyclxw
2025-05-07 b22e8e7a2d6f6a2998913c381af5ceba9542d79e
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
package com.whyc.dto;
 
 
import com.whyc.util.ActionUtil;
 
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
 
public class BattTestData {
    final public static int BATT_MON_COUNT_MAX = 512;
 
    final public static int AppServer_Reinit_BattGroupData_EN=1;//修改删除添加电池组信息时识别信号
 
    final public static byte BATTDATA_NULL = 0;
    final public static byte BATTDATA_FLOAT = 1;
    final public static byte BATTDATA_CHARGE = 2;
    final public static byte BATTDATA_DISCHARGE = 3;
    final public static byte BATTDATA_JUNCHARGE = 4;
    final public static byte BATTDATA_RES = 5;
    final public static byte BATTDATA_SER = 6;
    final public static byte BATTDATA_TMP = 7;
    final public static byte BATTDATA_CONNRES = 8;
    final public static byte BATTDATA_MONITOR = 9;
 
    final public static byte BATTSTATE_NULL = 0;
    final public static byte BATTSTATE_FLOAT = 1;
    final public static byte BATTSTATE_CHARGE = 2;
    final public static byte BATTSTATE_DISCHARGE = 3;
    final public static byte BATTSTATE_JUNCHARGE = 4;
 
    final public static byte TEST_LOADER_REALLOADER = 1;
    final public static byte TEST_LOADER_FBI_IDCE = 2;
    final public static byte TEST_LOADER_FBS9100S =3;
 
    public static final byte MonData_CapVol = 0;
    public static final byte MonData_RealCap = 1;
    public static final byte MonData_RestCap = 2;
    public static final byte MonData_CapPercent = 3;
    public static final byte MonData_Vol = 4;
    public static final byte MonData_Res = 5;
    public static final byte MonData_Ser = 6;
    public static final byte MonData_Tmp = 7;
    public static final byte MonData_ConnRes = 8;
    public static final byte MonData_SerPercent = 9;
 
    public static final String CM="_CM";//移动
    public static final String CT="_CT";//电信
    public static final String CU="_CU";//联通
 
    public static final String  test_type0 ="无";//无
    public static final String  test_type1 ="浮充";
    public static final String    test_type2 ="充电";
    public static final String    test_type3 ="放电";
    public static final String  test_type4 ="均充";
    public static final String  test_type5 ="电导/内阻";
    public static final String  test_type6 ="电导";
    public static final String  test_type7 ="温度";
    public static final String  test_type8 ="连接条";
    public static final String  test_type9 ="在线监测";
 
    //放电计划状态的对应关系
    public static final int  test_plan0 = 0;//未放电
    public static final int  test_plan1 = 1;//放电延时
    public static final int  test_plan2 = 2;//放电完成
    public static final int  test_plan3 = 3;//放电进行中
    public static final int  test_plan4 = 4;//放电失败
 
    public static final int  hoursBetween = 72;//俩次放电计划相隔时间
 
    public static final int RC_NUM_PARAM=1000;//最多一千笔
 
    public static final int RC_NUM_Real = 1000;//最多一千笔
 
    //电池放电测试弹出框中显示排行前几个内阻数据
    public static final int mon_res_num=10;
    //启动创建数据库的jar文件
    public static void run_cmdOld() {
        String path=System.getProperty("user.dir");
        String realapth=path.substring(0,path.lastIndexOf("\\"));
        //System.out.println(realapth);
        String strcmd="cmd /c start  "+realapth+"/webapps/cmd_BTSE_DB_Builder.cmd";
        //
        Runtime rt = Runtime.getRuntime(); //Runtime.getRuntime()返回当前应用程序的Runtime对象
        Process ps = null;  //Process可以控制该子进程的执行或获取该子进程的信息。
        try {
            ps = rt.exec(strcmd);   //该对象的exec()方法指示Java虚拟机创建一个子进程执行指定的可执行程序,并返回与该子进程对应的Process对象实例。
            ps.waitFor();  //等待子进程完成再往下执行。
        } catch (IOException e1) {
            e1.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
 
        int i =0;
        if(ps!=null){
            i=ps.exitValue();  //接收执行完毕的返回值
        }
        if (i == 0) {
            System.out.println("执行完成.");
        } else {
            System.out.println("执行失败.");
        }
 
        ps.destroy();  //销毁子进程
        ps = (Process) ActionUtil.objeNull;
    }
 
    //启动创建数据库的jar文件
    public static void run_cmd() {
        //String path=System.getProperty("user.dir");                //myeclipse中获取的目录(获取到的是tomcat/bin)和分离项目获取到的路径(tomcat)不一样
        String fullRealPath = ActionUtil.getSession().getServletContext().getRealPath("/");
        String path = fullRealPath.split(File.separator+"webapps")[0];
        System.out.println("tomcat的路径为"+path);
        //识别服务器的系统类型
        String OS = System.getProperty("os.name").toLowerCase();
//        System.out.println(OS);
        String strcmd="";
        if(OS.contains("window")) {
            String realapth=path.substring(0,path.lastIndexOf("\\"));
            strcmd="cmd /c start  "+realapth+"/webapps/cmd_BTSE_DB_Builder.cmd";
            String batPath = realapth+"/webapps/cmd_BTSE_DB_Builder.cmd";
            File f = new File(path);
            //System.out.println("File :"+f.getParentFile().getAbsolutePath()+File.separator+"Batt_MS_FBSDEV_X64/Batt_MS_FBSDEV/"+"cmd_BTSE_DB_Builder.cmd");
            //batPath = f.getParentFile().getAbsolutePath()+File.separator+"Batt_MS_FBSDEV_X64/Batt_MS_FBSDEV/"+"cmd_BTSE_DB_Builder.cmd";
            String jarPath = "";
            if(path.endsWith("bin")){
                f = f.getParentFile();
            }
 
            jarPath = f.getParentFile().getAbsolutePath()+File.separator+"Batt_MS_FBSDEV_X64/Batt_MS_FBSDEV/"+"BTSE_DB_Builder.exe";                //主程序中jar的目录
            System.out.println("jar执行文件全路径为:"+jarPath);
            //strcmd = "cmd /c start "+batPath;
            strcmd = ("cmd /c start ")+jarPath.replaceAll(" ", "\" \"");
        }else {
            strcmd="java -jar /app/BTSE_DB_Builder.jar";
        }
        //System.out.println(path);
                //修复绝对路径中存在空格时执行不成功bug
        Process child = null;
        InputStream in = null;
        try {
            //System.out.println(strcmd);
            child = Runtime.getRuntime().exec(strcmd);
            in = child.getInputStream();
            int c;
            while ((c = in.read()) != -1) {
                //System.out.print((char)c);
            }
            in.close();
            try {
                child.waitFor();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            //System.out.println("Run Bat OK....");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
    //落后单体参数(组端电压>标称*test_stop)
    public static final float test_stop = 0.9f;
    //判断电池组的当前状态
    /*public static String battState(int num){
        String state="";
        switch (num) {
        case 0:state= BattTestData.test_type0;break;
        case 1:state= BattTestData.test_type1;break;
        case 2:state= BattTestData.test_type2;break;
            case 3:
                state = BattTestData.test_type3;
                break;
            case 4:
                state = BattTestData.test_type4;
                break;
            case 5:
                state = BattTestData.test_type5;
                break;
            case 6:
                state = BattTestData.test_type6;
                break;
            case 7:
                state = BattTestData.test_type7;
                break;
            case 8:
                state = BattTestData.test_type8;
                break;
            case 9:
                state = BattTestData.test_type9;
                break;
        }
        return state;
    }*/
 
    //判断电池组的当前状态
    public static String battState(int num) {
        String state = "";
        switch (num) {
            case 0:
                state = "test_type0";
                break;
            case 1:
                state = "test_type1";
                break;
            case 2:
                state = "test_type2";
                break;
            case 3:
                state = "test_type3";
                break;
            case 4:
                state = "test_type4";
                break;
            case 5:
                state = "test_type5";
                break;
            case 6:
                state = "test_type6";
                break;
            case 7:
                state = "test_type7";
                break;
            case 8:
                state = "test_type8";
                break;
            case 9:
                state = "test_type9";
                break;
        }
        return state;
    }
 
    //bts放电终止原因
    public static String getStopType(int dev_type, int stop_type_t) {
        String stop_type = "未知";
        if (BattTestData.TEST_LOADER_FBI_IDCE == dev_type) {
            switch (stop_type_t) {
                case 0:
                    stop_type = "手动停止";
                    break;
                case 1:
                    stop_type = "放电时间到";
                    break;
                case 2:
                    stop_type = "放电容量到";
                    break;
                case 3:
                    stop_type = "单体下限到";
                    break;
                case 4:
                    stop_type = "组端下限到";
                    break;
                case 5:
                    stop_type = "市电中断";
                    break;
                case 6:
                    stop_type = "内存不足";
                    break;
                case 7:
                    stop_type = "温度异常";
                    break;
            }
        } else if (BattTestData.TEST_LOADER_FBS9100S == dev_type) {
            switch (stop_type_t) {
                case 0:
                    stop_type = "手动停止";
                    break;
                case 1:
                    stop_type = "暂停";
                    break;
                case 2:
                    stop_type = "正在放电测试";
                    break;
                case 3:
                    stop_type = "正在等待放电";
                    break;
                case 4:
                    stop_type = "正在限流充电";
                    break;
                case 5:
                    stop_type = "正在直连充电";
                    break;
                case 6:
                    stop_type = "正在等待充电";
                    break;
                case 7:
                    stop_type = "放电时间到";
                    break;
                case 8:
                    stop_type = "放电容量到";
                    break;
                case 9:
                    stop_type = "单体下限到";
                    break;
                case 10:
                    stop_type = "组端下限到";
                    break;
                case 11:
                    stop_type = "市电中断停止";
                    break;
                case 12:
                    stop_type = "存储数据满";
                    break;
                case 13:
                    stop_type = "机内温度异常";
                    break;
                case 14:
                    stop_type = "放电电流过流";
                    break;
                case 15:
                    stop_type = "后台通信中断";
                    break;
                case 16:
                    stop_type = "负载模块中断";
                    break;
                case 17:
                    stop_type = "在线模块中断";
                    break;
                case 18:
                    stop_type = "负载模块过功率";
                    break;
                case 19:
                    stop_type = "内部程序异常";
                    break;
                }
        } else {
            stop_type = "手动停止";
        }
        return stop_type;
    }
    //61850放电终止原因
    public static String getStopType_6185(int stop_type_t)
    {
        String stop_type = "其他";
        switch(stop_type_t)
                {
                     case 0 : stop_type = "设备掉电终止"; break;
                     case 1 : stop_type = "手动终止"; break;
                     case 2 : stop_type = "放电时间到终止"; break;
                     case 3 : stop_type = "放电容量到终止"; break;
                     case 4 : stop_type = "单体电压下限到终止"; break;
                     case 5 : stop_type = "单体温度上限到终止"; break;
                     case 6 : stop_type = "组端电压下限到终止"; break;
                     case 7 : stop_type = "市电中断终止"; break;
                     case 8 : stop_type = "单体模块通讯异常终止"; break;
                     case 9 : stop_type = "存储数据满终止"; break;
                     case 10 : stop_type = "机内温度异常终止"; break;
                     case 11 : stop_type = "放电电流异常终止"; break;
                     case 12 : stop_type = "后台通讯中断终止"; break;
                     case 13 : stop_type = "内部程序异常终止"; break;
                     case 14 : stop_type = "电源电压高终止"; break;
                     case 15 : stop_type = "协转通讯异常"; break;
                     case 16 : stop_type = "其他"; break;
                     case 27 : stop_type = "其他设备在工作"; break;
                     case 28 : stop_type = "其他设备故障停止"; break;
                     case 29 : stop_type = "电压过高或过低"; break;
                     case 30 : stop_type = "干接点故障"; break;
                     case 31 : stop_type = "单体异常"; break;
                     case 32 : stop_type = "电压输入过高或过低"; break;
                     case 33 : stop_type = "电池电流异常"; break;
                     case 34 : stop_type = "kd测试故障"; break;
                     case 35 : stop_type = "切换装置通信异常"; break;
                     case 36 : stop_type = "切换装置故障"; break;
                     case 37 : stop_type = "切换装置接触器异常"; break;
                     case 38 : stop_type = "交流失电停止"; break;
                     case 100 : stop_type = "未知"; break;
                }
        return stop_type;
    }
    //61850放电终止原因(多宝山)
    public static String getStopType_6185DBS(int stop_type_t)
    {
        String stop_type = "其他";
        switch(stop_type_t)
        {
            case 0 : stop_type = "设备掉电终止"; break;
            case 1 : stop_type = "手动终止"; break;
            case 2 : stop_type = "放电时间到终止"; break;
            case 3 : stop_type = "放电容量到终止"; break;
            case 4 : stop_type = "单体电压下限到终止"; break;
            case 5 : stop_type = "单体温度上限到终止"; break;
            case 6 : stop_type = "组端电压下限到终止"; break;
            case 7 : stop_type = "市电中断终止"; break;
            case 8 : stop_type = "单体通信异常终止"; break;
            case 9 : stop_type = "存储数据满终止"; break;
            case 10 : stop_type = "机内温度异常终止"; break;
            case 11 : stop_type = "放电电流异常终止"; break;
            case 12 : stop_type = "后台通信中断终止"; break;
            case 13 : stop_type = "内部程序异常终止"; break;
            case 14 : stop_type = "电源电压高终止"; break;
            case 15 : stop_type = "协转通信异常终止"; break;
            case 16 : stop_type = "切换装置通信故障终止"; break;
            case 27 : stop_type = "切换装置故障终止"; break;
            case 28 : stop_type = "DCAC模块故障终止"; break;
            case 29 : stop_type = "负载功率小终止"; break;
            case 30 : stop_type = "干接点接入故障终止"; break;
            case 31 : stop_type = "母联通信异常终止"; break;
            case 32 : stop_type = "母联手动关闭/信号异常终止"; break;
            case 33 : stop_type = "逆变器通信故障终止"; break;
            case 34 : stop_type = "防雷器故障终止"; break;
            case 35 : stop_type = "机柜表头通信故障终止"; break;
            case 36 : stop_type = "限流充电模块故障终止"; break;
            case 37 : stop_type = "紧急停止终止"; break;
            case 38 : stop_type = "远程闭锁终止"; break;
            case 39 : stop_type = "切换装置开关异常终止"; break;
            case 40 : stop_type = "交流空开异常终止"; break;
            case 41 : stop_type = "交流接触器异常终止"; break;
            case 42 : stop_type = "直流空开异常终止"; break;
        }
        return stop_type;
    }
    public static String getStopType_9110(int stop_type_t){
        String stop_type = "未知";
        switch (stop_type_t){
            case 0 : stop_type = "手动停止"; break;
            case 1 : stop_type = "暂停"; break;
            case 2 : stop_type = "正在放电测试"; break;
            case 3 : stop_type = "正在等待放电"; break;
            case 4 : stop_type = "正在限流充电"; break;
            case 5 : stop_type = "正在直流充电"; break;
            case 6 : stop_type = "正在等待充电"; break;
            case 7 : stop_type = "放电时间到停止"; break;
            case 8 : stop_type = "放电容量到停止"; break;
            case 9 : stop_type = "单体电压下限到停止"; break;
            case 10: stop_type = "组端电压下限到停止"; break;
            case 11: stop_type = "市电中断停止"; break;
            case 12: stop_type = "存储数据满停止"; break;
            case 13: stop_type = "机内温度异常停止"; break;
            case 14: stop_type = "放电电流异常停止"; break;
            case 15:stop_type = "后台通信中断停止"; break;
            case 16: stop_type = "负载模块通信中断停止"; break;
            case 17: stop_type = "选择模块通信中断停止"; break;
            case 18: stop_type = "负载模块放电过功率停止"; break;
            case 19: stop_type = "内部程序异常停止"; break;
            case 20: stop_type = "市电恢复停止升压放电"; break;
            case 21: stop_type = "充电过程中市电中断"; break;
            case 22: stop_type = "合路器放电功能组端电压下限到"; break;
            case 23: stop_type = "单体温度上限到停止"; break;
            case 24: stop_type = "在线电压异常高停止"; break;
            case 25: stop_type = "协转通信异常停止"; break;
            case 26: stop_type = "单体通信异常停止"; break;
            case 27: stop_type = "LRBH模块通信故障"; break;
            case 28: stop_type = "LRBH接触器异常"; break;
            case 29: stop_type = "设备风扇工作异常"; break;
        }
        return stop_type;
    }
 
    //4016放电终止原因
    public static String getStopType_4016(int stop_type_t)
    {
        String stop_type = "其他";
        switch(stop_type_t)
            {
                 case 0 : stop_type = "无"; break;
                 case 1 : stop_type = "手动终止"; break;
                 case 2 : stop_type = "核容测试时间到"; break;
                 case 3 : stop_type = "核容测试组端下限到"; break;
                 case 4 : stop_type = "核容测试单体下限到"; break;
                 case 5 : stop_type = "核容测试容量低于阀值"; break;
                 case 6 : stop_type = "应急供电组端下限到"; break;
                 case 7 : stop_type = "应急供电单体下限到"; break;
                 case 8 : stop_type = "市电恢复停止应急供电"; break;
                 case 9 : stop_type = "停止自动应急供电"; break;
                 case 10 : stop_type = "无法启动核容测试"; break;
                 case 11 : stop_type = "模块故障"; break;
                 case 12 : stop_type = "电池开路故障"; break;
                 case 16 : stop_type = "其他"; break;
            }
        return stop_type;
    }
 
    //4019(LD9)放电终止原因
    public static String getTestType_4019(int testType)
    {
        String test_Type = "未知";
        switch(testType)
        {
            case 1 : test_Type = "核容放电"; break;
            case 2 : test_Type = "核容充电"; break;
            case 3 : test_Type = "监测放电"; break;
            case 4 : test_Type = "监测充电"; break;
        }
        return test_Type;
    }
    //4019(LD9)放电终止原因
    public static String getStopType_4019(int stop_type_t)
    {
        String stop_type = "未知";
        switch(stop_type_t)
        {
            case 0:
                stop_type = "无";
                break;
            case 1:
                stop_type = "手动终止";
                break;
            case 2:
                stop_type = "单体下限到";
                break;
            case 3:
                stop_type = "充电完成停止";
                break;
            case 4:
                stop_type = "测试完成停止";
                break;
            case 5:
                stop_type = "远程停止";
                break;
            case 6:
                stop_type = "在线电压低";
                break;
            case 7:
                stop_type = "温度异常高";
                break;
            case 8:
                stop_type = "电流异常";
                break;
            case 9:
                stop_type = "系统正在工作";
                break;
            case 10:
                stop_type = "正在均衡测试";
                break;
            case 11:
                stop_type = "正在内阻测试";
                break;
            case 12:
                stop_type = "汇集器通信异常";
                break;
            case 13:
                stop_type = "功率电缆异常";
                break;
            case 14:
                stop_type = "主机停止(ld-18)";
                break;
            case 15:
                stop_type = "从机通讯异常(ld-18)";
                break;
        }
        return stop_type;
    }
 
    // 逆变设备放电终止原因9120和9140
    public static String getStopType_9120(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            case 0:
                stop_type = "手动停止";
                break;
            case 1:
                stop_type = "暂停";
                break;
            case 2:
                stop_type = "正在放电测试";
                break;
            case 3:
                stop_type = "正在等待放电";
                break;
            case 4:
                stop_type = "正在限流充电";
                break;
            case 5:
                stop_type = "正在直流充电";
                break;
            case 6:
                stop_type = "正在等待充电";
                break;
            case 7:
                stop_type = "放电时间到停止";
                break;
            case 8:
                stop_type = "放电容量到停止";
                break;
            case 9:
                stop_type = "单体电压下限到停止";
                break;
            case 10:
                stop_type = "组端电压下限到停止";
                break;
            case 11:
                stop_type = "市电中断停止";
                break;
            case 12:
                stop_type = "存储数据满停止";
                break;
            case 13:
                stop_type = "机内温度异常停止";
                break;
            case 14:
                stop_type = "放电电流过流停止";
                break;
            case 15:
                stop_type = "后台通信中断停止";
                break;
            case 16:
                stop_type = "负载模块通信中断停止";
                break;
            case 17:
                stop_type = "选择模块通信中断停止";
                break;
            case 18:
                stop_type = "负载模块放电过功率停止";
                break;
            case 19:
                stop_type = "内部程序异常停止";
                break;
            case 20:
                stop_type = "市电恢复停止升压放电";
                break;
            case 21:
                stop_type = "充电过程中市电中断";
                break;
            case 22:
                stop_type = "合路器放电功能组端电压下限到";
                break;
            case 23:
                stop_type = "单体温度上限到停止";
                break;
            case 24:
                stop_type = "在线电压异常高停止";
                break;
            case 25:
                stop_type = "协转通信异常停止";
                break;
            case 26:
                stop_type = "单体通信异常停止";
                break;
            case 27:
                stop_type = "未知";
                break;
            case 28:
                stop_type = "切换装置通信故障";
                break;
            case 29:
                stop_type = "切换装置故障";
                break;
            case 30:
                stop_type = "DCAC模块故障";
                break;
            case 31:
                stop_type = "负载功率小";
                break;
            case 32:
                stop_type = "干接点输入故障";
                break;
            case 33:
                stop_type = "母联通信异常";
                break;
            case 34:
                stop_type = "母联手动关闭";
                break;
        }
        return stop_type;
    }
 
    // 并联电源放电终止原因9149
    public static String getStopType_9149(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            case 0:
                stop_type = "核容中模块内部通信故障,核容失败";
                break;
            case 1:
                stop_type = "手动停止核容,核容失败";
                break;
            case 2:
                stop_type = "时长过短,核容失败";
                break;
            case 3:
                stop_type = "达到最长核容时间,核容失败";
                break;
            case 4:
                stop_type = "电池电压低于核容终止电压,核容成功";
                break;
            case 5:
                stop_type = "核容放电电流过小,核容失败";
                break;
            case 6:
                stop_type = "手动停止";
                break;
            case 7:
                stop_type = "时间到停止";
                break;
            case 8:
                stop_type = "单体下限停止";
                break;
            case 9:
                stop_type = "电池电压下限到";
                break;
            case 10:
                stop_type = "单体温度上限到";
                break;
        }
        return stop_type;
    }
 
    // 并联电源放电终止原因9150
    public static String getStopType_9150(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            case 0:
                stop_type = "无";
                break;
            case 1:
                stop_type = "暂停";
                break;
            case 2:
                stop_type = "正在放电测试";
                break;
            case 3:
                stop_type = "正在等待放电";
                break;
            case 4:
                stop_type = "正在限流充电";
                break;
            case 5:
                stop_type = "正在直连充电";
                break;
            case 6:
                stop_type = "正在等待充电";
                break;
            case 7:
                stop_type = "放电时间到停止";
                break;
            case 8:
                stop_type = "放电容量到停止";
                break;
            case 9:
                stop_type = "单体下限到停止";
                break;
            case 10:
                stop_type = "组端下限到停止";
                break;
            case 11:
                stop_type = "市电中断停止";
                break;
            case 12:
                stop_type = "存储数据满停止";
                break;
            case 13:
                stop_type = "机内温度异常停止";
                break;
            case 14:
                stop_type = "放电电流过流停止";
                break;
            case 15:
                stop_type = "后台通信中断停止";
                break;
            case 16:
                stop_type = "负载模块通信中断停止";
                break;
            case 17:
                stop_type = "选择模块通信中断停止";
                break;
            case 18:
                stop_type = "负载模块放电过功率停止";
                break;
            case 19:
                stop_type = "内部程序异常停止";
                break;
            case 20:
                stop_type = "合路器放电功能,市电恢复停止升压放电";
                break;
            case 21:
                stop_type = "合路器放电功能,充电过程中市电中断";
                break;
            case 22:
                stop_type = "合路器放电功能组端电压下限";
                break;
            case 23:
                stop_type = "单体温度上限到停止";
                break;
            case 24:
                stop_type = "在线电压异常高停止";
                break;
            case 25:
                stop_type = "协转通信异常停止";
                break;
            case 26:
                stop_type = "单体通信异常停止";
                break;
            case 27:
                stop_type = "未知";
                break;
            case 28:
                stop_type = "干接点通信异常停止";
                break;
            case 29:
                stop_type = "接触器K异常";
                break;
            case 30:
                stop_type = "急停";
                break;
            case 31:
                stop_type = "旁路停止";
                break;
        }
        return stop_type;
    }
 
    // 一体机设备放电终止原因
    public static String getStopType_8059(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            case 0x00:
                stop_type = "手动停止";
                break;
            case 0x01:
                stop_type = "放电时间到";
                break;
            case 0x02:
                stop_type = "放电容量到";
                break;
            case 0x03:
                stop_type = "单体下限到";
                break;
            case 0x04:
                stop_type = "组端下限到";
                break;
            case 0x05:
                stop_type = "市电中断";
                break;
            case 0x06:
                stop_type = "内存不足";
                break;
            case 0x07:
                stop_type = "温度异常高";
                break;
            case 0x08:
                stop_type = "正在放电";
                break;
            case 0x09:
                stop_type = "手动暂停";
                break;
            case 0x0A:
                stop_type = "暂停放电";
                break;
            case 0x0B:
                stop_type = "通信故障";
                break;
            case 0x0C:
                stop_type = "电流故障";
                break;
            case 0x0D:
                stop_type = "压差上限到";
                break;
            case 0x0E:
                stop_type = "组端电压异常";
                break;
            case 0x0F:
                stop_type = "风扇异常";
                break;
            case 0x10:
                stop_type = "整流器电压异常";
                break;
            case 0x11:
                stop_type = "IGBT异常";
                break;
            case 0x12:
                stop_type = "辅助电源异常";
                break;
            case 0x13:
                stop_type = "CSV文件太大,请删除";
                break;
            case 0x14:
                stop_type = "BMS通信异常";
                break;
            case 0x15:
                stop_type = "存储异常";
                break;
            case 0x16:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x17:
                stop_type = "从机状态异常";
                break;
            case 0x18:
                stop_type = "紧急停止";
                break;
            case 0x19:
                stop_type = "单体温度异常高";
                break;
            case 0x40:
                stop_type = "停止充电";
                break;
            case 0x41:
                stop_type = "暂停充电";
                break;
            case 0x42:
                stop_type = "正在充电";
                break;
            case 0x43:
                stop_type = "充电时间到";
                break;
            case 0x44:
                stop_type = "充电容量到";
                break;
            case 0x45:
                stop_type = "单体上限到";
                break;
            case 0x46:
                stop_type = "充电已完成";
                break;
            case 0x47:
                stop_type = "市电中断";
                break;
            case 0x48:
                stop_type = "温度异常高";
                break;
            case 0x49:
                stop_type = "通信故障";
                break;
            case 0x4A:
                stop_type = "充电模块异常";
                break;
            case 0x4B:
                stop_type = "组端上限到";
                break;
            case 0x4C:
                stop_type = "压差上限到";
                break;
            case 0x4D:
                stop_type = "电流异常";
                break;
            case 0x4E:
                stop_type = "组端电压异常";
                break;
            case 0x4F:
                stop_type = "风扇异常";
                break;
            case 0x50:
                stop_type = "整流器电压异常";
                break;
            case 0x51:
                stop_type = "IGBT异常";
                break;
            case 0x52:
                stop_type = "辅助电源异常";
                break;
            case 0x53:
                stop_type = "CSV文件太大,请删除";
                break;
            case 0x54:
                stop_type = "BMS通信异常";
                break;
            case 0x55:
                stop_type = "存储异常";
                break;
            case 0x56:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x57:
                stop_type = "从机状态异常";
                break;
            case 0x58:
                stop_type = "紧急停止";
                break;
        }
        return stop_type;
    }
 
    // 电操核容放电终止原因
    public static String getStopType_6087(int stop_type_t)
    {
        String stop_type = "其他";
        switch(stop_type_t)
        {
            case 0: stop_type = "无"; break;
            case 1: stop_type = "暂停"; break;
            case 2: stop_type = "正在放电测试"; break;
            case 3: stop_type =    "正在等待放电"; break;
            case 4: stop_type = "正在限流充电"; break;
            case 5: stop_type = "正在直连充电"; break;
            case 6: stop_type = "正在等待充电"; break;
            case 7: stop_type =    "放电时间到停止"; break;
            case 8: stop_type =    "放电容量到停止"; break;
            case 9: stop_type =    "单体电压下限到停止"; break;
            case 10: stop_type = "组端电压下限到停止"; break;
            case 11: stop_type = "市电中断停止"; break;
            case 12: stop_type = "存储数据满停止"; break;
            case 13: stop_type = "机内温度异常停止"; break;
            case 14: stop_type = "放电电流异常停止"; break;
            case 15: stop_type = "后台通信中断停止"; break;
            case 16: stop_type = "负载模块通信中断停止"; break;
            case 18: stop_type = "负载模块放电过功率停止"; break;
            case 19: stop_type = "(内部)程序异常停止"; break;
            case 23: stop_type = "单体温度上限到停止"; break;
            case 24: stop_type = "在线电压异常高停止"; break;
            case 25: stop_type = "协转通信异常停止"; break;
            case 26: stop_type = "单体通信异常停止(汇集器通信异常)"; break;
            case 30: stop_type = "逆变器模块故障"; break;
            case 31: stop_type = "负载功率小"; break;
            case 32: stop_type = "干接点输入故障"; break;
            case 35: stop_type = "逆变模块通信故障"; break;
            case 36: stop_type = "防雷器故障"; break;
            case 37: stop_type = "机柜表头通信故障"; break;
            case 38: stop_type = "开关故障"; break;
            case 39: stop_type = "开关量模块通信故障"; break;
            case 40: stop_type = "母线压差大"; break;
            case 41: stop_type = "继电器状态错误"; break;
            case 42: stop_type = "远程闭锁"; break;
            case 43: stop_type = "紧急停止"; break;
            case 44: stop_type = "充电停止"; break;
            case 45: stop_type = "蓄电池对外放电"; break;
            case 46: stop_type = "空开故障"; break;
            case 47: stop_type = "充电机故障"; break;
        }
        return stop_type;
    }
 
    // FBO4830放电终止原因
    public static String getStopType_4830(int stop_type_t)
    {
        String stop_type = "其他";
        switch(stop_type_t)
        {
            // 放电停止原因
            case 0x00:
                stop_type = "手动停止";
                break;
            case 0x01:
                stop_type = "放电时间到";
                break;
            case 0x02:
                stop_type = "放电容量到";
                break;
            case 0x03:
                stop_type = "单体下限到";
                break;
            case 0x04:
                stop_type = "组端下限到";
                break;
            case 0x05:
                stop_type = "市电中断";
                break;
            case 0x06:
                stop_type = "内存不足";
                break;
            case 0x07:
                stop_type = "温度异常高";
                break;
            case 0x08:
                stop_type = "正在放电";
                break;
            case 0x09:
                stop_type = "手动暂停";
                break;
            case 0x0A:
                stop_type = "暂停放电";
                break;
            case 0x0B:
                stop_type = "通信故障";
                break;
            case 0x0C:
                stop_type = "电流故障";
                break;
            case 0x0D:
                stop_type = "压差上限到";
                break;
            case 0x0E:
                stop_type = "组端电压异常";
                break;
            case 0x0F:
                stop_type = "风扇异常";
                break;
            case 0x10:
                stop_type = "整流器电压异常";
                break;
            case 0x11:
                stop_type = "IGBT异常";
                break;
            case 0x12:
                stop_type = "辅助电源异常";
                break;
            case 0x13:
                stop_type = "单体温度异常高";
                break;
            case 0x14:
                stop_type = "BMS通信异常";
                break;
            case 0x15:
                stop_type = "存储异常";
                break;
            case 0x16:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x17:
                stop_type = "从机状态异常";
                break;
            case 0x18:
                stop_type = "紧急停止";
                break;
            case 0x19:
                stop_type = "SOC下限到";
                break;
 
            // 充电停止原因
            case 0x40:
                stop_type = "停止充电";
                break;
            case 0x41:
                stop_type = "暂停充电";
                break;
            case 0x42:
                stop_type = "正在充电";
                break;
            case 0x43:
                stop_type = "充电时间到";
                break;
            case 0x44:
                stop_type = "充电容量到";
                break;
            case 0x45:
                stop_type = "单体上限到";
                break;
            case 0x46:
                stop_type = "充电已完成";
                break;
            case 0x47:
                stop_type = "市电中断";
                break;
            case 0x48:
                stop_type = "温度异常高";
                break;
            case 0x49:
                stop_type = "通信故障";
                break;
            case 0x4A:
                stop_type = "充电模块异常";
                break;
            case 0x4B:
                stop_type = "组端上限到";
                break;
            case 0x4C:
                stop_type = "压差上限到";
                break;
            case 0x4D:
                stop_type = "电流异常";
                break;
            case 0x4E:
                stop_type = "组端电压异常";
                break;
            case 0x4F:
                stop_type = "风扇异常";
                break;
            case 0x50:
                stop_type = "整流器电压异常";
                break;
            case 0x51:
                stop_type = "IGBT异常";
                break;
            case 0x52:
                stop_type = "辅助电源异常";
                break;
            case 0x53:
                stop_type = "单体温度异常高";
                break;
            case 0x54:
                stop_type = "BMS通信异常";
                break;
            case 0x55:
                stop_type = "存储异常";
                break;
            case 0x56:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x57:
                stop_type = "从机状态异常";
                break;
            case 0x58:
                stop_type = "紧急停止";
                break;
            case 0x59:
                stop_type = "SOC上限到";
                break;
            case 0x5A:
                stop_type = "直充充电";
                break;
            case 0x5B:
                stop_type = "正在充电监测";
                break;
        }
        return stop_type;
    }
 
    /*// FBO4831放电终止原因
    public static String getStopType_4831(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            // 放电停止原因
            case 0:
                stop_type = "手动停止";
                break;
            case 1:
                stop_type = "放电时间到";
                break;
            case 2:
                stop_type = "放电容量到";
                break;
            case 3:
                stop_type = "单体下限到";
                break;
            case 4:
                stop_type = "组端下限到";
                break;
            case 5:
                stop_type = "市电中断";
                break;
            case 6:
                stop_type = "存储异常";
                break;
            case 7:
                stop_type = "温度异常";
                break;
            case 8:
                stop_type = "正在放电";
                break;
            case 9:
                stop_type = "手动暂停";
                break;
            case 10:
                stop_type = "自动暂停";
                break;
            case 11:
                stop_type = "通信异常";
                break;
            case 12:
                stop_type = "电流异常";
                break;
            case 13:
                stop_type = "压差上限到";
                break;
            case 14:
                stop_type = "组端电压异常";
                break;
            case 15:
                stop_type = "风扇异常";
                break;
            case 16:
                stop_type = "整流器电压异常";
                break;
            case 17:
                stop_type = "IGBT异常";
                break;
            case 18:
                stop_type = "辅助电源异常";
                break;
            case 19:
                stop_type = "CSV文件太大,请删除";
                break;
            case 20:
                stop_type = "从机通信异常";
                break;
            case 21:
                stop_type = "从机状态异常";
                break;
            case 22:
                stop_type = "主机通信异常";
                break;
            case 23:
                stop_type = "紧急停止";
                break;
            case 24:
                stop_type = "硬件并机失败";
                break;
            case 25:
                stop_type = "操作频繁";
                break;
            case 26:
                stop_type = "未知";
                break;
        }
        return stop_type;
    }*/
    // FBO4831放电终止原因
    public static String getStopType_4831(int stop_type_t) {
        String stop_type = "NONE";
        switch (stop_type_t) {
            // 放电停止原因
            case 0:
                stop_type = "ManualStop";
                break;
            case 1:
                stop_type = "DischargeTimeTo";
                break;
            case 2:
                stop_type = "DischargeCapacityTo";
                break;
            case 3:
                stop_type = "LowerLimitOfMonomerTo";
                break;
            case 4:
                stop_type = "GroupEndLowerLimitTo";
                break;
            case 5:
                stop_type = "MainsPowerOutage";
                break;
            case 6:
                stop_type = "StorageException";
                break;
            case 7:
                stop_type = "AbnormalTemperature";
                break;
            case 8:
                stop_type = "Discharging";
                break;
            case 9:
                stop_type = "ManualPause";
                break;
            case 10:
                stop_type = "AutoPause";
                break;
            case 11:
                stop_type = "AbnormalCommunication";
                break;
            case 12:
                stop_type = "AbnormalCurrent";
                break;
            case 13:
                stop_type = "UpperLimitOfPressureDifferenceTo";
                break;
            case 14:
                stop_type = "AbnormalGroupTerminalVoltage";
                break;
            case 15:
                stop_type = "FanAbnormal";
                break;
            case 16:
                stop_type = "RectifierVoltageAbnormality";
                break;
            case 17:
                stop_type = "IGBTAbnormality";
                break;
            case 18:
                stop_type = "AbnormalAuxiliaryPowerSupply";
                break;
            case 19:
                stop_type = "CSVFileIsTooLargePleaseDeleteIt";
                break;
            case 20:
                stop_type = "AbnormalSlaveCommunication";
                break;
            case 21:
                stop_type = "AbnormalSlaveState";
                break;
            case 22:
                stop_type = "HostCommunicationAbnormality";
                break;
            case 23:
                stop_type = "EmergencyStop";
                break;
            case 24:
                stop_type = "HardwareParallelFailure";
                break;
            case 25:
                stop_type = "FrequentOperations";
                break;
            case 26:
                stop_type = "NONE";
                break;
        }
        return stop_type;
    }
 
    // FBO4815放电终止原因
    public static String getStopType_4815(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            // 放电停止原因
            case 0x00:
                stop_type = "手动停止";
                break;
            case 0x01:
                stop_type = "放电时间到";
                break;
            case 0x02:
                stop_type = "放电容量到";
                break;
            case 0x03:
                stop_type = "单体下限到";
                break;
            case 0x04:
                stop_type = "组端下限到";
                break;
            case 0x05:
                stop_type = "市电中断";
                break;
            case 0x06:
                stop_type = "内存不足";
                break;
            case 0x07:
                stop_type = "温度异常高";
                break;
            case 0x08:
                stop_type = "正在放电";
                break;
            case 0x09:
                stop_type = "手动暂停";
                break;
            case 0x0A:
                stop_type = "暂停放电";
                break;
            case 0x0B:
                stop_type = "通信故障";
                break;
            case 0x0C:
                stop_type = "电流故障";
                break;
            case 0x0D:
                stop_type = "压差上限到";
                break;
            case 0x0E:
                stop_type = "组端电压异常";
                break;
            case 0x0F:
                stop_type = "风扇异常";
                break;
            case 0x10:
                stop_type = "整流器电压异常";
                break;
            case 0x11:
                stop_type = "IGBT异常";
                break;
            case 0x12:
                stop_type = "辅助电源异常";
                break;
            case 0x13:
                stop_type = "单体温度异常高";
                break;
            case 0x14:
                stop_type = "BMS通信异常";
                break;
            case 0x15:
                stop_type = "存储异常";
                break;
            case 0x16:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x17:
                stop_type = "从机状态异常";
                break;
            case 0x18:
                stop_type = "紧急停止";
                break;
            case 0x19:
                stop_type = "SOC下限到";
                break;
 
            // 充电停止原因
            case 0x40:
                stop_type = "停止充电";
                break;
            case 0x41:
                stop_type = "暂停充电";
                break;
            case 0x42:
                stop_type = "正在充电";
                break;
            case 0x43:
                stop_type = "充电时间到";
                break;
            case 0x44:
                stop_type = "充电容量到";
                break;
            case 0x45:
                stop_type = "单体上限到";
                break;
            case 0x46:
                stop_type = "充电已完成";
                break;
            case 0x47:
                stop_type = "市电中断";
                break;
            case 0x48:
                stop_type = "温度异常高";
                break;
            case 0x49:
                stop_type = "通信故障";
                break;
            case 0x4A:
                stop_type = "充电模块异常";
                break;
            case 0x4B:
                stop_type = "组端上限到";
                break;
            case 0x4C:
                stop_type = "压差上限到";
                break;
            case 0x4D:
                stop_type = "电流异常";
                break;
            case 0x4E:
                stop_type = "组端电压异常";
                break;
            case 0x4F:
                stop_type = "风扇异常";
                break;
            case 0x50:
                stop_type = "整流器电压异常";
                break;
            case 0x51:
                stop_type = "IGBT异常";
                break;
            case 0x52:
                stop_type = "辅助电源异常";
                break;
            case 0x53:
                stop_type = "单体温度异常高";
                break;
            case 0x54:
                stop_type = "BMS通信异常";
                break;
            case 0x55:
                stop_type = "存储异常";
                break;
            case 0x56:
                stop_type = "从机断开或通讯异常";
                break;
            case 0x57:
                stop_type = "从机状态异常";
                break;
            case 0x58:
                stop_type = "紧急停止";
                break;
            case 0x59:
                stop_type = "SOC上限到";
                break;
            case 0x5A:
                stop_type = "直充充电";
                break;
            case 0x5B:
                stop_type = "正在充电监测";
                break;
        }
        return stop_type;
    }
 
    // 61852全功能逆变假负载+61850协转
    public static String getStopType_61852(int stop_type_t) {
        String stop_type = "未知";
        switch(stop_type_t) {
            case 0: stop_type = "设备掉电终止"; break;
            case 1:stop_type = "手动终止"; break;
            case 2:stop_type = "放电时间到终止"; break;
            case 3:stop_type = "放电容量到终止"; break;
            case 4:stop_type = "单体电压下限到终止"; break;
            case 5:stop_type = "单体温度上限终止"; break;
            case 6:stop_type = "组端电压下限到终止"; break;
            case 7:stop_type = "市电中断终止"; break;
            case 8:stop_type = "单体通信异常终止"; break;
            case 9:stop_type = "存储数据满终止"; break;
            case 10:stop_type = "机内温度异常终止"; break;
            case 11:stop_type = "放电电流异常终止"; break;
            case 12:stop_type = "后台通信中断终止"; break;
            case 13:stop_type = "内部程序异常终止"; break;
            case 14:stop_type = "电源电压高终止"; break;
            case 15:stop_type = "协转通信异常"; break;
            case 28:stop_type = "切换装置通信故障"; break;
            case 29:stop_type = "切换装置故障"; break;
            case 30:stop_type = "DCAC模块故障"; break;
            case 31:stop_type = "负载功率小"; break;
            case 32:stop_type = "干接点输入故障"; break;
            case 33:stop_type = "母联通信异常"; break;
            case 34:stop_type = "母联手动关闭/信号异常"; break;
            case 35:stop_type = "逆变器通信故障"; break;
            case 36:stop_type = "防雷器故障"; break;
            case 37:stop_type = "机柜表头通信故障"; break;
            case 38:stop_type = "限流充电模块故障"; break;
            case 39:stop_type = "紧急停止"; break;
            case 40:stop_type = "远程闭锁"; break;
            case 41:stop_type = "切换装置开关异常"; break;
            case 42:stop_type = "交流空开异常(包括总空开,分空开)"; break;
            case 43:stop_type = "交流接触器异常"; break;
            case 44:stop_type = "直流空开异常(分空开)"; break;
            default:stop_type = "未知"; break;
        }
        return stop_type;
    }
    //设备状态变换对应关系
    public static String getFbsdev_Statechange(int state){
        String state_name="停止";
        switch(state){
              case 0:state_name="停止";break;
              case 1:state_name="放电";break;
              case 2:state_name="充电";break;
           }
        return state_name;
    }
 
    // FBS9612放电终止原因
    public static String getStopType_9612(int stop_type_t)
    {
        String stop_type = "未知";
        switch(stop_type_t)
        {
            // 放电停止原因
            case 0:
                stop_type = "无";
                break;
            case 1:
                stop_type = "放电未终止";
                break;
            case 2:
                stop_type = "放电时长到";
                break;
            case 3:
                stop_type = "现场人为终止";
                break;
            case 4:
                stop_type = "远程终止";
                break;
            case 5:
                stop_type = "组电压下限到";
                break;
            case 6:
                stop_type = "单电压下限到";
                break;
            case 7:
                stop_type = "单温度上限到";
                break;
            case 8:
                stop_type = "放出容量到";
                break;
            case 9:
                stop_type = "放电异常";
                break;
            case 10:
                stop_type = "电池组非法";
                break;
            case 11:
                stop_type = "组电压类型非法";
                break;
            case 12:
                stop_type = "放电电流异常";
                break;
            case 13:
                stop_type = "终止条件非法";
                break;
            case 14:
                stop_type = "市电掉电";
                break;
            case 15:
                stop_type = "母线开关 Km+故障";
                break;
            case 16:
                stop_type = "母线开关 Km-故障";
                break;
            case 17:
                stop_type = "电池开关 Kb+故障";
                break;
            case 18:
                stop_type = "电池开关 Kb-故障";
                break;
            case 19:
                stop_type = "限流开关 Kr+故障";
                break;
            case 20:
                stop_type = "限流开关 Kr-故障";
                break;
            case 21:
                stop_type = "备用";
                break;
            case 22:
                stop_type = "备用";
                break;
            case 23:
                stop_type = "设备温度异常";
                break;
            case 24:
                stop_type = "放电负载通信异常";
                break;
            case 25:
                stop_type = "电池监测通信异常";
                break;
            case 26:
                stop_type = "存在开关模块通信异常";
                break;
            case 27:
                stop_type = "放电回路被占用";
                break;
            case 28:
                stop_type = "放电负载异常";
                break;
        }
        return stop_type;
    }
 
    // 6183_4放电终止原因:全功能假负载核容停止原因
    public static String getStopType_6183_4(int stop_type_t)
    {
        String stop_type = "无";
        switch(stop_type_t)
        {
            // 放电停止原因
            case 0:
                stop_type = "设备掉电终止";
                break;
            case 1:
                stop_type = "手动终止";
                break;
            case 2:
                stop_type = "放电时间到终止";
                break;
            case 3:
                stop_type = "放电容量到终止";
                break;
            case 4:
                stop_type = "单体电压下限到终止";
                break;
            case 5:
                stop_type = "单体温度上限到终止";
                break;
            case 6:
                stop_type = "组端电压下限到终止";
                break;
            case 7:
                stop_type = "市电中断终止";
                break;
            case 8:
                stop_type = "单体通信异常终止";
                break;
            case 9:
                stop_type = "存储数据满终止";
                break;
            case 10:
                stop_type = "机内温度异常终止";
                break;
            case 11:
                stop_type = "放电电流异常终止";
                break;
            case 12:
                stop_type = "后台通信中断终止";
                break;
            case 13:
                stop_type = "内部程序异常终止";
                break;
            case 14:
                stop_type = "电源电压高终止";
                break;
            case 15:
                stop_type = "协转通信异常";
                break;
            case 28:
                stop_type = "切换装置通信故障";
                break;
            case 29:
                stop_type = "切换装置故障";
                break;
            case 30:
                stop_type = "逆变器模块故障";
                break;
            case 31:
                stop_type = "负载功率小";
                break;
            case 33:
                stop_type = "母联通信异常";
                break;
            case 34:
                stop_type = "母联手动关闭或信号异常";
                break;
            case 35:
                stop_type = "逆变器通信故障";
                break;
            case 36:
                stop_type = "防雷器故障";
                break;
            case 37:
                stop_type = "机柜表头通信故障";
                break;
            case 38:
                stop_type = "限流充电模块故障";
                break;
            case 39:
                stop_type = "紧急停止";
                break;
            case 40:
                stop_type = "远程闭锁";
                break;
            case 41:
                stop_type = "切换装置开关异常";
                break;
            case 42:
                stop_type = "交流空开异常";
                break;
            case 43:
                stop_type = "交流接触器异常";
                break;
            case 44:
                stop_type = "直流空开异常";
                break;
            case 45:
                stop_type = "假负载异常停止";
                break;
            case 46:
                stop_type = "DCDC异常停止";
                break;
        }
        return stop_type;
    }
 
    // FBO_60010CT_ZX放电终止原因
    public static String getStopType_6001(int stop_type_t) {
        String stop_type = "其他";
        switch (stop_type_t) {
            // 放电停止原因
            case 0x00:
                stop_type = "手动停止";
                break;
            case 0x01:
                stop_type = "放电时间到";
                break;
            case 0x02:
                stop_type = "放电容量到";
                break;
            case 0x03:
                stop_type = "单体下限到";
                break;
            case 0x04:
                stop_type = "组端下限到";
                break;
            case 0x05:
                stop_type = "在线电压低";
                break;
            case 0x06:
                stop_type = "内存不足";
                break;
            case 0x07:
                stop_type = "温度异常高";
                break;
            case 0x08:
                stop_type = "正在放电";
                break;
            case 0x09:
                stop_type = "手动暂停";
                break;
            case 0x0A:
                stop_type = "暂停放电";
                break;
            case 0x0B:
                stop_type = "通信故障";
                break;
            case 0x0C:
                stop_type = "电流检测错误";
                break;
 
 
            // 充电停止原因
            case 0x40:
                stop_type = "停止充电";
                break;
            case 0x41:
                stop_type = "暂停充电";
                break;
            case 0x42:
                stop_type = "正在充电,限流充电";
                break;
            case 0x43:
                stop_type = "直充充电";
                break;
            case 0x44:
                stop_type = "正在充电监测";
                break;
 
 
            case 0x47:
                stop_type = "脱扣器断开";
                break;
            case 0x48:
                stop_type = "风扇异常";
                break;
            case 0x49:
                stop_type = "暂停充电监测";
                break;
        }
        return stop_type;
    }
 
    // 61853
    public static String getStopType_61853(int stop_type_t) {
        String stop_type = "未知";
        switch(stop_type_t) {
            case 1:stop_type = "手动停止"; break;
            case 2:stop_type = "放电时间到停止"; break;
            case 3:stop_type = "放电容量到停止"; break;
            case 4:stop_type = "单体电压下限到停止"; break;
            case 5:stop_type = "单体温度上限停止"; break;
            case 6:stop_type = "组端电压下限到停止"; break;
            case 7:stop_type = "市电中断停止"; break;
            case 8:stop_type = "单体通信异常停止"; break;
            case 9:stop_type = "存储数据满停止"; break;
            case 10:stop_type = "机内温度异常停止"; break;
            case 11:stop_type = "放电电流异常停止"; break;
            case 12:stop_type = "后台通信中断停止"; break;
            case 13:stop_type = "内部程序异常停止"; break;
            case 14:stop_type = "电源电压过高停止"; break;
            case 15:stop_type = "协转通信异常停止"; break;
            case 18:stop_type = "暂停"; break;
            case 19:stop_type = "正在放电测试"; break;
            case 20:stop_type = "正在等待放电"; break;
            case 21:stop_type = "正在限流充电"; break;
            case 22:stop_type = "正在直连充电"; break;
            case 23:stop_type = "正在等待充电"; break;
            case 28:stop_type = "切换单元通信故障"; break;
            case 29:stop_type = "切换单元故障"; break;
            case 30:stop_type = "降压模块故障"; break;
            case 31:stop_type = "负载功率小"; break;
            case 32:stop_type = "干接点输入故障"; break;
            case 33:stop_type = "母联通信异常"; break;
            case 34:stop_type = "母联手动断开或信号异常"; break;
            case 35:stop_type = "降压通信故障"; break;
            case 36:stop_type = "防雷器故障"; break;
            case 37:stop_type = "机柜表头通信故障"; break;
            case 38:stop_type = "限流充电模块故障"; break;
            case 39:stop_type = "紧急停止"; break;
            case 40:stop_type = "远程闭锁"; break;
            case 41:stop_type = "切换单元开关异常"; break;
            case 42:stop_type = "交流空开异常(分空开)"; break;
            case 43:stop_type = "交流接触器异常"; break;
            case 44:stop_type = "直流空开异常(分空开)"; break;
            case 45:stop_type = "切换开关粘连或电源状态异常"; break;
            case 46:stop_type = "电阻箱温度过高"; break;
            case 47:stop_type = "降压模块过温限流"; break;
            case 48:stop_type = "降压模块风扇故障"; break;
            case 49:stop_type = "降压模块过流故障"; break;
            case 52:stop_type = "充电截止到"; break;          // #define        ALARM_ChargeCurrEnd_Stop            52        //充电截止到
            case 53:stop_type = "在线接触器状态异常"; break;   //#define        ALARM_Online_JCQ_Error              53        //在线接触器状态异常
            default:stop_type = "未知"; break;
        }
        return stop_type;
    }
 
 
    // 6186 启动失败原因
    public static String getControlFailType6186(int controlFailType) {
        String controlFailTypeName = "未知";
        switch(controlFailType) {
            case 0x00:controlFailTypeName = "无"; break;
            case 0x03:controlFailTypeName = "内部通信故障"; break;
            case 0x04:controlFailTypeName = "系统存在告警"; break;
            case 0x05:controlFailTypeName = "系统测试中"; break;
            case 0x06:controlFailTypeName = "输入电压过高"; break;
            case 0x07:controlFailTypeName = "输入电压过低"; break;
            case 0x08:controlFailTypeName = "负载功率太小"; break;
            case 0x09:controlFailTypeName = "两段直流母线压差大"; break;
            case 0x0A:controlFailTypeName = "两段电池组压差大"; break;
            case 0x0B:controlFailTypeName = "远程闭锁状态"; break;
            case 0x0C:controlFailTypeName = "急停状态"; break;
            case 0x0D:controlFailTypeName = "切换开关粘连或电源状态异常"; break;
            case 0x0E:controlFailTypeName = "启动频繁"; break;
            case 0x0F:controlFailTypeName = "系统正在内阻测试"; break;
            case 0x10:controlFailTypeName = "放电参数设置异常"; break;
            case 0x11:controlFailTypeName = "设备内存不足"; break;
            case 0xFF:controlFailTypeName = "未知"; break;
        }
        return controlFailTypeName;
    }
 
    //苏州地铁使用电池状态对应
    public static String getBattState(int battState) {
        String stateName = "未知";
        switch(battState) {
            case 0:stateName = "未知"; break;
            case 1:stateName = "浮充"; break;
            case 2:stateName = "充电"; break;
            case 3:stateName = "放电"; break;
            case 4:stateName = "均充"; break;
            case 5:stateName = "内阻测试"; break;
        }
        return stateName;
    }
}