DWA.json 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841
  1. {
  2. "all":[
  3. {
  4. "firstTag":"技术参数",
  5. "secondTag":"总体",
  6. "infoPointName":"低压配电抽屉类型",
  7. "infoPointCode":"LowUCabDrawerType",
  8. "unit":"",
  9. "dataType":"Enum",
  10. "inputMode":"D1",
  11. "dataSource":[
  12. {
  13. "code":"1",
  14. "name":"GCK"
  15. },
  16. {
  17. "code":"2",
  18. "name":"GCS"
  19. },
  20. {
  21. "code":"3",
  22. "name":"MNS"
  23. },
  24. {
  25. "code":"4",
  26. "name":"其他"
  27. }
  28. ],
  29. "note":"GGD是固定柜,GCK、GCS、MNS是抽屉柜;GCK和GCS、MNS抽屉推进机构不同;GCS只能单面操作,MNS可以双面操作",
  30. "func-id":""
  31. },
  32. {
  33. "firstTag":"技术参数",
  34. "secondTag":"总体",
  35. "infoPointName":"额定电压",
  36. "infoPointCode":"RatedU",
  37. "unit":"V",
  38. "dataType":"Num",
  39. "inputMode":"A2",
  40. "dataSource":"",
  41. "note":"",
  42. "func-id":""
  43. },
  44. {
  45. "firstTag":"技术参数",
  46. "secondTag":"总体",
  47. "infoPointName":"额定电流",
  48. "infoPointCode":"RatedI",
  49. "unit":"A",
  50. "dataType":"Num",
  51. "inputMode":"A2",
  52. "dataSource":"",
  53. "note":"",
  54. "func-id":""
  55. },
  56. {
  57. "firstTag":"技术参数",
  58. "secondTag":"总体",
  59. "infoPointName":"额定功率",
  60. "infoPointCode":"RatedP",
  61. "unit":"kW",
  62. "dataType":"Num",
  63. "inputMode":"A2",
  64. "dataSource":"",
  65. "note":"",
  66. "func-id":""
  67. },
  68. {
  69. "firstTag":"技术参数",
  70. "secondTag":"总体",
  71. "infoPointName":"额定频率",
  72. "infoPointCode":"RatedFreq",
  73. "unit":"Hz",
  74. "dataType":"Num",
  75. "inputMode":"A2",
  76. "dataSource":"",
  77. "note":"",
  78. "func-id":""
  79. },
  80. {
  81. "firstTag":"技术参数",
  82. "secondTag":"总体",
  83. "infoPointName":"相保护电流",
  84. "infoPointCode":"PhaseProtectI",
  85. "unit":"A",
  86. "dataType":"Num",
  87. "inputMode":"A2",
  88. "dataSource":"",
  89. "note":"",
  90. "func-id":""
  91. },
  92. {
  93. "firstTag":"技术参数",
  94. "secondTag":"开关保护",
  95. "infoPointName":"是否包含负荷开关",
  96. "infoPointCode":"isLoadSwitch",
  97. "unit":"",
  98. "dataType":"Bool",
  99. "inputMode":"E1",
  100. "dataSource":[
  101. {
  102. "code":"0",
  103. "name":"无"
  104. },
  105. {
  106. "code":"1",
  107. "name":"有"
  108. }
  109. ],
  110. "note":"",
  111. "func-id":""
  112. },
  113. {
  114. "firstTag":"技术参数",
  115. "secondTag":"开关保护",
  116. "infoPointName":"是否包含熔断器",
  117. "infoPointCode":"isFuse",
  118. "unit":"",
  119. "dataType":"Bool",
  120. "inputMode":"E1",
  121. "dataSource":[
  122. {
  123. "code":"0",
  124. "name":"无"
  125. },
  126. {
  127. "code":"1",
  128. "name":"有"
  129. }
  130. ],
  131. "note":"",
  132. "func-id":""
  133. },
  134. {
  135. "firstTag":"技术参数",
  136. "secondTag":"开关保护",
  137. "infoPointName":"是否包含断路器",
  138. "infoPointCode":"isBreaker",
  139. "unit":"",
  140. "dataType":"Bool",
  141. "inputMode":"E1",
  142. "dataSource":[
  143. {
  144. "code":"0",
  145. "name":"无"
  146. },
  147. {
  148. "code":"1",
  149. "name":"有"
  150. }
  151. ],
  152. "note":"",
  153. "func-id":""
  154. },
  155. {
  156. "firstTag":"技术参数",
  157. "secondTag":"开关保护",
  158. "infoPointName":"是否包含漏电保护器",
  159. "infoPointCode":"isLeakageProtector",
  160. "unit":"",
  161. "dataType":"Bool",
  162. "inputMode":"E1",
  163. "dataSource":[
  164. {
  165. "code":"0",
  166. "name":"无"
  167. },
  168. {
  169. "code":"1",
  170. "name":"有"
  171. }
  172. ],
  173. "note":"",
  174. "func-id":""
  175. },
  176. {
  177. "firstTag":"技术参数",
  178. "secondTag":"电压互感器",
  179. "infoPointName":"是否包含电压互感器",
  180. "infoPointCode":"isUTrans",
  181. "unit":"",
  182. "dataType":"Bool",
  183. "inputMode":"E1",
  184. "dataSource":[
  185. {
  186. "code":"0",
  187. "name":"无"
  188. },
  189. {
  190. "code":"1",
  191. "name":"有"
  192. }
  193. ],
  194. "note":"",
  195. "func-id":""
  196. },
  197. {
  198. "firstTag":"技术参数",
  199. "secondTag":"电压互感器",
  200. "infoPointName":"电压互感器额定电压比",
  201. "infoPointCode":"UTransRatedURatio",
  202. "unit":"",
  203. "dataType":"Num",
  204. "inputMode":"A1",
  205. "dataSource":"",
  206. "note":"",
  207. "func-id":""
  208. },
  209. {
  210. "firstTag":"技术参数",
  211. "secondTag":"电压互感器",
  212. "infoPointName":"电压互感器准确级组合",
  213. "infoPointCode":"UTransAccuracyCombination",
  214. "unit":"",
  215. "dataType":"Enum",
  216. "inputMode":"D1",
  217. "dataSource":[
  218. {
  219. "code":"1",
  220. "name":"0.2级"
  221. },
  222. {
  223. "code":"2",
  224. "name":"0.5级"
  225. },
  226. {
  227. "code":"3",
  228. "name":"1级"
  229. },
  230. {
  231. "code":"4",
  232. "name":"3级"
  233. },
  234. {
  235. "code":"5",
  236. "name":"3P级"
  237. },
  238. {
  239. "code":"6",
  240. "name":"6P级"
  241. },
  242. {
  243. "code":"7",
  244. "name":"其他"
  245. }
  246. ],
  247. "note":"0.2,0.5,1,3为测量用;3P,6P为保护用",
  248. "func-id":""
  249. },
  250. {
  251. "firstTag":"技术参数",
  252. "secondTag":"电流互感器",
  253. "infoPointName":"是否包含电流互感器",
  254. "infoPointCode":"isITrans",
  255. "unit":"",
  256. "dataType":"Bool",
  257. "inputMode":"E1",
  258. "dataSource":[
  259. {
  260. "code":"0",
  261. "name":"无"
  262. },
  263. {
  264. "code":"1",
  265. "name":"有"
  266. }
  267. ],
  268. "note":"",
  269. "func-id":""
  270. },
  271. {
  272. "firstTag":"技术参数",
  273. "secondTag":"电流互感器",
  274. "infoPointName":"电流互感器类型",
  275. "infoPointCode":"ITransType",
  276. "unit":"",
  277. "dataType":"Enum",
  278. "inputMode":"D1",
  279. "dataSource":[
  280. {
  281. "code":"1",
  282. "name":"单匝式"
  283. },
  284. {
  285. "code":"2",
  286. "name":"穿墙式"
  287. },
  288. {
  289. "code":"3",
  290. "name":"支柱式"
  291. },
  292. {
  293. "code":"4",
  294. "name":"母线式"
  295. },
  296. {
  297. "code":"5",
  298. "name":"复匝式"
  299. },
  300. {
  301. "code":"6",
  302. "name":"其他"
  303. }
  304. ],
  305. "note":"",
  306. "func-id":""
  307. },
  308. {
  309. "firstTag":"技术参数",
  310. "secondTag":"电流互感器",
  311. "infoPointName":"电流互感器额定电流比",
  312. "infoPointCode":"ITransRatedIRatio",
  313. "unit":"",
  314. "dataType":"Num",
  315. "inputMode":"A1",
  316. "dataSource":"",
  317. "note":"",
  318. "func-id":""
  319. },
  320. {
  321. "firstTag":"控制参数",
  322. "secondTag":"",
  323. "infoPointName":"控制模式",
  324. "infoPointCode":"CtrlMode",
  325. "unit":"",
  326. "dataType":"Str",
  327. "inputMode":"B1",
  328. "dataSource":"",
  329. "note":"",
  330. "func-id":""
  331. },
  332. {
  333. "firstTag":"运行参数",
  334. "secondTag":"",
  335. "infoPointName":"运行状态",
  336. "infoPointCode":"RunStatus",
  337. "unit":"",
  338. "dataType":"Boolv",
  339. "inputMode":"L",
  340. "dataSource":"",
  341. "note":"0.停止 1.运行",
  342. "func-id":""
  343. },
  344. {
  345. "firstTag":"运行参数",
  346. "secondTag":"",
  347. "infoPointName":"本地远程状态",
  348. "infoPointCode":"RemoteStatus",
  349. "unit":"",
  350. "dataType":"Enumv",
  351. "inputMode":"L",
  352. "dataSource":"",
  353. "note":"1.本地手动 2.本地自动 3.远程手动 4.远程自动 5. 其他",
  354. "func-id":""
  355. },
  356. {
  357. "firstTag":"运行参数",
  358. "secondTag":"开关状态",
  359. "infoPointName":"断路器分\/合闸状态",
  360. "infoPointCode":"BreakerStatus",
  361. "unit":"",
  362. "dataType":"Boolv",
  363. "inputMode":"L",
  364. "dataSource":"",
  365. "note":"0. 分闸 1. 合闸",
  366. "func-id":""
  367. },
  368. {
  369. "firstTag":"运行参数",
  370. "secondTag":"开关状态",
  371. "infoPointName":"分段开关分\/合闸状态",
  372. "infoPointCode":"SectionSwitchStatus",
  373. "unit":"",
  374. "dataType":"Boolv",
  375. "inputMode":"L",
  376. "dataSource":"",
  377. "note":"0. 分闸 1. 合闸",
  378. "func-id":""
  379. },
  380. {
  381. "firstTag":"运行参数",
  382. "secondTag":"开关状态",
  383. "infoPointName":"负荷开关状态",
  384. "infoPointCode":"LoadSwitchStatus",
  385. "unit":"",
  386. "dataType":"Boolv",
  387. "inputMode":"L",
  388. "dataSource":"",
  389. "note":"0. 分闸 1. 合闸",
  390. "func-id":""
  391. },
  392. {
  393. "firstTag":"运行参数",
  394. "secondTag":"开关状态",
  395. "infoPointName":"接触器状态",
  396. "infoPointCode":"ContactorStatus",
  397. "unit":"",
  398. "dataType":"Boolv",
  399. "inputMode":"L",
  400. "dataSource":"",
  401. "note":"0. 分闸 1. 合闸",
  402. "func-id":""
  403. },
  404. {
  405. "firstTag":"运行参数",
  406. "secondTag":"开关状态",
  407. "infoPointName":"隔离开关状态",
  408. "infoPointCode":"DisconnectorStatus",
  409. "unit":"",
  410. "dataType":"Boolv",
  411. "inputMode":"L",
  412. "dataSource":"",
  413. "note":"0. 分闸 1. 合闸",
  414. "func-id":""
  415. },
  416. {
  417. "firstTag":"运行参数",
  418. "secondTag":"开关状态",
  419. "infoPointName":"接地状态",
  420. "infoPointCode":"GroundStatus",
  421. "unit":"",
  422. "dataType":"Boolv",
  423. "inputMode":"L",
  424. "dataSource":"",
  425. "note":"0. 正常接地 1. 接地故障",
  426. "func-id":""
  427. },
  428. {
  429. "firstTag":"运行参数",
  430. "secondTag":"开关状态",
  431. "infoPointName":"检修状态",
  432. "infoPointCode":"OverhaulStatus",
  433. "unit":"",
  434. "dataType":"Boolv",
  435. "inputMode":"L",
  436. "dataSource":"",
  437. "note":"0. 正常工作 1. 检修",
  438. "func-id":""
  439. },
  440. {
  441. "firstTag":"运行参数",
  442. "secondTag":"开关状态",
  443. "infoPointName":"弹簧储能状态",
  444. "infoPointCode":"SpringEStoreStatus",
  445. "unit":"",
  446. "dataType":"Boolv",
  447. "inputMode":"L",
  448. "dataSource":"",
  449. "note":"0. 正常储能 1. 未储能",
  450. "func-id":""
  451. },
  452. {
  453. "firstTag":"运行参数",
  454. "secondTag":"开关状态",
  455. "infoPointName":"绝缘状态",
  456. "infoPointCode":"InsulationStatus",
  457. "unit":"",
  458. "dataType":"Boolv",
  459. "inputMode":"L",
  460. "dataSource":"",
  461. "note":"0. 正常绝缘 1. 绝缘故障",
  462. "func-id":""
  463. },
  464. {
  465. "firstTag":"运行参数",
  466. "secondTag":"开关状态",
  467. "infoPointName":"重合闸充电状态",
  468. "infoPointCode":"ReclosingChargeStatus",
  469. "unit":"",
  470. "dataType":"Boolv",
  471. "inputMode":"L",
  472. "dataSource":"",
  473. "note":"0. 已充满电 1. 正在充电",
  474. "func-id":""
  475. },
  476. {
  477. "firstTag":"运行参数",
  478. "secondTag":"开关状态",
  479. "infoPointName":"通讯状态",
  480. "infoPointCode":"CommunicateStatus",
  481. "unit":"",
  482. "dataType":"Boolv",
  483. "inputMode":"L",
  484. "dataSource":"",
  485. "note":"0. 正常通讯 1. 通讯故障",
  486. "func-id":""
  487. },
  488. {
  489. "firstTag":"运行参数",
  490. "secondTag":"电压",
  491. "infoPointName":"A相电压",
  492. "infoPointCode":"APhaseU",
  493. "unit":"V",
  494. "dataType":"Inst",
  495. "inputMode":"L",
  496. "dataSource":"",
  497. "note":"",
  498. "func-id":""
  499. },
  500. {
  501. "firstTag":"运行参数",
  502. "secondTag":"电压",
  503. "infoPointName":"B相电压",
  504. "infoPointCode":"BPhaseU",
  505. "unit":"V",
  506. "dataType":"Inst",
  507. "inputMode":"L",
  508. "dataSource":"",
  509. "note":"",
  510. "func-id":""
  511. },
  512. {
  513. "firstTag":"运行参数",
  514. "secondTag":"电压",
  515. "infoPointName":"C相电压",
  516. "infoPointCode":"CPhaseU",
  517. "unit":"V",
  518. "dataType":"Inst",
  519. "inputMode":"L",
  520. "dataSource":"",
  521. "note":"",
  522. "func-id":""
  523. },
  524. {
  525. "firstTag":"运行参数",
  526. "secondTag":"电压",
  527. "infoPointName":"Uab线电压",
  528. "infoPointCode":"UabU",
  529. "unit":"V",
  530. "dataType":"Inst",
  531. "inputMode":"L",
  532. "dataSource":"",
  533. "note":"",
  534. "func-id":""
  535. },
  536. {
  537. "firstTag":"运行参数",
  538. "secondTag":"电压",
  539. "infoPointName":"Ubc线电压",
  540. "infoPointCode":"UbcU",
  541. "unit":"V",
  542. "dataType":"Inst",
  543. "inputMode":"L",
  544. "dataSource":"",
  545. "note":"",
  546. "func-id":""
  547. },
  548. {
  549. "firstTag":"运行参数",
  550. "secondTag":"电压",
  551. "infoPointName":"Uac线电压",
  552. "infoPointCode":"UacU",
  553. "unit":"V",
  554. "dataType":"Inst",
  555. "inputMode":"L",
  556. "dataSource":"",
  557. "note":"",
  558. "func-id":""
  559. },
  560. {
  561. "firstTag":"运行参数",
  562. "secondTag":"电压",
  563. "infoPointName":"正序电压",
  564. "infoPointCode":"PositiveSequenceU",
  565. "unit":"V",
  566. "dataType":"Inst",
  567. "inputMode":"L",
  568. "dataSource":"",
  569. "note":"",
  570. "func-id":""
  571. },
  572. {
  573. "firstTag":"运行参数",
  574. "secondTag":"电压",
  575. "infoPointName":"负序电压",
  576. "infoPointCode":"NegativeSequenceU",
  577. "unit":"V",
  578. "dataType":"Inst",
  579. "inputMode":"L",
  580. "dataSource":"",
  581. "note":"",
  582. "func-id":""
  583. },
  584. {
  585. "firstTag":"运行参数",
  586. "secondTag":"电压",
  587. "infoPointName":"零序电压",
  588. "infoPointCode":"ZeroSequenceU",
  589. "unit":"V",
  590. "dataType":"Inst",
  591. "inputMode":"L",
  592. "dataSource":"",
  593. "note":"",
  594. "func-id":""
  595. },
  596. {
  597. "firstTag":"运行参数",
  598. "secondTag":"电流",
  599. "infoPointName":"A相测量电流",
  600. "infoPointCode":"APhaseI",
  601. "unit":"A",
  602. "dataType":"Inst",
  603. "inputMode":"L",
  604. "dataSource":"",
  605. "note":"",
  606. "func-id":""
  607. },
  608. {
  609. "firstTag":"运行参数",
  610. "secondTag":"电流",
  611. "infoPointName":"B相测量电流",
  612. "infoPointCode":"BPhaseI",
  613. "unit":"A",
  614. "dataType":"Inst",
  615. "inputMode":"L",
  616. "dataSource":"",
  617. "note":"",
  618. "func-id":""
  619. },
  620. {
  621. "firstTag":"运行参数",
  622. "secondTag":"电流",
  623. "infoPointName":"C相测量电流",
  624. "infoPointCode":"CPhaseI",
  625. "unit":"A",
  626. "dataType":"Inst",
  627. "inputMode":"L",
  628. "dataSource":"",
  629. "note":"",
  630. "func-id":""
  631. },
  632. {
  633. "firstTag":"运行参数",
  634. "secondTag":"电流",
  635. "infoPointName":"A相无功电流",
  636. "infoPointCode":"APhaseReactiveI",
  637. "unit":"A",
  638. "dataType":"Inst",
  639. "inputMode":"L",
  640. "dataSource":"",
  641. "note":"",
  642. "func-id":""
  643. },
  644. {
  645. "firstTag":"运行参数",
  646. "secondTag":"电流",
  647. "infoPointName":"B相无功电流",
  648. "infoPointCode":"BPhaseReactiveI",
  649. "unit":"A",
  650. "dataType":"Inst",
  651. "inputMode":"L",
  652. "dataSource":"",
  653. "note":"",
  654. "func-id":""
  655. },
  656. {
  657. "firstTag":"运行参数",
  658. "secondTag":"电流",
  659. "infoPointName":"C相无功电流",
  660. "infoPointCode":"CPhaseReactiveI",
  661. "unit":"A",
  662. "dataType":"Inst",
  663. "inputMode":"L",
  664. "dataSource":"",
  665. "note":"",
  666. "func-id":""
  667. },
  668. {
  669. "firstTag":"运行参数",
  670. "secondTag":"电流",
  671. "infoPointName":"中性线电流",
  672. "infoPointCode":"NeutralI",
  673. "unit":"A",
  674. "dataType":"Inst",
  675. "inputMode":"L",
  676. "dataSource":"",
  677. "note":"",
  678. "func-id":""
  679. },
  680. {
  681. "firstTag":"运行参数",
  682. "secondTag":"电流",
  683. "infoPointName":"正序电流",
  684. "infoPointCode":"PositiveSequenceI",
  685. "unit":"A",
  686. "dataType":"Inst",
  687. "inputMode":"L",
  688. "dataSource":"",
  689. "note":"",
  690. "func-id":""
  691. },
  692. {
  693. "firstTag":"运行参数",
  694. "secondTag":"电流",
  695. "infoPointName":"负序电流",
  696. "infoPointCode":"NegativeSequenceI",
  697. "unit":"A",
  698. "dataType":"Inst",
  699. "inputMode":"L",
  700. "dataSource":"",
  701. "note":"",
  702. "func-id":""
  703. },
  704. {
  705. "firstTag":"运行参数",
  706. "secondTag":"电流",
  707. "infoPointName":"高压零序电流",
  708. "infoPointCode":"HUZeroSequenceI",
  709. "unit":"A",
  710. "dataType":"Inst",
  711. "inputMode":"L",
  712. "dataSource":"",
  713. "note":"",
  714. "func-id":""
  715. },
  716. {
  717. "firstTag":"运行参数",
  718. "secondTag":"电流",
  719. "infoPointName":"低压零序电流",
  720. "infoPointCode":"LUZeroSequenceI",
  721. "unit":"A",
  722. "dataType":"Inst",
  723. "inputMode":"L",
  724. "dataSource":"",
  725. "note":"",
  726. "func-id":""
  727. },
  728. {
  729. "firstTag":"运行参数",
  730. "secondTag":"",
  731. "infoPointName":"频率",
  732. "infoPointCode":"Freq",
  733. "unit":"Hz",
  734. "dataType":"Inst",
  735. "inputMode":"L",
  736. "dataSource":"",
  737. "note":"",
  738. "func-id":""
  739. },
  740. {
  741. "firstTag":"运行参数",
  742. "secondTag":"功率",
  743. "infoPointName":"A相有功功率",
  744. "infoPointCode":"APhaseActiveP",
  745. "unit":"kW",
  746. "dataType":"Inst",
  747. "inputMode":"L",
  748. "dataSource":"",
  749. "note":"",
  750. "func-id":""
  751. },
  752. {
  753. "firstTag":"运行参数",
  754. "secondTag":"功率",
  755. "infoPointName":"B相有功功率",
  756. "infoPointCode":"BPhaseActiveP",
  757. "unit":"kW",
  758. "dataType":"Inst",
  759. "inputMode":"L",
  760. "dataSource":"",
  761. "note":"",
  762. "func-id":""
  763. },
  764. {
  765. "firstTag":"运行参数",
  766. "secondTag":"功率",
  767. "infoPointName":"C相有功功率",
  768. "infoPointCode":"CPhaseActiveP",
  769. "unit":"kW",
  770. "dataType":"Inst",
  771. "inputMode":"L",
  772. "dataSource":"",
  773. "note":"",
  774. "func-id":""
  775. },
  776. {
  777. "firstTag":"运行参数",
  778. "secondTag":"功率",
  779. "infoPointName":"总有功功率",
  780. "infoPointCode":"TotActiveP",
  781. "unit":"kW",
  782. "dataType":"Inst",
  783. "inputMode":"L",
  784. "dataSource":"",
  785. "note":"",
  786. "func-id":""
  787. },
  788. {
  789. "firstTag":"运行参数",
  790. "secondTag":"功率",
  791. "infoPointName":"A相无功功率",
  792. "infoPointCode":"APhaseReactiveP",
  793. "unit":"kVar",
  794. "dataType":"Inst",
  795. "inputMode":"L",
  796. "dataSource":"",
  797. "note":"",
  798. "func-id":""
  799. },
  800. {
  801. "firstTag":"运行参数",
  802. "secondTag":"功率",
  803. "infoPointName":"B相无功功率",
  804. "infoPointCode":"BPhaseReactiveP",
  805. "unit":"kVar",
  806. "dataType":"Inst",
  807. "inputMode":"L",
  808. "dataSource":"",
  809. "note":"",
  810. "func-id":""
  811. },
  812. {
  813. "firstTag":"运行参数",
  814. "secondTag":"功率",
  815. "infoPointName":"C相无功功率",
  816. "infoPointCode":"CPhaseReactiveP",
  817. "unit":"kVar",
  818. "dataType":"Inst",
  819. "inputMode":"L",
  820. "dataSource":"",
  821. "note":"",
  822. "func-id":""
  823. },
  824. {
  825. "firstTag":"运行参数",
  826. "secondTag":"功率",
  827. "infoPointName":"总无功功率",
  828. "infoPointCode":"TotReactiveP",
  829. "unit":"kVar",
  830. "dataType":"Inst",
  831. "inputMode":"L",
  832. "dataSource":"",
  833. "note":"",
  834. "func-id":""
  835. },
  836. {
  837. "firstTag":"运行参数",
  838. "secondTag":"功率",
  839. "infoPointName":"A相视在功率",
  840. "infoPointCode":"APhaseApparentP",
  841. "unit":"kVA",
  842. "dataType":"Inst",
  843. "inputMode":"L",
  844. "dataSource":"",
  845. "note":"",
  846. "func-id":""
  847. },
  848. {
  849. "firstTag":"运行参数",
  850. "secondTag":"功率",
  851. "infoPointName":"B相视在功率",
  852. "infoPointCode":"BPhaseApparentP",
  853. "unit":"kVA",
  854. "dataType":"Inst",
  855. "inputMode":"L",
  856. "dataSource":"",
  857. "note":"",
  858. "func-id":""
  859. },
  860. {
  861. "firstTag":"运行参数",
  862. "secondTag":"功率",
  863. "infoPointName":"C相视在功率",
  864. "infoPointCode":"CPhaseApparentP",
  865. "unit":"kVA",
  866. "dataType":"Inst",
  867. "inputMode":"L",
  868. "dataSource":"",
  869. "note":"",
  870. "func-id":""
  871. },
  872. {
  873. "firstTag":"运行参数",
  874. "secondTag":"功率",
  875. "infoPointName":"总视在功率",
  876. "infoPointCode":"TotApparentP",
  877. "unit":"kVA",
  878. "dataType":"Inst",
  879. "inputMode":"L",
  880. "dataSource":"",
  881. "note":"",
  882. "func-id":""
  883. },
  884. {
  885. "firstTag":"运行参数",
  886. "secondTag":"功率",
  887. "infoPointName":"A相功率因数",
  888. "infoPointCode":"APhasePFactor",
  889. "unit":"",
  890. "dataType":"Inst",
  891. "inputMode":"L",
  892. "dataSource":"",
  893. "note":"",
  894. "func-id":""
  895. },
  896. {
  897. "firstTag":"运行参数",
  898. "secondTag":"功率",
  899. "infoPointName":"B相功率因数",
  900. "infoPointCode":"BPhasePFactor",
  901. "unit":"",
  902. "dataType":"Inst",
  903. "inputMode":"L",
  904. "dataSource":"",
  905. "note":"",
  906. "func-id":""
  907. },
  908. {
  909. "firstTag":"运行参数",
  910. "secondTag":"功率",
  911. "infoPointName":"C相功率因数",
  912. "infoPointCode":"CPhasePFactor",
  913. "unit":"",
  914. "dataType":"Inst",
  915. "inputMode":"L",
  916. "dataSource":"",
  917. "note":"",
  918. "func-id":""
  919. },
  920. {
  921. "firstTag":"运行参数",
  922. "secondTag":"功率",
  923. "infoPointName":"总功率因数",
  924. "infoPointCode":"TotPFactor",
  925. "unit":"",
  926. "dataType":"Inst",
  927. "inputMode":"L",
  928. "dataSource":"",
  929. "note":"",
  930. "func-id":""
  931. },
  932. {
  933. "firstTag":"运行参数",
  934. "secondTag":"总谐波",
  935. "infoPointName":"总谐波A相电压",
  936. "infoPointCode":"TotHarmonicAPhaseU",
  937. "unit":"V",
  938. "dataType":"Inst",
  939. "inputMode":"L",
  940. "dataSource":"",
  941. "note":"",
  942. "func-id":""
  943. },
  944. {
  945. "firstTag":"运行参数",
  946. "secondTag":"总谐波",
  947. "infoPointName":"总谐波B相电压",
  948. "infoPointCode":"TotHarmonicBPhaseU",
  949. "unit":"V",
  950. "dataType":"Inst",
  951. "inputMode":"L",
  952. "dataSource":"",
  953. "note":"",
  954. "func-id":""
  955. },
  956. {
  957. "firstTag":"运行参数",
  958. "secondTag":"总谐波",
  959. "infoPointName":"总谐波C相电压",
  960. "infoPointCode":"TotHarmonicCPhaseU",
  961. "unit":"V",
  962. "dataType":"Inst",
  963. "inputMode":"L",
  964. "dataSource":"",
  965. "note":"",
  966. "func-id":""
  967. },
  968. {
  969. "firstTag":"运行参数",
  970. "secondTag":"总谐波",
  971. "infoPointName":"总电压谐波含量",
  972. "infoPointCode":"TotUHarmonic",
  973. "unit":"V",
  974. "dataType":"Inst",
  975. "inputMode":"L",
  976. "dataSource":"",
  977. "note":"",
  978. "func-id":""
  979. },
  980. {
  981. "firstTag":"运行参数",
  982. "secondTag":"总谐波",
  983. "infoPointName":"总谐波A相电流",
  984. "infoPointCode":"TotHarmonicAPhaseI",
  985. "unit":"A",
  986. "dataType":"Inst",
  987. "inputMode":"L",
  988. "dataSource":"",
  989. "note":"",
  990. "func-id":""
  991. },
  992. {
  993. "firstTag":"运行参数",
  994. "secondTag":"总谐波",
  995. "infoPointName":"总谐波B相电流",
  996. "infoPointCode":"TotHarmonicBPhaseI",
  997. "unit":"A",
  998. "dataType":"Inst",
  999. "inputMode":"L",
  1000. "dataSource":"",
  1001. "note":"",
  1002. "func-id":""
  1003. },
  1004. {
  1005. "firstTag":"运行参数",
  1006. "secondTag":"总谐波",
  1007. "infoPointName":"总谐波C相电流",
  1008. "infoPointCode":"TotHarmonicCPhaseI",
  1009. "unit":"A",
  1010. "dataType":"Inst",
  1011. "inputMode":"L",
  1012. "dataSource":"",
  1013. "note":"",
  1014. "func-id":""
  1015. },
  1016. {
  1017. "firstTag":"运行参数",
  1018. "secondTag":"总谐波",
  1019. "infoPointName":"总电流谐波含量",
  1020. "infoPointCode":"TotIHarmonic",
  1021. "unit":"A",
  1022. "dataType":"Inst",
  1023. "inputMode":"L",
  1024. "dataSource":"",
  1025. "note":"",
  1026. "func-id":""
  1027. },
  1028. {
  1029. "firstTag":"运行参数",
  1030. "secondTag":"畸变率",
  1031. "infoPointName":"A相电压谐波畸变率",
  1032. "infoPointCode":"APhaseUHD",
  1033. "unit":"%",
  1034. "dataType":"Inst",
  1035. "inputMode":"L",
  1036. "dataSource":"",
  1037. "note":"",
  1038. "func-id":""
  1039. },
  1040. {
  1041. "firstTag":"运行参数",
  1042. "secondTag":"畸变率",
  1043. "infoPointName":"B相电压谐波畸变率",
  1044. "infoPointCode":"BPhaseUHD",
  1045. "unit":"%",
  1046. "dataType":"Inst",
  1047. "inputMode":"L",
  1048. "dataSource":"",
  1049. "note":"",
  1050. "func-id":""
  1051. },
  1052. {
  1053. "firstTag":"运行参数",
  1054. "secondTag":"畸变率",
  1055. "infoPointName":"C相电压谐波畸变率",
  1056. "infoPointCode":"CPhaseUHD",
  1057. "unit":"%",
  1058. "dataType":"Inst",
  1059. "inputMode":"L",
  1060. "dataSource":"",
  1061. "note":"",
  1062. "func-id":""
  1063. },
  1064. {
  1065. "firstTag":"运行参数",
  1066. "secondTag":"畸变率",
  1067. "infoPointName":"电压谐波总畸变率",
  1068. "infoPointCode":"UTHD",
  1069. "unit":"%",
  1070. "dataType":"Inst",
  1071. "inputMode":"L",
  1072. "dataSource":"",
  1073. "note":"",
  1074. "func-id":""
  1075. },
  1076. {
  1077. "firstTag":"运行参数",
  1078. "secondTag":"畸变率",
  1079. "infoPointName":"A相电流谐波畸变率",
  1080. "infoPointCode":"APhaseIHD",
  1081. "unit":"%",
  1082. "dataType":"Inst",
  1083. "inputMode":"L",
  1084. "dataSource":"",
  1085. "note":"",
  1086. "func-id":""
  1087. },
  1088. {
  1089. "firstTag":"运行参数",
  1090. "secondTag":"畸变率",
  1091. "infoPointName":"B相电流谐波畸变率",
  1092. "infoPointCode":"BPhaseIHD",
  1093. "unit":"%",
  1094. "dataType":"Inst",
  1095. "inputMode":"L",
  1096. "dataSource":"",
  1097. "note":"",
  1098. "func-id":""
  1099. },
  1100. {
  1101. "firstTag":"运行参数",
  1102. "secondTag":"畸变率",
  1103. "infoPointName":"C相电流谐波畸变率",
  1104. "infoPointCode":"CPhaseIHD",
  1105. "unit":"%",
  1106. "dataType":"Inst",
  1107. "inputMode":"L",
  1108. "dataSource":"",
  1109. "note":"",
  1110. "func-id":""
  1111. },
  1112. {
  1113. "firstTag":"运行参数",
  1114. "secondTag":"畸变率",
  1115. "infoPointName":"电流谐波总畸变率",
  1116. "infoPointCode":"ITHD",
  1117. "unit":"%",
  1118. "dataType":"Inst",
  1119. "inputMode":"L",
  1120. "dataSource":"",
  1121. "note":"",
  1122. "func-id":""
  1123. },
  1124. {
  1125. "firstTag":"运行参数",
  1126. "secondTag":"畸变率",
  1127. "infoPointName":"3阶谐波A相电压畸变率",
  1128. "infoPointCode":"3APhaseUHD",
  1129. "unit":"%",
  1130. "dataType":"Inst",
  1131. "inputMode":"L",
  1132. "dataSource":"",
  1133. "note":"",
  1134. "func-id":""
  1135. },
  1136. {
  1137. "firstTag":"运行参数",
  1138. "secondTag":"畸变率",
  1139. "infoPointName":"3阶谐波B相电压畸变率",
  1140. "infoPointCode":"3BPhaseUHD",
  1141. "unit":"%",
  1142. "dataType":"Inst",
  1143. "inputMode":"L",
  1144. "dataSource":"",
  1145. "note":"",
  1146. "func-id":""
  1147. },
  1148. {
  1149. "firstTag":"运行参数",
  1150. "secondTag":"畸变率",
  1151. "infoPointName":"3阶谐波C相电压畸变率",
  1152. "infoPointCode":"3CPhaseUHD",
  1153. "unit":"%",
  1154. "dataType":"Inst",
  1155. "inputMode":"L",
  1156. "dataSource":"",
  1157. "note":"",
  1158. "func-id":""
  1159. },
  1160. {
  1161. "firstTag":"运行参数",
  1162. "secondTag":"畸变率",
  1163. "infoPointName":"3阶谐波A相电流畸变率",
  1164. "infoPointCode":"3APhaseIHD",
  1165. "unit":"%",
  1166. "dataType":"Inst",
  1167. "inputMode":"L",
  1168. "dataSource":"",
  1169. "note":"",
  1170. "func-id":""
  1171. },
  1172. {
  1173. "firstTag":"运行参数",
  1174. "secondTag":"畸变率",
  1175. "infoPointName":"3阶谐波B相电流畸变率",
  1176. "infoPointCode":"3BPhaseIHD",
  1177. "unit":"%",
  1178. "dataType":"Inst",
  1179. "inputMode":"L",
  1180. "dataSource":"",
  1181. "note":"",
  1182. "func-id":""
  1183. },
  1184. {
  1185. "firstTag":"运行参数",
  1186. "secondTag":"畸变率",
  1187. "infoPointName":"3阶谐波C相电流畸变率",
  1188. "infoPointCode":"3CPhaseIHD",
  1189. "unit":"%",
  1190. "dataType":"Inst",
  1191. "inputMode":"L",
  1192. "dataSource":"",
  1193. "note":"",
  1194. "func-id":""
  1195. },
  1196. {
  1197. "firstTag":"运行参数",
  1198. "secondTag":"畸变率",
  1199. "infoPointName":"5阶谐波A相电压畸变率",
  1200. "infoPointCode":"5APhaseUHD",
  1201. "unit":"%",
  1202. "dataType":"Inst",
  1203. "inputMode":"L",
  1204. "dataSource":"",
  1205. "note":"",
  1206. "func-id":""
  1207. },
  1208. {
  1209. "firstTag":"运行参数",
  1210. "secondTag":"畸变率",
  1211. "infoPointName":"5阶谐波B相电压畸变率",
  1212. "infoPointCode":"5BPhaseUHD",
  1213. "unit":"%",
  1214. "dataType":"Inst",
  1215. "inputMode":"L",
  1216. "dataSource":"",
  1217. "note":"",
  1218. "func-id":""
  1219. },
  1220. {
  1221. "firstTag":"运行参数",
  1222. "secondTag":"畸变率",
  1223. "infoPointName":"5阶谐波C相电压畸变率",
  1224. "infoPointCode":"5CPhaseUHD",
  1225. "unit":"%",
  1226. "dataType":"Inst",
  1227. "inputMode":"L",
  1228. "dataSource":"",
  1229. "note":"",
  1230. "func-id":""
  1231. },
  1232. {
  1233. "firstTag":"运行参数",
  1234. "secondTag":"畸变率",
  1235. "infoPointName":"5阶谐波A相电流畸变率",
  1236. "infoPointCode":"5APhaseIHD",
  1237. "unit":"%",
  1238. "dataType":"Inst",
  1239. "inputMode":"L",
  1240. "dataSource":"",
  1241. "note":"",
  1242. "func-id":""
  1243. },
  1244. {
  1245. "firstTag":"运行参数",
  1246. "secondTag":"畸变率",
  1247. "infoPointName":"5阶谐波B相电流畸变率",
  1248. "infoPointCode":"5BPhaseIHD",
  1249. "unit":"%",
  1250. "dataType":"Inst",
  1251. "inputMode":"L",
  1252. "dataSource":"",
  1253. "note":"",
  1254. "func-id":""
  1255. },
  1256. {
  1257. "firstTag":"运行参数",
  1258. "secondTag":"畸变率",
  1259. "infoPointName":"5阶谐波C相电流畸变率",
  1260. "infoPointCode":"5CPhaseIHD",
  1261. "unit":"%",
  1262. "dataType":"Inst",
  1263. "inputMode":"L",
  1264. "dataSource":"",
  1265. "note":"",
  1266. "func-id":""
  1267. },
  1268. {
  1269. "firstTag":"运行参数",
  1270. "secondTag":"畸变率",
  1271. "infoPointName":"7阶谐波A相电压畸变率",
  1272. "infoPointCode":"7APhaseUHD",
  1273. "unit":"%",
  1274. "dataType":"Inst",
  1275. "inputMode":"L",
  1276. "dataSource":"",
  1277. "note":"",
  1278. "func-id":""
  1279. },
  1280. {
  1281. "firstTag":"运行参数",
  1282. "secondTag":"畸变率",
  1283. "infoPointName":"7阶谐波B相电压畸变率",
  1284. "infoPointCode":"7BPhaseUHD",
  1285. "unit":"%",
  1286. "dataType":"Inst",
  1287. "inputMode":"L",
  1288. "dataSource":"",
  1289. "note":"",
  1290. "func-id":""
  1291. },
  1292. {
  1293. "firstTag":"运行参数",
  1294. "secondTag":"畸变率",
  1295. "infoPointName":"7阶谐波C相电压畸变率",
  1296. "infoPointCode":"7CPhaseUHD",
  1297. "unit":"%",
  1298. "dataType":"Inst",
  1299. "inputMode":"L",
  1300. "dataSource":"",
  1301. "note":"",
  1302. "func-id":""
  1303. },
  1304. {
  1305. "firstTag":"运行参数",
  1306. "secondTag":"畸变率",
  1307. "infoPointName":"7阶谐波A相电流畸变率",
  1308. "infoPointCode":"7APhaseIHD",
  1309. "unit":"%",
  1310. "dataType":"Inst",
  1311. "inputMode":"L",
  1312. "dataSource":"",
  1313. "note":"",
  1314. "func-id":""
  1315. },
  1316. {
  1317. "firstTag":"运行参数",
  1318. "secondTag":"畸变率",
  1319. "infoPointName":"7阶谐波B相电流畸变率",
  1320. "infoPointCode":"7BPhaseIHD",
  1321. "unit":"%",
  1322. "dataType":"Inst",
  1323. "inputMode":"L",
  1324. "dataSource":"",
  1325. "note":"",
  1326. "func-id":""
  1327. },
  1328. {
  1329. "firstTag":"运行参数",
  1330. "secondTag":"畸变率",
  1331. "infoPointName":"7阶谐波C相电流畸变率",
  1332. "infoPointCode":"7CPhaseIHD",
  1333. "unit":"%",
  1334. "dataType":"Inst",
  1335. "inputMode":"L",
  1336. "dataSource":"",
  1337. "note":"",
  1338. "func-id":""
  1339. },
  1340. {
  1341. "firstTag":"运行参数",
  1342. "secondTag":"畸变率",
  1343. "infoPointName":"9阶谐波A相电压畸变率",
  1344. "infoPointCode":"9APhaseUHD",
  1345. "unit":"%",
  1346. "dataType":"Inst",
  1347. "inputMode":"L",
  1348. "dataSource":"",
  1349. "note":"",
  1350. "func-id":""
  1351. },
  1352. {
  1353. "firstTag":"运行参数",
  1354. "secondTag":"畸变率",
  1355. "infoPointName":"9阶谐波B相电压畸变率",
  1356. "infoPointCode":"9BPhaseUHD",
  1357. "unit":"%",
  1358. "dataType":"Inst",
  1359. "inputMode":"L",
  1360. "dataSource":"",
  1361. "note":"",
  1362. "func-id":""
  1363. },
  1364. {
  1365. "firstTag":"运行参数",
  1366. "secondTag":"畸变率",
  1367. "infoPointName":"9阶谐波C相电压畸变率",
  1368. "infoPointCode":"9CPhaseUHD",
  1369. "unit":"%",
  1370. "dataType":"Inst",
  1371. "inputMode":"L",
  1372. "dataSource":"",
  1373. "note":"",
  1374. "func-id":""
  1375. },
  1376. {
  1377. "firstTag":"运行参数",
  1378. "secondTag":"畸变率",
  1379. "infoPointName":"9阶谐波A相电流畸变率",
  1380. "infoPointCode":"9APhaseIHD",
  1381. "unit":"%",
  1382. "dataType":"Inst",
  1383. "inputMode":"L",
  1384. "dataSource":"",
  1385. "note":"",
  1386. "func-id":""
  1387. },
  1388. {
  1389. "firstTag":"运行参数",
  1390. "secondTag":"畸变率",
  1391. "infoPointName":"9阶谐波B相电流畸变率",
  1392. "infoPointCode":"9BPhaseIHD",
  1393. "unit":"%",
  1394. "dataType":"Inst",
  1395. "inputMode":"L",
  1396. "dataSource":"",
  1397. "note":"",
  1398. "func-id":""
  1399. },
  1400. {
  1401. "firstTag":"运行参数",
  1402. "secondTag":"畸变率",
  1403. "infoPointName":"9阶谐波C相电流畸变率",
  1404. "infoPointCode":"9CPhaseIHD",
  1405. "unit":"%",
  1406. "dataType":"Inst",
  1407. "inputMode":"L",
  1408. "dataSource":"",
  1409. "note":"",
  1410. "func-id":""
  1411. },
  1412. {
  1413. "firstTag":"运行参数",
  1414. "secondTag":"畸变率",
  1415. "infoPointName":"11阶谐波A相电压畸变率",
  1416. "infoPointCode":"11APhaseUHD",
  1417. "unit":"%",
  1418. "dataType":"Inst",
  1419. "inputMode":"L",
  1420. "dataSource":"",
  1421. "note":"",
  1422. "func-id":""
  1423. },
  1424. {
  1425. "firstTag":"运行参数",
  1426. "secondTag":"畸变率",
  1427. "infoPointName":"11阶谐波B相电压畸变率",
  1428. "infoPointCode":"11BPhaseUHD",
  1429. "unit":"%",
  1430. "dataType":"Inst",
  1431. "inputMode":"L",
  1432. "dataSource":"",
  1433. "note":"",
  1434. "func-id":""
  1435. },
  1436. {
  1437. "firstTag":"运行参数",
  1438. "secondTag":"畸变率",
  1439. "infoPointName":"11阶谐波C相电压畸变率",
  1440. "infoPointCode":"11CPhaseUHD",
  1441. "unit":"%",
  1442. "dataType":"Inst",
  1443. "inputMode":"L",
  1444. "dataSource":"",
  1445. "note":"",
  1446. "func-id":""
  1447. },
  1448. {
  1449. "firstTag":"运行参数",
  1450. "secondTag":"畸变率",
  1451. "infoPointName":"11阶谐波A相电流畸变率",
  1452. "infoPointCode":"11APhaseIHD",
  1453. "unit":"%",
  1454. "dataType":"Inst",
  1455. "inputMode":"L",
  1456. "dataSource":"",
  1457. "note":"",
  1458. "func-id":""
  1459. },
  1460. {
  1461. "firstTag":"运行参数",
  1462. "secondTag":"畸变率",
  1463. "infoPointName":"11阶谐波B相电流畸变率",
  1464. "infoPointCode":"11BPhaseIHD",
  1465. "unit":"%",
  1466. "dataType":"Inst",
  1467. "inputMode":"L",
  1468. "dataSource":"",
  1469. "note":"",
  1470. "func-id":""
  1471. },
  1472. {
  1473. "firstTag":"运行参数",
  1474. "secondTag":"畸变率",
  1475. "infoPointName":"11阶谐波C相电流畸变率",
  1476. "infoPointCode":"11CPhaseIHD",
  1477. "unit":"%",
  1478. "dataType":"Inst",
  1479. "inputMode":"L",
  1480. "dataSource":"",
  1481. "note":"",
  1482. "func-id":""
  1483. },
  1484. {
  1485. "firstTag":"运行参数",
  1486. "secondTag":"畸变率",
  1487. "infoPointName":"13阶谐波A相电压畸变率",
  1488. "infoPointCode":"13APhaseUHD",
  1489. "unit":"%",
  1490. "dataType":"Inst",
  1491. "inputMode":"L",
  1492. "dataSource":"",
  1493. "note":"",
  1494. "func-id":""
  1495. },
  1496. {
  1497. "firstTag":"运行参数",
  1498. "secondTag":"畸变率",
  1499. "infoPointName":"13阶谐波B相电压畸变率",
  1500. "infoPointCode":"13BPhaseUHD",
  1501. "unit":"%",
  1502. "dataType":"Inst",
  1503. "inputMode":"L",
  1504. "dataSource":"",
  1505. "note":"",
  1506. "func-id":""
  1507. },
  1508. {
  1509. "firstTag":"运行参数",
  1510. "secondTag":"畸变率",
  1511. "infoPointName":"13阶谐波C相电压畸变率",
  1512. "infoPointCode":"13CPhaseUHD",
  1513. "unit":"%",
  1514. "dataType":"Inst",
  1515. "inputMode":"L",
  1516. "dataSource":"",
  1517. "note":"",
  1518. "func-id":""
  1519. },
  1520. {
  1521. "firstTag":"运行参数",
  1522. "secondTag":"畸变率",
  1523. "infoPointName":"13阶谐波A相电流畸变率",
  1524. "infoPointCode":"13APhaseIHD",
  1525. "unit":"%",
  1526. "dataType":"Inst",
  1527. "inputMode":"L",
  1528. "dataSource":"",
  1529. "note":"",
  1530. "func-id":""
  1531. },
  1532. {
  1533. "firstTag":"运行参数",
  1534. "secondTag":"畸变率",
  1535. "infoPointName":"13阶谐波B相电流畸变率",
  1536. "infoPointCode":"13BPhaseIHD",
  1537. "unit":"%",
  1538. "dataType":"Inst",
  1539. "inputMode":"L",
  1540. "dataSource":"",
  1541. "note":"",
  1542. "func-id":""
  1543. },
  1544. {
  1545. "firstTag":"运行参数",
  1546. "secondTag":"畸变率",
  1547. "infoPointName":"13阶谐波C相电流畸变率",
  1548. "infoPointCode":"13CPhaseIHD",
  1549. "unit":"%",
  1550. "dataType":"Inst",
  1551. "inputMode":"L",
  1552. "dataSource":"",
  1553. "note":"",
  1554. "func-id":""
  1555. },
  1556. {
  1557. "firstTag":"运行参数",
  1558. "secondTag":"畸变率",
  1559. "infoPointName":"15阶谐波A相电压畸变率",
  1560. "infoPointCode":"15APhaseUHD",
  1561. "unit":"%",
  1562. "dataType":"Inst",
  1563. "inputMode":"L",
  1564. "dataSource":"",
  1565. "note":"",
  1566. "func-id":""
  1567. },
  1568. {
  1569. "firstTag":"运行参数",
  1570. "secondTag":"畸变率",
  1571. "infoPointName":"15阶谐波B相电压畸变率",
  1572. "infoPointCode":"15BPhaseUHD",
  1573. "unit":"%",
  1574. "dataType":"Inst",
  1575. "inputMode":"L",
  1576. "dataSource":"",
  1577. "note":"",
  1578. "func-id":""
  1579. },
  1580. {
  1581. "firstTag":"运行参数",
  1582. "secondTag":"畸变率",
  1583. "infoPointName":"15阶谐波C相电压畸变率",
  1584. "infoPointCode":"15CPhaseUHD",
  1585. "unit":"%",
  1586. "dataType":"Inst",
  1587. "inputMode":"L",
  1588. "dataSource":"",
  1589. "note":"",
  1590. "func-id":""
  1591. },
  1592. {
  1593. "firstTag":"运行参数",
  1594. "secondTag":"畸变率",
  1595. "infoPointName":"15阶谐波A相电流畸变率",
  1596. "infoPointCode":"15APhaseIHD",
  1597. "unit":"%",
  1598. "dataType":"Inst",
  1599. "inputMode":"L",
  1600. "dataSource":"",
  1601. "note":"",
  1602. "func-id":""
  1603. },
  1604. {
  1605. "firstTag":"运行参数",
  1606. "secondTag":"畸变率",
  1607. "infoPointName":"15阶谐波B相电流畸变率",
  1608. "infoPointCode":"15BPhaseIHD",
  1609. "unit":"%",
  1610. "dataType":"Inst",
  1611. "inputMode":"L",
  1612. "dataSource":"",
  1613. "note":"",
  1614. "func-id":""
  1615. },
  1616. {
  1617. "firstTag":"运行参数",
  1618. "secondTag":"畸变率",
  1619. "infoPointName":"15阶谐波C相电流畸变率",
  1620. "infoPointCode":"15CPhaseIHD",
  1621. "unit":"%",
  1622. "dataType":"Inst",
  1623. "inputMode":"L",
  1624. "dataSource":"",
  1625. "note":"",
  1626. "func-id":""
  1627. },
  1628. {
  1629. "firstTag":"运行参数",
  1630. "secondTag":"畸变率",
  1631. "infoPointName":"17阶谐波A相电压畸变率",
  1632. "infoPointCode":"17APhaseUHD",
  1633. "unit":"%",
  1634. "dataType":"Inst",
  1635. "inputMode":"L",
  1636. "dataSource":"",
  1637. "note":"",
  1638. "func-id":""
  1639. },
  1640. {
  1641. "firstTag":"运行参数",
  1642. "secondTag":"畸变率",
  1643. "infoPointName":"17阶谐波B相电压畸变率",
  1644. "infoPointCode":"17BPhaseUHD",
  1645. "unit":"%",
  1646. "dataType":"Inst",
  1647. "inputMode":"L",
  1648. "dataSource":"",
  1649. "note":"",
  1650. "func-id":""
  1651. },
  1652. {
  1653. "firstTag":"运行参数",
  1654. "secondTag":"畸变率",
  1655. "infoPointName":"17阶谐波C相电压畸变率",
  1656. "infoPointCode":"17CPhaseUHD",
  1657. "unit":"%",
  1658. "dataType":"Inst",
  1659. "inputMode":"L",
  1660. "dataSource":"",
  1661. "note":"",
  1662. "func-id":""
  1663. },
  1664. {
  1665. "firstTag":"运行参数",
  1666. "secondTag":"畸变率",
  1667. "infoPointName":"17阶谐波A相电流畸变率",
  1668. "infoPointCode":"17APhaseIHD",
  1669. "unit":"%",
  1670. "dataType":"Inst",
  1671. "inputMode":"L",
  1672. "dataSource":"",
  1673. "note":"",
  1674. "func-id":""
  1675. },
  1676. {
  1677. "firstTag":"运行参数",
  1678. "secondTag":"畸变率",
  1679. "infoPointName":"17阶谐波B相电流畸变率",
  1680. "infoPointCode":"17BPhaseIHD",
  1681. "unit":"%",
  1682. "dataType":"Inst",
  1683. "inputMode":"L",
  1684. "dataSource":"",
  1685. "note":"",
  1686. "func-id":""
  1687. },
  1688. {
  1689. "firstTag":"运行参数",
  1690. "secondTag":"畸变率",
  1691. "infoPointName":"17阶谐波C相电流畸变率",
  1692. "infoPointCode":"17CPhaseIHD",
  1693. "unit":"%",
  1694. "dataType":"Inst",
  1695. "inputMode":"L",
  1696. "dataSource":"",
  1697. "note":"",
  1698. "func-id":""
  1699. },
  1700. {
  1701. "firstTag":"运行参数",
  1702. "secondTag":"畸变率",
  1703. "infoPointName":"19阶谐波A相电压畸变率",
  1704. "infoPointCode":"19APhaseUHD",
  1705. "unit":"%",
  1706. "dataType":"Inst",
  1707. "inputMode":"L",
  1708. "dataSource":"",
  1709. "note":"",
  1710. "func-id":""
  1711. },
  1712. {
  1713. "firstTag":"运行参数",
  1714. "secondTag":"畸变率",
  1715. "infoPointName":"19阶谐波B相电压畸变率",
  1716. "infoPointCode":"19BPhaseUHD",
  1717. "unit":"%",
  1718. "dataType":"Inst",
  1719. "inputMode":"L",
  1720. "dataSource":"",
  1721. "note":"",
  1722. "func-id":""
  1723. },
  1724. {
  1725. "firstTag":"运行参数",
  1726. "secondTag":"畸变率",
  1727. "infoPointName":"19阶谐波C相电压畸变率",
  1728. "infoPointCode":"19CPhaseUHD",
  1729. "unit":"%",
  1730. "dataType":"Inst",
  1731. "inputMode":"L",
  1732. "dataSource":"",
  1733. "note":"",
  1734. "func-id":""
  1735. },
  1736. {
  1737. "firstTag":"运行参数",
  1738. "secondTag":"畸变率",
  1739. "infoPointName":"19阶谐波A相电流畸变率",
  1740. "infoPointCode":"19APhaseIHD",
  1741. "unit":"%",
  1742. "dataType":"Inst",
  1743. "inputMode":"L",
  1744. "dataSource":"",
  1745. "note":"",
  1746. "func-id":""
  1747. },
  1748. {
  1749. "firstTag":"运行参数",
  1750. "secondTag":"畸变率",
  1751. "infoPointName":"19阶谐波B相电流畸变率",
  1752. "infoPointCode":"19BPhaseIHD",
  1753. "unit":"%",
  1754. "dataType":"Inst",
  1755. "inputMode":"L",
  1756. "dataSource":"",
  1757. "note":"",
  1758. "func-id":""
  1759. },
  1760. {
  1761. "firstTag":"运行参数",
  1762. "secondTag":"畸变率",
  1763. "infoPointName":"19阶谐波C相电流畸变率",
  1764. "infoPointCode":"19CPhaseIHD",
  1765. "unit":"%",
  1766. "dataType":"Inst",
  1767. "inputMode":"L",
  1768. "dataSource":"",
  1769. "note":"",
  1770. "func-id":""
  1771. },
  1772. {
  1773. "firstTag":"运行参数",
  1774. "secondTag":"畸变率",
  1775. "infoPointName":"21阶谐波A相电压畸变率",
  1776. "infoPointCode":"21APhaseUHD",
  1777. "unit":"%",
  1778. "dataType":"Inst",
  1779. "inputMode":"L",
  1780. "dataSource":"",
  1781. "note":"",
  1782. "func-id":""
  1783. },
  1784. {
  1785. "firstTag":"运行参数",
  1786. "secondTag":"畸变率",
  1787. "infoPointName":"21阶谐波B相电压畸变率",
  1788. "infoPointCode":"21BPhaseUHD",
  1789. "unit":"%",
  1790. "dataType":"Inst",
  1791. "inputMode":"L",
  1792. "dataSource":"",
  1793. "note":"",
  1794. "func-id":""
  1795. },
  1796. {
  1797. "firstTag":"运行参数",
  1798. "secondTag":"畸变率",
  1799. "infoPointName":"21阶谐波C相电压畸变率",
  1800. "infoPointCode":"21CPhaseUHD",
  1801. "unit":"%",
  1802. "dataType":"Inst",
  1803. "inputMode":"L",
  1804. "dataSource":"",
  1805. "note":"",
  1806. "func-id":""
  1807. },
  1808. {
  1809. "firstTag":"运行参数",
  1810. "secondTag":"畸变率",
  1811. "infoPointName":"21阶谐波A相电流畸变率",
  1812. "infoPointCode":"21APhaseIHD",
  1813. "unit":"%",
  1814. "dataType":"Inst",
  1815. "inputMode":"L",
  1816. "dataSource":"",
  1817. "note":"",
  1818. "func-id":""
  1819. },
  1820. {
  1821. "firstTag":"运行参数",
  1822. "secondTag":"畸变率",
  1823. "infoPointName":"21阶谐波B相电流畸变率",
  1824. "infoPointCode":"21BPhaseIHD",
  1825. "unit":"%",
  1826. "dataType":"Inst",
  1827. "inputMode":"L",
  1828. "dataSource":"",
  1829. "note":"",
  1830. "func-id":""
  1831. },
  1832. {
  1833. "firstTag":"运行参数",
  1834. "secondTag":"畸变率",
  1835. "infoPointName":"21阶谐波C相电流畸变率",
  1836. "infoPointCode":"21CPhaseIHD",
  1837. "unit":"%",
  1838. "dataType":"Inst",
  1839. "inputMode":"L",
  1840. "dataSource":"",
  1841. "note":"",
  1842. "func-id":""
  1843. },
  1844. {
  1845. "firstTag":"运行参数",
  1846. "secondTag":"畸变率",
  1847. "infoPointName":"23阶谐波A相电压畸变率",
  1848. "infoPointCode":"23APhaseUHD",
  1849. "unit":"%",
  1850. "dataType":"Inst",
  1851. "inputMode":"L",
  1852. "dataSource":"",
  1853. "note":"",
  1854. "func-id":""
  1855. },
  1856. {
  1857. "firstTag":"运行参数",
  1858. "secondTag":"畸变率",
  1859. "infoPointName":"23阶谐波B相电压畸变率",
  1860. "infoPointCode":"23BPhaseUHD",
  1861. "unit":"%",
  1862. "dataType":"Inst",
  1863. "inputMode":"L",
  1864. "dataSource":"",
  1865. "note":"",
  1866. "func-id":""
  1867. },
  1868. {
  1869. "firstTag":"运行参数",
  1870. "secondTag":"畸变率",
  1871. "infoPointName":"23阶谐波C相电压畸变率",
  1872. "infoPointCode":"23CPhaseUHD",
  1873. "unit":"%",
  1874. "dataType":"Inst",
  1875. "inputMode":"L",
  1876. "dataSource":"",
  1877. "note":"",
  1878. "func-id":""
  1879. },
  1880. {
  1881. "firstTag":"运行参数",
  1882. "secondTag":"畸变率",
  1883. "infoPointName":"23阶谐波A相电流畸变率",
  1884. "infoPointCode":"23APhaseIHD",
  1885. "unit":"%",
  1886. "dataType":"Inst",
  1887. "inputMode":"L",
  1888. "dataSource":"",
  1889. "note":"",
  1890. "func-id":""
  1891. },
  1892. {
  1893. "firstTag":"运行参数",
  1894. "secondTag":"畸变率",
  1895. "infoPointName":"23阶谐波B相电流畸变率",
  1896. "infoPointCode":"23BPhaseIHD",
  1897. "unit":"%",
  1898. "dataType":"Inst",
  1899. "inputMode":"L",
  1900. "dataSource":"",
  1901. "note":"",
  1902. "func-id":""
  1903. },
  1904. {
  1905. "firstTag":"运行参数",
  1906. "secondTag":"畸变率",
  1907. "infoPointName":"23阶谐波C相电流畸变率",
  1908. "infoPointCode":"23CPhaseIHD",
  1909. "unit":"%",
  1910. "dataType":"Inst",
  1911. "inputMode":"L",
  1912. "dataSource":"",
  1913. "note":"",
  1914. "func-id":""
  1915. },
  1916. {
  1917. "firstTag":"运行参数",
  1918. "secondTag":"畸变率",
  1919. "infoPointName":"25阶谐波A相电压畸变率",
  1920. "infoPointCode":"25APhaseUHD",
  1921. "unit":"%",
  1922. "dataType":"Inst",
  1923. "inputMode":"L",
  1924. "dataSource":"",
  1925. "note":"",
  1926. "func-id":""
  1927. },
  1928. {
  1929. "firstTag":"运行参数",
  1930. "secondTag":"畸变率",
  1931. "infoPointName":"25阶谐波B相电压畸变率",
  1932. "infoPointCode":"25BPhaseUHD",
  1933. "unit":"%",
  1934. "dataType":"Inst",
  1935. "inputMode":"L",
  1936. "dataSource":"",
  1937. "note":"",
  1938. "func-id":""
  1939. },
  1940. {
  1941. "firstTag":"运行参数",
  1942. "secondTag":"畸变率",
  1943. "infoPointName":"25阶谐波C相电压畸变率",
  1944. "infoPointCode":"25CPhaseUHD",
  1945. "unit":"%",
  1946. "dataType":"Inst",
  1947. "inputMode":"L",
  1948. "dataSource":"",
  1949. "note":"",
  1950. "func-id":""
  1951. },
  1952. {
  1953. "firstTag":"运行参数",
  1954. "secondTag":"畸变率",
  1955. "infoPointName":"25阶谐波A相电流畸变率",
  1956. "infoPointCode":"25APhaseIHD",
  1957. "unit":"%",
  1958. "dataType":"Inst",
  1959. "inputMode":"L",
  1960. "dataSource":"",
  1961. "note":"",
  1962. "func-id":""
  1963. },
  1964. {
  1965. "firstTag":"运行参数",
  1966. "secondTag":"畸变率",
  1967. "infoPointName":"25阶谐波B相电流畸变率",
  1968. "infoPointCode":"25BPhaseIHD",
  1969. "unit":"%",
  1970. "dataType":"Inst",
  1971. "inputMode":"L",
  1972. "dataSource":"",
  1973. "note":"",
  1974. "func-id":""
  1975. },
  1976. {
  1977. "firstTag":"运行参数",
  1978. "secondTag":"畸变率",
  1979. "infoPointName":"25阶谐波C相电流畸变率",
  1980. "infoPointCode":"25CPhaseIHD",
  1981. "unit":"%",
  1982. "dataType":"Inst",
  1983. "inputMode":"L",
  1984. "dataSource":"",
  1985. "note":"",
  1986. "func-id":""
  1987. },
  1988. {
  1989. "firstTag":"运行参数",
  1990. "secondTag":"畸变率",
  1991. "infoPointName":"27阶谐波A相电压畸变率",
  1992. "infoPointCode":"27APhaseUHD",
  1993. "unit":"%",
  1994. "dataType":"Inst",
  1995. "inputMode":"L",
  1996. "dataSource":"",
  1997. "note":"",
  1998. "func-id":""
  1999. },
  2000. {
  2001. "firstTag":"运行参数",
  2002. "secondTag":"畸变率",
  2003. "infoPointName":"27阶谐波B相电压畸变率",
  2004. "infoPointCode":"27BPhaseUHD",
  2005. "unit":"%",
  2006. "dataType":"Inst",
  2007. "inputMode":"L",
  2008. "dataSource":"",
  2009. "note":"",
  2010. "func-id":""
  2011. },
  2012. {
  2013. "firstTag":"运行参数",
  2014. "secondTag":"畸变率",
  2015. "infoPointName":"27阶谐波C相电压畸变率",
  2016. "infoPointCode":"27CPhaseUHD",
  2017. "unit":"%",
  2018. "dataType":"Inst",
  2019. "inputMode":"L",
  2020. "dataSource":"",
  2021. "note":"",
  2022. "func-id":""
  2023. },
  2024. {
  2025. "firstTag":"运行参数",
  2026. "secondTag":"畸变率",
  2027. "infoPointName":"27阶谐波A相电流畸变率",
  2028. "infoPointCode":"27APhaseIHD",
  2029. "unit":"%",
  2030. "dataType":"Inst",
  2031. "inputMode":"L",
  2032. "dataSource":"",
  2033. "note":"",
  2034. "func-id":""
  2035. },
  2036. {
  2037. "firstTag":"运行参数",
  2038. "secondTag":"畸变率",
  2039. "infoPointName":"27阶谐波B相电流畸变率",
  2040. "infoPointCode":"27BPhaseIHD",
  2041. "unit":"%",
  2042. "dataType":"Inst",
  2043. "inputMode":"L",
  2044. "dataSource":"",
  2045. "note":"",
  2046. "func-id":""
  2047. },
  2048. {
  2049. "firstTag":"运行参数",
  2050. "secondTag":"畸变率",
  2051. "infoPointName":"27阶谐波C相电流畸变率",
  2052. "infoPointCode":"27CPhaseIHD",
  2053. "unit":"%",
  2054. "dataType":"Inst",
  2055. "inputMode":"L",
  2056. "dataSource":"",
  2057. "note":"",
  2058. "func-id":""
  2059. },
  2060. {
  2061. "firstTag":"运行参数",
  2062. "secondTag":"畸变率",
  2063. "infoPointName":"29阶谐波A相电压畸变率",
  2064. "infoPointCode":"29APhaseUHD",
  2065. "unit":"%",
  2066. "dataType":"Inst",
  2067. "inputMode":"L",
  2068. "dataSource":"",
  2069. "note":"",
  2070. "func-id":""
  2071. },
  2072. {
  2073. "firstTag":"运行参数",
  2074. "secondTag":"畸变率",
  2075. "infoPointName":"29阶谐波B相电压畸变率",
  2076. "infoPointCode":"29BPhaseUHD",
  2077. "unit":"%",
  2078. "dataType":"Inst",
  2079. "inputMode":"L",
  2080. "dataSource":"",
  2081. "note":"",
  2082. "func-id":""
  2083. },
  2084. {
  2085. "firstTag":"运行参数",
  2086. "secondTag":"畸变率",
  2087. "infoPointName":"29阶谐波C相电压畸变率",
  2088. "infoPointCode":"29CPhaseUHD",
  2089. "unit":"%",
  2090. "dataType":"Inst",
  2091. "inputMode":"L",
  2092. "dataSource":"",
  2093. "note":"",
  2094. "func-id":""
  2095. },
  2096. {
  2097. "firstTag":"运行参数",
  2098. "secondTag":"畸变率",
  2099. "infoPointName":"29阶谐波A相电流畸变率",
  2100. "infoPointCode":"29APhaseIHD",
  2101. "unit":"%",
  2102. "dataType":"Inst",
  2103. "inputMode":"L",
  2104. "dataSource":"",
  2105. "note":"",
  2106. "func-id":""
  2107. },
  2108. {
  2109. "firstTag":"运行参数",
  2110. "secondTag":"畸变率",
  2111. "infoPointName":"29阶谐波B相电流畸变率",
  2112. "infoPointCode":"29BPhaseIHD",
  2113. "unit":"%",
  2114. "dataType":"Inst",
  2115. "inputMode":"L",
  2116. "dataSource":"",
  2117. "note":"",
  2118. "func-id":""
  2119. },
  2120. {
  2121. "firstTag":"运行参数",
  2122. "secondTag":"畸变率",
  2123. "infoPointName":"29阶谐波C相电流畸变率",
  2124. "infoPointCode":"29CPhaseIHD",
  2125. "unit":"%",
  2126. "dataType":"Inst",
  2127. "inputMode":"L",
  2128. "dataSource":"",
  2129. "note":"",
  2130. "func-id":""
  2131. },
  2132. {
  2133. "firstTag":"运行参数",
  2134. "secondTag":"畸变率",
  2135. "infoPointName":"31阶谐波A相电压畸变率",
  2136. "infoPointCode":"31APhaseUHD",
  2137. "unit":"%",
  2138. "dataType":"Inst",
  2139. "inputMode":"L",
  2140. "dataSource":"",
  2141. "note":"",
  2142. "func-id":""
  2143. },
  2144. {
  2145. "firstTag":"运行参数",
  2146. "secondTag":"畸变率",
  2147. "infoPointName":"31阶谐波B相电压畸变率",
  2148. "infoPointCode":"31BPhaseUHD",
  2149. "unit":"%",
  2150. "dataType":"Inst",
  2151. "inputMode":"L",
  2152. "dataSource":"",
  2153. "note":"",
  2154. "func-id":""
  2155. },
  2156. {
  2157. "firstTag":"运行参数",
  2158. "secondTag":"畸变率",
  2159. "infoPointName":"31阶谐波C相电压畸变率",
  2160. "infoPointCode":"31CPhaseUHD",
  2161. "unit":"%",
  2162. "dataType":"Inst",
  2163. "inputMode":"L",
  2164. "dataSource":"",
  2165. "note":"",
  2166. "func-id":""
  2167. },
  2168. {
  2169. "firstTag":"运行参数",
  2170. "secondTag":"畸变率",
  2171. "infoPointName":"31阶谐波A相电流畸变率",
  2172. "infoPointCode":"31APhaseIHD",
  2173. "unit":"%",
  2174. "dataType":"Inst",
  2175. "inputMode":"L",
  2176. "dataSource":"",
  2177. "note":"",
  2178. "func-id":""
  2179. },
  2180. {
  2181. "firstTag":"运行参数",
  2182. "secondTag":"畸变率",
  2183. "infoPointName":"31阶谐波B相电流畸变率",
  2184. "infoPointCode":"31BPhaseIHD",
  2185. "unit":"%",
  2186. "dataType":"Inst",
  2187. "inputMode":"L",
  2188. "dataSource":"",
  2189. "note":"",
  2190. "func-id":""
  2191. },
  2192. {
  2193. "firstTag":"运行参数",
  2194. "secondTag":"畸变率",
  2195. "infoPointName":"31阶谐波C相电流畸变率",
  2196. "infoPointCode":"31CPhaseIHD",
  2197. "unit":"%",
  2198. "dataType":"Inst",
  2199. "inputMode":"L",
  2200. "dataSource":"",
  2201. "note":"",
  2202. "func-id":""
  2203. },
  2204. {
  2205. "firstTag":"运行参数",
  2206. "secondTag":"畸变率",
  2207. "infoPointName":"33阶谐波A相电压畸变率",
  2208. "infoPointCode":"33APhaseUHD",
  2209. "unit":"%",
  2210. "dataType":"Inst",
  2211. "inputMode":"L",
  2212. "dataSource":"",
  2213. "note":"",
  2214. "func-id":""
  2215. },
  2216. {
  2217. "firstTag":"运行参数",
  2218. "secondTag":"畸变率",
  2219. "infoPointName":"33阶谐波B相电压畸变率",
  2220. "infoPointCode":"33BPhaseUHD",
  2221. "unit":"%",
  2222. "dataType":"Inst",
  2223. "inputMode":"L",
  2224. "dataSource":"",
  2225. "note":"",
  2226. "func-id":""
  2227. },
  2228. {
  2229. "firstTag":"运行参数",
  2230. "secondTag":"畸变率",
  2231. "infoPointName":"33阶谐波C相电压畸变率",
  2232. "infoPointCode":"33CPhaseUHD",
  2233. "unit":"%",
  2234. "dataType":"Inst",
  2235. "inputMode":"L",
  2236. "dataSource":"",
  2237. "note":"",
  2238. "func-id":""
  2239. },
  2240. {
  2241. "firstTag":"运行参数",
  2242. "secondTag":"畸变率",
  2243. "infoPointName":"33阶谐波A相电流畸变率",
  2244. "infoPointCode":"33APhaseIHD",
  2245. "unit":"%",
  2246. "dataType":"Inst",
  2247. "inputMode":"L",
  2248. "dataSource":"",
  2249. "note":"",
  2250. "func-id":""
  2251. },
  2252. {
  2253. "firstTag":"运行参数",
  2254. "secondTag":"畸变率",
  2255. "infoPointName":"33阶谐波B相电流畸变率",
  2256. "infoPointCode":"33BPhaseIHD",
  2257. "unit":"%",
  2258. "dataType":"Inst",
  2259. "inputMode":"L",
  2260. "dataSource":"",
  2261. "note":"",
  2262. "func-id":""
  2263. },
  2264. {
  2265. "firstTag":"运行参数",
  2266. "secondTag":"畸变率",
  2267. "infoPointName":"33阶谐波C相电流畸变率",
  2268. "infoPointCode":"33CPhaseIHD",
  2269. "unit":"%",
  2270. "dataType":"Inst",
  2271. "inputMode":"L",
  2272. "dataSource":"",
  2273. "note":"",
  2274. "func-id":""
  2275. },
  2276. {
  2277. "firstTag":"运行参数",
  2278. "secondTag":"畸变率",
  2279. "infoPointName":"35阶谐波A相电压畸变率",
  2280. "infoPointCode":"35APhaseUHD",
  2281. "unit":"%",
  2282. "dataType":"Inst",
  2283. "inputMode":"L",
  2284. "dataSource":"",
  2285. "note":"",
  2286. "func-id":""
  2287. },
  2288. {
  2289. "firstTag":"运行参数",
  2290. "secondTag":"畸变率",
  2291. "infoPointName":"35阶谐波B相电压畸变率",
  2292. "infoPointCode":"35BPhaseUHD",
  2293. "unit":"%",
  2294. "dataType":"Inst",
  2295. "inputMode":"L",
  2296. "dataSource":"",
  2297. "note":"",
  2298. "func-id":""
  2299. },
  2300. {
  2301. "firstTag":"运行参数",
  2302. "secondTag":"畸变率",
  2303. "infoPointName":"35阶谐波C相电压畸变率",
  2304. "infoPointCode":"35CPhaseUHD",
  2305. "unit":"%",
  2306. "dataType":"Inst",
  2307. "inputMode":"L",
  2308. "dataSource":"",
  2309. "note":"",
  2310. "func-id":""
  2311. },
  2312. {
  2313. "firstTag":"运行参数",
  2314. "secondTag":"畸变率",
  2315. "infoPointName":"35阶谐波A相电流畸变率",
  2316. "infoPointCode":"35APhaseIHD",
  2317. "unit":"%",
  2318. "dataType":"Inst",
  2319. "inputMode":"L",
  2320. "dataSource":"",
  2321. "note":"",
  2322. "func-id":""
  2323. },
  2324. {
  2325. "firstTag":"运行参数",
  2326. "secondTag":"畸变率",
  2327. "infoPointName":"35阶谐波B相电流畸变率",
  2328. "infoPointCode":"35BPhaseIHD",
  2329. "unit":"%",
  2330. "dataType":"Inst",
  2331. "inputMode":"L",
  2332. "dataSource":"",
  2333. "note":"",
  2334. "func-id":""
  2335. },
  2336. {
  2337. "firstTag":"运行参数",
  2338. "secondTag":"畸变率",
  2339. "infoPointName":"35阶谐波C相电流畸变率",
  2340. "infoPointCode":"35CPhaseIHD",
  2341. "unit":"%",
  2342. "dataType":"Inst",
  2343. "inputMode":"L",
  2344. "dataSource":"",
  2345. "note":"",
  2346. "func-id":""
  2347. },
  2348. {
  2349. "firstTag":"运行参数",
  2350. "secondTag":"畸变率",
  2351. "infoPointName":"37阶谐波A相电压畸变率",
  2352. "infoPointCode":"37APhaseUHD",
  2353. "unit":"%",
  2354. "dataType":"Inst",
  2355. "inputMode":"L",
  2356. "dataSource":"",
  2357. "note":"",
  2358. "func-id":""
  2359. },
  2360. {
  2361. "firstTag":"运行参数",
  2362. "secondTag":"畸变率",
  2363. "infoPointName":"37阶谐波B相电压畸变率",
  2364. "infoPointCode":"37BPhaseUHD",
  2365. "unit":"%",
  2366. "dataType":"Inst",
  2367. "inputMode":"L",
  2368. "dataSource":"",
  2369. "note":"",
  2370. "func-id":""
  2371. },
  2372. {
  2373. "firstTag":"运行参数",
  2374. "secondTag":"畸变率",
  2375. "infoPointName":"37阶谐波C相电压畸变率",
  2376. "infoPointCode":"37CPhaseUHD",
  2377. "unit":"%",
  2378. "dataType":"Inst",
  2379. "inputMode":"L",
  2380. "dataSource":"",
  2381. "note":"",
  2382. "func-id":""
  2383. },
  2384. {
  2385. "firstTag":"运行参数",
  2386. "secondTag":"畸变率",
  2387. "infoPointName":"37阶谐波A相电流畸变率",
  2388. "infoPointCode":"37APhaseIHD",
  2389. "unit":"%",
  2390. "dataType":"Inst",
  2391. "inputMode":"L",
  2392. "dataSource":"",
  2393. "note":"",
  2394. "func-id":""
  2395. },
  2396. {
  2397. "firstTag":"运行参数",
  2398. "secondTag":"畸变率",
  2399. "infoPointName":"37阶谐波B相电流畸变率",
  2400. "infoPointCode":"37BPhaseIHD",
  2401. "unit":"%",
  2402. "dataType":"Inst",
  2403. "inputMode":"L",
  2404. "dataSource":"",
  2405. "note":"",
  2406. "func-id":""
  2407. },
  2408. {
  2409. "firstTag":"运行参数",
  2410. "secondTag":"畸变率",
  2411. "infoPointName":"37阶谐波C相电流畸变率",
  2412. "infoPointCode":"37CPhaseIHD",
  2413. "unit":"%",
  2414. "dataType":"Inst",
  2415. "inputMode":"L",
  2416. "dataSource":"",
  2417. "note":"",
  2418. "func-id":""
  2419. },
  2420. {
  2421. "firstTag":"运行参数",
  2422. "secondTag":"畸变率",
  2423. "infoPointName":"39阶谐波A相电压畸变率",
  2424. "infoPointCode":"39APhaseUHD",
  2425. "unit":"%",
  2426. "dataType":"Inst",
  2427. "inputMode":"L",
  2428. "dataSource":"",
  2429. "note":"",
  2430. "func-id":""
  2431. },
  2432. {
  2433. "firstTag":"运行参数",
  2434. "secondTag":"畸变率",
  2435. "infoPointName":"39阶谐波B相电压畸变率",
  2436. "infoPointCode":"39BPhaseUHD",
  2437. "unit":"%",
  2438. "dataType":"Inst",
  2439. "inputMode":"L",
  2440. "dataSource":"",
  2441. "note":"",
  2442. "func-id":""
  2443. },
  2444. {
  2445. "firstTag":"运行参数",
  2446. "secondTag":"畸变率",
  2447. "infoPointName":"39阶谐波C相电压畸变率",
  2448. "infoPointCode":"39CPhaseUHD",
  2449. "unit":"%",
  2450. "dataType":"Inst",
  2451. "inputMode":"L",
  2452. "dataSource":"",
  2453. "note":"",
  2454. "func-id":""
  2455. },
  2456. {
  2457. "firstTag":"运行参数",
  2458. "secondTag":"畸变率",
  2459. "infoPointName":"39阶谐波A相电流畸变率",
  2460. "infoPointCode":"39APhaseIHD",
  2461. "unit":"%",
  2462. "dataType":"Inst",
  2463. "inputMode":"L",
  2464. "dataSource":"",
  2465. "note":"",
  2466. "func-id":""
  2467. },
  2468. {
  2469. "firstTag":"运行参数",
  2470. "secondTag":"畸变率",
  2471. "infoPointName":"39阶谐波B相电流畸变率",
  2472. "infoPointCode":"39BPhaseIHD",
  2473. "unit":"%",
  2474. "dataType":"Inst",
  2475. "inputMode":"L",
  2476. "dataSource":"",
  2477. "note":"",
  2478. "func-id":""
  2479. },
  2480. {
  2481. "firstTag":"运行参数",
  2482. "secondTag":"畸变率",
  2483. "infoPointName":"39阶谐波C相电流畸变率",
  2484. "infoPointCode":"39CPhaseIHD",
  2485. "unit":"%",
  2486. "dataType":"Inst",
  2487. "inputMode":"L",
  2488. "dataSource":"",
  2489. "note":"",
  2490. "func-id":""
  2491. },
  2492. {
  2493. "firstTag":"运行参数",
  2494. "secondTag":"关键指标",
  2495. "infoPointName":"负载负荷率",
  2496. "infoPointCode":"LoadRate",
  2497. "unit":"%",
  2498. "dataType":"Inst",
  2499. "inputMode":"M",
  2500. "dataSource":"",
  2501. "note":"",
  2502. "func-id":""
  2503. },
  2504. {
  2505. "firstTag":"运行参数",
  2506. "secondTag":"关键指标",
  2507. "infoPointName":"配电容量负荷率",
  2508. "infoPointCode":"CapRate",
  2509. "unit":"%",
  2510. "dataType":"Inst",
  2511. "inputMode":"M",
  2512. "dataSource":"",
  2513. "note":"",
  2514. "func-id":""
  2515. },
  2516. {
  2517. "firstTag":"运行参数",
  2518. "secondTag":"关键指标",
  2519. "infoPointName":"三相不平衡电压",
  2520. "infoPointCode":"3PhaseUnbalancedU",
  2521. "unit":"V",
  2522. "dataType":"Inst",
  2523. "inputMode":"M",
  2524. "dataSource":"",
  2525. "note":"",
  2526. "func-id":""
  2527. },
  2528. {
  2529. "firstTag":"运行参数",
  2530. "secondTag":"关键指标",
  2531. "infoPointName":"三线不平衡电压",
  2532. "infoPointCode":"3LineUnbalancedU",
  2533. "unit":"V",
  2534. "dataType":"Inst",
  2535. "inputMode":"M",
  2536. "dataSource":"",
  2537. "note":"",
  2538. "func-id":""
  2539. },
  2540. {
  2541. "firstTag":"运行参数",
  2542. "secondTag":"关键指标",
  2543. "infoPointName":"三相不平衡电流",
  2544. "infoPointCode":"3PhaseUnbalancedI",
  2545. "unit":"A",
  2546. "dataType":"Inst",
  2547. "inputMode":"M",
  2548. "dataSource":"",
  2549. "note":"",
  2550. "func-id":""
  2551. },
  2552. {
  2553. "firstTag":"运行参数",
  2554. "secondTag":"关键指标",
  2555. "infoPointName":"最大不平衡线电压",
  2556. "infoPointCode":"MaxUnbalanceLineU",
  2557. "unit":"V",
  2558. "dataType":"Inst",
  2559. "inputMode":"M",
  2560. "dataSource":"",
  2561. "note":"",
  2562. "func-id":""
  2563. },
  2564. {
  2565. "firstTag":"运行参数",
  2566. "secondTag":"关键指标",
  2567. "infoPointName":"最大不平衡相电压",
  2568. "infoPointCode":"MaxUnbalancePhaseU",
  2569. "unit":"V",
  2570. "dataType":"Inst",
  2571. "inputMode":"M",
  2572. "dataSource":"",
  2573. "note":"",
  2574. "func-id":""
  2575. },
  2576. {
  2577. "firstTag":"运行参数",
  2578. "secondTag":"关键指标",
  2579. "infoPointName":"最大不平衡电流",
  2580. "infoPointCode":"MaxUnbalanceI",
  2581. "unit":"A",
  2582. "dataType":"Inst",
  2583. "inputMode":"M",
  2584. "dataSource":"",
  2585. "note":"",
  2586. "func-id":""
  2587. },
  2588. {
  2589. "firstTag":"运行参数",
  2590. "secondTag":"关键指标",
  2591. "infoPointName":"电压不平衡度",
  2592. "infoPointCode":"UUnbalanceRate",
  2593. "unit":"%",
  2594. "dataType":"Inst",
  2595. "inputMode":"M",
  2596. "dataSource":"",
  2597. "note":"",
  2598. "func-id":""
  2599. },
  2600. {
  2601. "firstTag":"运行参数",
  2602. "secondTag":"关键指标",
  2603. "infoPointName":"电流不平衡度",
  2604. "infoPointCode":"IUnbalanceRate",
  2605. "unit":"%",
  2606. "dataType":"Inst",
  2607. "inputMode":"M",
  2608. "dataSource":"",
  2609. "note":"",
  2610. "func-id":""
  2611. },
  2612. {
  2613. "firstTag":"运行参数",
  2614. "secondTag":"关键指标",
  2615. "infoPointName":"A相电压偏差",
  2616. "infoPointCode":"APhaseUDeviation",
  2617. "unit":"%",
  2618. "dataType":"Inst",
  2619. "inputMode":"M",
  2620. "dataSource":"",
  2621. "note":"",
  2622. "func-id":""
  2623. },
  2624. {
  2625. "firstTag":"运行参数",
  2626. "secondTag":"关键指标",
  2627. "infoPointName":"B相电压偏差",
  2628. "infoPointCode":"BPhaseUDeviation",
  2629. "unit":"%",
  2630. "dataType":"Inst",
  2631. "inputMode":"M",
  2632. "dataSource":"",
  2633. "note":"",
  2634. "func-id":""
  2635. },
  2636. {
  2637. "firstTag":"运行参数",
  2638. "secondTag":"关键指标",
  2639. "infoPointName":"C相电压偏差",
  2640. "infoPointCode":"CPhaseUDeviation",
  2641. "unit":"%",
  2642. "dataType":"Inst",
  2643. "inputMode":"M",
  2644. "dataSource":"",
  2645. "note":"",
  2646. "func-id":""
  2647. },
  2648. {
  2649. "firstTag":"运行参数",
  2650. "secondTag":"关键指标",
  2651. "infoPointName":"ab线电压偏差",
  2652. "infoPointCode":"LineabUDeviation",
  2653. "unit":"%",
  2654. "dataType":"Inst",
  2655. "inputMode":"M",
  2656. "dataSource":"",
  2657. "note":"",
  2658. "func-id":""
  2659. },
  2660. {
  2661. "firstTag":"运行参数",
  2662. "secondTag":"关键指标",
  2663. "infoPointName":"bc线电压偏差",
  2664. "infoPointCode":"LinebcUDeviation",
  2665. "unit":"%",
  2666. "dataType":"Inst",
  2667. "inputMode":"M",
  2668. "dataSource":"",
  2669. "note":"",
  2670. "func-id":""
  2671. },
  2672. {
  2673. "firstTag":"运行参数",
  2674. "secondTag":"关键指标",
  2675. "infoPointName":"ca线电压偏差",
  2676. "infoPointCode":"LinecaUDeviation",
  2677. "unit":"%",
  2678. "dataType":"Inst",
  2679. "inputMode":"M",
  2680. "dataSource":"",
  2681. "note":"",
  2682. "func-id":""
  2683. },
  2684. {
  2685. "firstTag":"运行参数",
  2686. "secondTag":"关键指标",
  2687. "infoPointName":"频率偏差",
  2688. "infoPointCode":"FreqDeviation",
  2689. "unit":"Hz",
  2690. "dataType":"Inst",
  2691. "inputMode":"M",
  2692. "dataSource":"",
  2693. "note":"",
  2694. "func-id":""
  2695. },
  2696. {
  2697. "firstTag":"运行参数",
  2698. "secondTag":"累计参数",
  2699. "infoPointName":"正向有功电能",
  2700. "infoPointCode":"AccPositiveActiveE",
  2701. "unit":"kWh",
  2702. "dataType":"Acc",
  2703. "inputMode":"M",
  2704. "dataSource":"",
  2705. "note":"",
  2706. "func-id":""
  2707. },
  2708. {
  2709. "firstTag":"运行参数",
  2710. "secondTag":"累计参数",
  2711. "infoPointName":"反向有功电能",
  2712. "infoPointCode":"AccReverseActiveE",
  2713. "unit":"kWh",
  2714. "dataType":"Acc",
  2715. "inputMode":"M",
  2716. "dataSource":"",
  2717. "note":"",
  2718. "func-id":""
  2719. },
  2720. {
  2721. "firstTag":"运行参数",
  2722. "secondTag":"累计参数",
  2723. "infoPointName":"正向无功电能",
  2724. "infoPointCode":"AccPositiveReactiveE",
  2725. "unit":"kVarh",
  2726. "dataType":"Acc",
  2727. "inputMode":"M",
  2728. "dataSource":"",
  2729. "note":"",
  2730. "func-id":""
  2731. },
  2732. {
  2733. "firstTag":"运行参数",
  2734. "secondTag":"累计参数",
  2735. "infoPointName":"反向无功电能",
  2736. "infoPointCode":"AccReverseReactiveE",
  2737. "unit":"kVarh",
  2738. "dataType":"Acc",
  2739. "inputMode":"M",
  2740. "dataSource":"",
  2741. "note":"",
  2742. "func-id":""
  2743. },
  2744. {
  2745. "firstTag":"运行参数",
  2746. "secondTag":"累计参数",
  2747. "infoPointName":"视在电能",
  2748. "infoPointCode":"AccApparentE",
  2749. "unit":"kVAh",
  2750. "dataType":"Acc",
  2751. "inputMode":"M",
  2752. "dataSource":"",
  2753. "note":"",
  2754. "func-id":""
  2755. },
  2756. {
  2757. "firstTag":"运行参数",
  2758. "secondTag":"累计参数",
  2759. "infoPointName":"净累计有功电能",
  2760. "infoPointCode":"NetAccActiveE",
  2761. "unit":"kWh",
  2762. "dataType":"Acc",
  2763. "inputMode":"M",
  2764. "dataSource":"",
  2765. "note":"",
  2766. "func-id":""
  2767. },
  2768. {
  2769. "firstTag":"运行参数",
  2770. "secondTag":"累计参数",
  2771. "infoPointName":"净累计无功电能",
  2772. "infoPointCode":"NetAccReactiveE",
  2773. "unit":"kVarh",
  2774. "dataType":"Acc",
  2775. "inputMode":"M",
  2776. "dataSource":"",
  2777. "note":"",
  2778. "func-id":""
  2779. },
  2780. {
  2781. "firstTag":"运行参数",
  2782. "secondTag":"累计参数",
  2783. "infoPointName":"感性无功电能",
  2784. "infoPointCode":"AccInductiveReactiveE",
  2785. "unit":"kVarh",
  2786. "dataType":"Acc",
  2787. "inputMode":"M",
  2788. "dataSource":"",
  2789. "note":"",
  2790. "func-id":""
  2791. },
  2792. {
  2793. "firstTag":"运行参数",
  2794. "secondTag":"累计参数",
  2795. "infoPointName":"容性无功电能",
  2796. "infoPointCode":"AccCapacitiveReactiveE",
  2797. "unit":"kVarh",
  2798. "dataType":"Acc",
  2799. "inputMode":"M",
  2800. "dataSource":"",
  2801. "note":"",
  2802. "func-id":""
  2803. },
  2804. {
  2805. "firstTag":"运行参数",
  2806. "secondTag":"累计参数",
  2807. "infoPointName":"累计运行时间",
  2808. "infoPointCode":"AccRunTime",
  2809. "unit":"h",
  2810. "dataType":"Acc",
  2811. "inputMode":"M",
  2812. "dataSource":"",
  2813. "note":"",
  2814. "func-id":""
  2815. },
  2816. {
  2817. "firstTag":"运行参数",
  2818. "secondTag":"累计参数",
  2819. "infoPointName":"开启时间计时",
  2820. "infoPointCode":"OpenTimeCount",
  2821. "unit":"h",
  2822. "dataType":"Acc",
  2823. "inputMode":"M",
  2824. "dataSource":"",
  2825. "note":"",
  2826. "func-id":""
  2827. },
  2828. {
  2829. "firstTag":"运行参数",
  2830. "secondTag":"累计参数",
  2831. "infoPointName":"关闭时间计时",
  2832. "infoPointCode":"CloseTimeCount",
  2833. "unit":"h",
  2834. "dataType":"Acc",
  2835. "inputMode":"M",
  2836. "dataSource":"",
  2837. "note":"",
  2838. "func-id":""
  2839. }
  2840. ]
  2841. }