LSA.json 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686
  1. {
  2. "all":[
  3. {
  4. "firstTag":"技术参数",
  5. "secondTag":"总体",
  6. "infoPointName":"低压开关柜类型",
  7. "infoPointCode":"LUCabType",
  8. "unit":"",
  9. "dataType":"Enum",
  10. "inputMode":"D1",
  11. "dataSource":[
  12. {
  13. "code":"1",
  14. "name":"进线柜"
  15. },
  16. {
  17. "code":"2",
  18. "name":"电容补偿柜"
  19. },
  20. {
  21. "code":"3",
  22. "name":"母联柜"
  23. },
  24. {
  25. "code":"4",
  26. "name":"馈电柜(出线柜)"
  27. },
  28. {
  29. "code":"5",
  30. "name":"计量柜"
  31. },
  32. {
  33. "code":"6",
  34. "name":"末端配电柜"
  35. },
  36. {
  37. "code":"7",
  38. "name":"末端控制柜"
  39. },
  40. {
  41. "code":"8",
  42. "name":"其他"
  43. }
  44. ],
  45. "note":"",
  46. "func-id":""
  47. },
  48. {
  49. "firstTag":"技术参数",
  50. "secondTag":"总体",
  51. "infoPointName":"额定电压",
  52. "infoPointCode":"RatedU",
  53. "unit":"V",
  54. "dataType":"Num",
  55. "inputMode":"A2",
  56. "dataSource":"",
  57. "note":"",
  58. "func-id":""
  59. },
  60. {
  61. "firstTag":"技术参数",
  62. "secondTag":"总体",
  63. "infoPointName":"额定电流",
  64. "infoPointCode":"RatedI",
  65. "unit":"A",
  66. "dataType":"Num",
  67. "inputMode":"A2",
  68. "dataSource":"",
  69. "note":"",
  70. "func-id":""
  71. },
  72. {
  73. "firstTag":"技术参数",
  74. "secondTag":"总体",
  75. "infoPointName":"额定功率",
  76. "infoPointCode":"RatedP",
  77. "unit":"kW",
  78. "dataType":"Num",
  79. "inputMode":"A2",
  80. "dataSource":"",
  81. "note":"",
  82. "func-id":""
  83. },
  84. {
  85. "firstTag":"技术参数",
  86. "secondTag":"总体",
  87. "infoPointName":"额定频率",
  88. "infoPointCode":"RatedFreq",
  89. "unit":"Hz",
  90. "dataType":"Num",
  91. "inputMode":"A2",
  92. "dataSource":"",
  93. "note":"",
  94. "func-id":""
  95. },
  96. {
  97. "firstTag":"技术参数",
  98. "secondTag":"总体",
  99. "infoPointName":"相保护电流",
  100. "infoPointCode":"PhaseProtectI",
  101. "unit":"A",
  102. "dataType":"Num",
  103. "inputMode":"A2",
  104. "dataSource":"",
  105. "note":"",
  106. "func-id":""
  107. },
  108. {
  109. "firstTag":"技术参数",
  110. "secondTag":"总体",
  111. "infoPointName":"补偿容量",
  112. "infoPointCode":"CompensationCap",
  113. "unit":"kVar",
  114. "dataType":"Num",
  115. "inputMode":"A2",
  116. "dataSource":"",
  117. "note":"",
  118. "func-id":""
  119. },
  120. {
  121. "firstTag":"技术参数",
  122. "secondTag":"总体",
  123. "infoPointName":"柜体板厚",
  124. "infoPointCode":"CabThick",
  125. "unit":"mm",
  126. "dataType":"Num",
  127. "inputMode":"A2",
  128. "dataSource":"",
  129. "note":"",
  130. "func-id":""
  131. },
  132. {
  133. "firstTag":"技术参数",
  134. "secondTag":"总体",
  135. "infoPointName":"柜体颜色",
  136. "infoPointCode":"CabColor",
  137. "unit":"",
  138. "dataType":"Str",
  139. "inputMode":"B1",
  140. "dataSource":"",
  141. "note":"厂家提供色卡,甲方指定颜色",
  142. "func-id":""
  143. },
  144. {
  145. "firstTag":"技术参数",
  146. "secondTag":"总体",
  147. "infoPointName":"表面涂层材质",
  148. "infoPointCode":"CoatMaterial",
  149. "unit":"",
  150. "dataType":"Str",
  151. "inputMode":"B1",
  152. "dataSource":"",
  153. "note":"",
  154. "func-id":""
  155. },
  156. {
  157. "firstTag":"技术参数",
  158. "secondTag":"总体",
  159. "infoPointName":"安装地点",
  160. "infoPointCode":"InstallSiteType",
  161. "unit":"",
  162. "dataType":"Enum",
  163. "inputMode":"D1",
  164. "dataSource":[
  165. {
  166. "code":"1",
  167. "name":"室外"
  168. },
  169. {
  170. "code":"2",
  171. "name":"室内"
  172. },
  173. {
  174. "code":"3",
  175. "name":"其他"
  176. }
  177. ],
  178. "note":"",
  179. "func-id":""
  180. },
  181. {
  182. "firstTag":"技术参数",
  183. "secondTag":"总体",
  184. "infoPointName":"控制方式",
  185. "infoPointCode":"CtrlType",
  186. "unit":"",
  187. "dataType":"Enum",
  188. "inputMode":"D1",
  189. "dataSource":[
  190. {
  191. "code":"1",
  192. "name":"直接启动控制"
  193. },
  194. {
  195. "code":"2",
  196. "name":"星三角降压启动控制"
  197. },
  198. {
  199. "code":"3",
  200. "name":"自耦降压启动控制"
  201. },
  202. {
  203. "code":"4",
  204. "name":"变频器启动控制"
  205. },
  206. {
  207. "code":"5",
  208. "name":"软启动控制"
  209. },
  210. {
  211. "code":"6",
  212. "name":"其他"
  213. }
  214. ],
  215. "note":"",
  216. "func-id":""
  217. },
  218. {
  219. "firstTag":"技术参数",
  220. "secondTag":"总体",
  221. "infoPointName":"抗震设防烈度",
  222. "infoPointCode":"SFI",
  223. "unit":"",
  224. "dataType":"Enum",
  225. "inputMode":"D1",
  226. "dataSource":"见《10抗震设防烈度》",
  227. "note":"",
  228. "func-id":""
  229. },
  230. {
  231. "firstTag":"技术参数",
  232. "secondTag":"总体",
  233. "infoPointName":"绝缘等级",
  234. "infoPointCode":"InsulationLev",
  235. "unit":"",
  236. "dataType":"Enum",
  237. "inputMode":"D1",
  238. "dataSource":[
  239. {
  240. "code":"1",
  241. "name":"A级"
  242. },
  243. {
  244. "code":"2",
  245. "name":"E级"
  246. },
  247. {
  248. "code":"3",
  249. "name":"B级"
  250. },
  251. {
  252. "code":"4",
  253. "name":"F级"
  254. },
  255. {
  256. "code":"5",
  257. "name":"H级"
  258. },
  259. {
  260. "code":"6",
  261. "name":"C级"
  262. },
  263. {
  264. "code":"7",
  265. "name":"N级"
  266. },
  267. {
  268. "code":"8",
  269. "name":"R级"
  270. },
  271. {
  272. "code":"9",
  273. "name":"其他"
  274. }
  275. ],
  276. "note":"",
  277. "func-id":""
  278. },
  279. {
  280. "firstTag":"技术参数",
  281. "secondTag":"总体",
  282. "infoPointName":"污秽等级",
  283. "infoPointCode":"DirtyLev",
  284. "unit":"",
  285. "dataType":"Enum",
  286. "inputMode":"D1",
  287. "dataSource":"见《13污秽等级》",
  288. "note":"",
  289. "func-id":""
  290. },
  291. {
  292. "firstTag":"技术参数",
  293. "secondTag":"总体",
  294. "infoPointName":"污染等级",
  295. "infoPointCode":"Pollutionlev",
  296. "unit":"",
  297. "dataType":"Enum",
  298. "inputMode":"D1",
  299. "dataSource":"见《14污染等级》",
  300. "note":"",
  301. "func-id":""
  302. },
  303. {
  304. "firstTag":"技术参数",
  305. "secondTag":"总体",
  306. "infoPointName":"机械寿命",
  307. "infoPointCode":"MechanicalLife",
  308. "unit":"次",
  309. "dataType":"Num",
  310. "inputMode":"A2",
  311. "dataSource":"",
  312. "note":"",
  313. "func-id":""
  314. },
  315. {
  316. "firstTag":"技术参数",
  317. "secondTag":"总体",
  318. "infoPointName":"是否有高海拔要求",
  319. "infoPointCode":"isHighAltitude",
  320. "unit":"",
  321. "dataType":"Bool",
  322. "inputMode":"E1",
  323. "dataSource":[
  324. {
  325. "code":"0",
  326. "name":"<1000米"
  327. },
  328. {
  329. "code":"1",
  330. "name":">1000米"
  331. }
  332. ],
  333. "note":"",
  334. "func-id":""
  335. },
  336. {
  337. "firstTag":"技术参数",
  338. "secondTag":"总体",
  339. "infoPointName":"是否有防盐雾要求",
  340. "infoPointCode":"isSaltFogDefend",
  341. "unit":"",
  342. "dataType":"Bool",
  343. "inputMode":"E1",
  344. "dataSource":[
  345. {
  346. "code":"0",
  347. "name":"无防盐雾设计"
  348. },
  349. {
  350. "code":"1",
  351. "name":"沿海地区专用"
  352. }
  353. ],
  354. "note":"",
  355. "func-id":""
  356. },
  357. {
  358. "firstTag":"技术参数",
  359. "secondTag":"总体",
  360. "infoPointName":"是否有防爆要求",
  361. "infoPointCode":"isExplodeDefend",
  362. "unit":"",
  363. "dataType":"Bool",
  364. "inputMode":"E1",
  365. "dataSource":[
  366. {
  367. "code":"0",
  368. "name":"无防爆要求"
  369. },
  370. {
  371. "code":"1",
  372. "name":"特殊环境防爆设计"
  373. }
  374. ],
  375. "note":"",
  376. "func-id":""
  377. },
  378. {
  379. "firstTag":"技术参数",
  380. "secondTag":"总体",
  381. "infoPointName":"工作温度范围",
  382. "infoPointCode":"WorkTempRange",
  383. "unit":"℃",
  384. "dataType":"Num",
  385. "inputMode":"A6",
  386. "dataSource":"",
  387. "note":"",
  388. "func-id":""
  389. },
  390. {
  391. "firstTag":"技术参数",
  392. "secondTag":"总体",
  393. "infoPointName":"工作湿度范围",
  394. "infoPointCode":"WorkRHRange",
  395. "unit":"%RH",
  396. "dataType":"Num",
  397. "inputMode":"A6",
  398. "dataSource":"",
  399. "note":"",
  400. "func-id":""
  401. },
  402. {
  403. "firstTag":"技术参数",
  404. "secondTag":"总体",
  405. "infoPointName":"柜外壳防护等级",
  406. "infoPointCode":"CabIPGrade",
  407. "unit":"",
  408. "dataType":"Str",
  409. "inputMode":"B1",
  410. "dataSource":"",
  411. "note":"参考《11防护等级》",
  412. "func-id":""
  413. },
  414. {
  415. "firstTag":"技术参数",
  416. "secondTag":"总体",
  417. "infoPointName":"柜内操作对带电部分防护等级",
  418. "infoPointCode":"LiveIPGrade",
  419. "unit":"",
  420. "dataType":"Str",
  421. "inputMode":"B1",
  422. "dataSource":"",
  423. "note":"参考《11防护等级》",
  424. "func-id":""
  425. },
  426. {
  427. "firstTag":"技术参数",
  428. "secondTag":"负荷开关",
  429. "infoPointName":"是否包含负荷开关",
  430. "infoPointCode":"isLoadSwitch",
  431. "unit":"",
  432. "dataType":"Bool",
  433. "inputMode":"E1",
  434. "dataSource":[
  435. {
  436. "code":"0",
  437. "name":"无"
  438. },
  439. {
  440. "code":"1",
  441. "name":"有"
  442. }
  443. ],
  444. "note":"",
  445. "func-id":""
  446. },
  447. {
  448. "firstTag":"技术参数",
  449. "secondTag":"负荷开关",
  450. "infoPointName":"负荷开关1min工频耐受电压",
  451. "infoPointCode":"LoadSwitch1MinPowerFreqWithstandU",
  452. "unit":"V",
  453. "dataType":"Num",
  454. "inputMode":"A2",
  455. "dataSource":"",
  456. "note":"",
  457. "func-id":""
  458. },
  459. {
  460. "firstTag":"技术参数",
  461. "secondTag":"负荷开关",
  462. "infoPointName":"负荷开关雷电冲击耐受电压",
  463. "infoPointCode":"LoadSwitchLightningWithstandU",
  464. "unit":"V",
  465. "dataType":"Num",
  466. "inputMode":"A2",
  467. "dataSource":"",
  468. "note":"",
  469. "func-id":""
  470. },
  471. {
  472. "firstTag":"技术参数",
  473. "secondTag":"负荷开关",
  474. "infoPointName":"负荷开关额定闭环开断电流",
  475. "infoPointCode":"LoadSwitchRatedCloseLoopBreakI",
  476. "unit":"A",
  477. "dataType":"Num",
  478. "inputMode":"A2",
  479. "dataSource":"",
  480. "note":"",
  481. "func-id":""
  482. },
  483. {
  484. "firstTag":"技术参数",
  485. "secondTag":"负荷开关",
  486. "infoPointName":"负荷开关额定电缆充电开断电流",
  487. "infoPointCode":"LoadSwitchRatedCableChargeBreakI",
  488. "unit":"A",
  489. "dataType":"Num",
  490. "inputMode":"A2",
  491. "dataSource":"",
  492. "note":"",
  493. "func-id":""
  494. },
  495. {
  496. "firstTag":"技术参数",
  497. "secondTag":"负荷开关",
  498. "infoPointName":"负荷开关额定短路关合电流",
  499. "infoPointCode":"LoadSwitchRatedShortCircuitCloseI",
  500. "unit":"A",
  501. "dataType":"Num",
  502. "inputMode":"A2",
  503. "dataSource":"",
  504. "note":"",
  505. "func-id":""
  506. },
  507. {
  508. "firstTag":"技术参数",
  509. "secondTag":"负荷开关",
  510. "infoPointName":"负荷开关额定短时耐受电流",
  511. "infoPointCode":"LoadSwitchRatedShortTimeWithstandI",
  512. "unit":"A",
  513. "dataType":"Num",
  514. "inputMode":"A2",
  515. "dataSource":"",
  516. "note":"",
  517. "func-id":""
  518. },
  519. {
  520. "firstTag":"技术参数",
  521. "secondTag":"负荷开关",
  522. "infoPointName":"负荷开关额定峰值耐受电流",
  523. "infoPointCode":"LoadSwitchRatedPeakWithstandI",
  524. "unit":"A",
  525. "dataType":"Num",
  526. "inputMode":"A2",
  527. "dataSource":"",
  528. "note":"",
  529. "func-id":""
  530. },
  531. {
  532. "firstTag":"技术参数",
  533. "secondTag":"负荷开关",
  534. "infoPointName":"负荷开关平均合闸速度",
  535. "infoPointCode":"LoadSwitchAveCloseV",
  536. "unit":"m\/s",
  537. "dataType":"Num",
  538. "inputMode":"A2",
  539. "dataSource":"",
  540. "note":"",
  541. "func-id":""
  542. },
  543. {
  544. "firstTag":"技术参数",
  545. "secondTag":"负荷开关",
  546. "infoPointName":"负荷开关平均分闸速度",
  547. "infoPointCode":"LoadSwitchAveOpenV",
  548. "unit":"m\/s",
  549. "dataType":"Num",
  550. "inputMode":"A2",
  551. "dataSource":"",
  552. "note":"",
  553. "func-id":""
  554. },
  555. {
  556. "firstTag":"技术参数",
  557. "secondTag":"熔断器",
  558. "infoPointName":"是否包含熔断器",
  559. "infoPointCode":"isFuse",
  560. "unit":"",
  561. "dataType":"Bool",
  562. "inputMode":"E1",
  563. "dataSource":[
  564. {
  565. "code":"0",
  566. "name":"无"
  567. },
  568. {
  569. "code":"1",
  570. "name":"有"
  571. }
  572. ],
  573. "note":"",
  574. "func-id":""
  575. },
  576. {
  577. "firstTag":"技术参数",
  578. "secondTag":"熔断器",
  579. "infoPointName":"熔断器最大熔断电流",
  580. "infoPointCode":"MaxFuseI",
  581. "unit":"A",
  582. "dataType":"Num",
  583. "inputMode":"A2",
  584. "dataSource":"",
  585. "note":"在额定电压下,保险丝能够安全断开电路, 并且不发生破损时的最大电流值",
  586. "func-id":""
  587. },
  588. {
  589. "firstTag":"技术参数",
  590. "secondTag":"熔断器",
  591. "infoPointName":"熔断器熔断值",
  592. "infoPointCode":"FuseValue",
  593. "unit":"A2s",
  594. "dataType":"Num",
  595. "inputMode":"A2",
  596. "dataSource":"",
  597. "note":"保险丝的熔断积分,是熔断这一保险丝的熔丝元件所需的能量,也称之为熔断值I2t",
  598. "func-id":""
  599. },
  600. {
  601. "firstTag":"技术参数",
  602. "secondTag":"熔断器",
  603. "infoPointName":"熔断器保险丝类型",
  604. "infoPointCode":"FuseType",
  605. "unit":"",
  606. "dataType":"Enum",
  607. "inputMode":"D1",
  608. "dataSource":[
  609. {
  610. "code":"1",
  611. "name":"F-快断"
  612. },
  613. {
  614. "code":"2",
  615. "name":"FF-快快断"
  616. },
  617. {
  618. "code":"3",
  619. "name":"T-慢断"
  620. },
  621. {
  622. "code":"4",
  623. "name":"TT-超慢断"
  624. },
  625. {
  626. "code":"5",
  627. "name":"其他"
  628. }
  629. ],
  630. "note":"",
  631. "func-id":""
  632. },
  633. {
  634. "firstTag":"技术参数",
  635. "secondTag":"熔断器",
  636. "infoPointName":"熔断器脉冲系数",
  637. "infoPointCode":"FusePulseFactor",
  638. "unit":"",
  639. "dataType":"Num",
  640. "inputMode":"A1",
  641. "dataSource":"",
  642. "note":"Fp",
  643. "func-id":""
  644. },
  645. {
  646. "firstTag":"技术参数",
  647. "secondTag":"熔断器",
  648. "infoPointName":"熔断器额定环境温度",
  649. "infoPointCode":"FuseRatedEnvironmentTemp",
  650. "unit":"℃",
  651. "dataType":"Num",
  652. "inputMode":"A2",
  653. "dataSource":"",
  654. "note":"直接接触在保险丝周围的空气温度,不是指室温",
  655. "func-id":""
  656. },
  657. {
  658. "firstTag":"技术参数",
  659. "secondTag":"隔离\/接地开关",
  660. "infoPointName":"是否包含隔离开关",
  661. "infoPointCode":"isDisconnector",
  662. "unit":"",
  663. "dataType":"Bool",
  664. "inputMode":"E1",
  665. "dataSource":[
  666. {
  667. "code":"0",
  668. "name":"无"
  669. },
  670. {
  671. "code":"1",
  672. "name":"有"
  673. }
  674. ],
  675. "note":"",
  676. "func-id":""
  677. },
  678. {
  679. "firstTag":"技术参数",
  680. "secondTag":"隔离\/接地开关",
  681. "infoPointName":"隔离开关1min工频耐受电压",
  682. "infoPointCode":"Disconnector1MinPowerFreqWithstandU",
  683. "unit":"V",
  684. "dataType":"Num",
  685. "inputMode":"A2",
  686. "dataSource":"",
  687. "note":"",
  688. "func-id":""
  689. },
  690. {
  691. "firstTag":"技术参数",
  692. "secondTag":"隔离\/接地开关",
  693. "infoPointName":"隔离开关雷电冲击耐受电压",
  694. "infoPointCode":"DisconnectorLightningWithstandU",
  695. "unit":"V",
  696. "dataType":"Num",
  697. "inputMode":"A2",
  698. "dataSource":"",
  699. "note":"",
  700. "func-id":""
  701. },
  702. {
  703. "firstTag":"技术参数",
  704. "secondTag":"低压断路器(空气开关)",
  705. "infoPointName":"是否包含断路器",
  706. "infoPointCode":"isBreaker",
  707. "unit":"",
  708. "dataType":"Bool",
  709. "inputMode":"E1",
  710. "dataSource":[
  711. {
  712. "code":"0",
  713. "name":"无"
  714. },
  715. {
  716. "code":"1",
  717. "name":"有"
  718. }
  719. ],
  720. "note":"",
  721. "func-id":""
  722. },
  723. {
  724. "firstTag":"技术参数",
  725. "secondTag":"低压断路器(空气开关)",
  726. "infoPointName":"断路器使用系统",
  727. "infoPointCode":"BreakerUseSys",
  728. "unit":"",
  729. "dataType":"Enum",
  730. "inputMode":"D2",
  731. "dataSource":[
  732. {
  733. "code":"1",
  734. "name":"照明(C型)"
  735. },
  736. {
  737. "code":"2",
  738. "name":"动力(D型)"
  739. },
  740. {
  741. "code":"3",
  742. "name":"其他"
  743. }
  744. ],
  745. "note":"",
  746. "func-id":""
  747. },
  748. {
  749. "firstTag":"技术参数",
  750. "secondTag":"低压断路器(空气开关)",
  751. "infoPointName":"断路器级数",
  752. "infoPointCode":"BreakerLevNum",
  753. "unit":"",
  754. "dataType":"Enum",
  755. "inputMode":"D1",
  756. "dataSource":[
  757. {
  758. "code":"1",
  759. "name":"单级"
  760. },
  761. {
  762. "code":"2",
  763. "name":"二级"
  764. },
  765. {
  766. "code":"3",
  767. "name":"三级"
  768. },
  769. {
  770. "code":"4",
  771. "name":"四级"
  772. },
  773. {
  774. "code":"5",
  775. "name":"其他"
  776. }
  777. ],
  778. "note":"",
  779. "func-id":""
  780. },
  781. {
  782. "firstTag":"技术参数",
  783. "secondTag":"低压断路器(空气开关)",
  784. "infoPointName":"断路器操作方式",
  785. "infoPointCode":"BreakerOperateType",
  786. "unit":"",
  787. "dataType":"Enum",
  788. "inputMode":"D1",
  789. "dataSource":[
  790. {
  791. "code":"1",
  792. "name":"手柄"
  793. },
  794. {
  795. "code":"2",
  796. "name":"电机传动"
  797. },
  798. {
  799. "code":"3",
  800. "name":"其他"
  801. }
  802. ],
  803. "note":"",
  804. "func-id":""
  805. },
  806. {
  807. "firstTag":"技术参数",
  808. "secondTag":"低压断路器(空气开关)",
  809. "infoPointName":"断路器额定短路开断电流",
  810. "infoPointCode":"BreakerRatedShortCircuitOpenI",
  811. "unit":"A",
  812. "dataType":"Num",
  813. "inputMode":"A2",
  814. "dataSource":"",
  815. "note":"",
  816. "func-id":""
  817. },
  818. {
  819. "firstTag":"技术参数",
  820. "secondTag":"低压断路器(空气开关)",
  821. "infoPointName":"断路器额定短路关合电流",
  822. "infoPointCode":"BreakerRatedShortCircuitCloseI",
  823. "unit":"A",
  824. "dataType":"Num",
  825. "inputMode":"A2",
  826. "dataSource":"",
  827. "note":"",
  828. "func-id":""
  829. },
  830. {
  831. "firstTag":"技术参数",
  832. "secondTag":"低压断路器(空气开关)",
  833. "infoPointName":"断路器额定短时耐受电流",
  834. "infoPointCode":"BreakerRatedShortTimeWithstandI",
  835. "unit":"A",
  836. "dataType":"Num",
  837. "inputMode":"A2",
  838. "dataSource":"",
  839. "note":"也称热稳定电流,指在规定的短时间内,断路器或者其他设备能够承受的电流的有效值",
  840. "func-id":""
  841. },
  842. {
  843. "firstTag":"技术参数",
  844. "secondTag":"低压断路器(空气开关)",
  845. "infoPointName":"断路器额定峰值耐受电流",
  846. "infoPointCode":"BreakerRatedPeakWithstandI",
  847. "unit":"A",
  848. "dataType":"Num",
  849. "inputMode":"A2",
  850. "dataSource":"",
  851. "note":"在规定的使用和性能条件下,开关设备和控制设备在合闸位置能够承载的额定短时耐受电流第一个大半波的电流峰值",
  852. "func-id":""
  853. },
  854. {
  855. "firstTag":"技术参数",
  856. "secondTag":"低压断路器(空气开关)",
  857. "infoPointName":"断路器额定短路持续时间",
  858. "infoPointCode":"BreakerRatedShortCircuitTime",
  859. "unit":"s",
  860. "dataType":"Num",
  861. "inputMode":"A2",
  862. "dataSource":"",
  863. "note":"",
  864. "func-id":""
  865. },
  866. {
  867. "firstTag":"技术参数",
  868. "secondTag":"低压断路器(空气开关)",
  869. "infoPointName":"断路器故障电流切段时间",
  870. "infoPointCode":"BreakerFailureICutOffTime",
  871. "unit":"ms",
  872. "dataType":"Num",
  873. "inputMode":"A2",
  874. "dataSource":"",
  875. "note":"",
  876. "func-id":""
  877. },
  878. {
  879. "firstTag":"技术参数",
  880. "secondTag":"低压断路器(空气开关)",
  881. "infoPointName":"断路器是否有选择性保护",
  882. "infoPointCode":"isBreakerSlectiveProtect",
  883. "unit":"",
  884. "dataType":"Bool",
  885. "inputMode":"E1",
  886. "dataSource":[
  887. {
  888. "code":"0",
  889. "name":"无"
  890. },
  891. {
  892. "code":"1",
  893. "name":"有"
  894. }
  895. ],
  896. "note":"",
  897. "func-id":""
  898. },
  899. {
  900. "firstTag":"技术参数",
  901. "secondTag":"低压断路器(空气开关)",
  902. "infoPointName":"断路器极限短路分断能力(lcu)",
  903. "infoPointCode":"BreakerLcu",
  904. "unit":"A",
  905. "dataType":"Num",
  906. "inputMode":"A2",
  907. "dataSource":"",
  908. "note":"按规定的实验程序所规定的条件,不包\n括断路器继续承载其额定电流能力的分断能力",
  909. "func-id":""
  910. },
  911. {
  912. "firstTag":"技术参数",
  913. "secondTag":"低压断路器(空气开关)",
  914. "infoPointName":"断路器运行短路分断能力(lcs)",
  915. "infoPointCode":"BreakerLcs",
  916. "unit":"A",
  917. "dataType":"Num",
  918. "inputMode":"A2",
  919. "dataSource":"",
  920. "note":"按规定的实验程序所规定的条件,包括断路器继续承载其额定电流能力的分断能力",
  921. "func-id":""
  922. },
  923. {
  924. "firstTag":"技术参数",
  925. "secondTag":"低压断路器(空气开关)",
  926. "infoPointName":"断路器过负荷脱扣器额定电流",
  927. "infoPointCode":"RatedOverloadTripperI",
  928. "unit":"A",
  929. "dataType":"Num",
  930. "inputMode":"A2",
  931. "dataSource":"",
  932. "note":"",
  933. "func-id":""
  934. },
  935. {
  936. "firstTag":"技术参数",
  937. "secondTag":"低压断路器(空气开关)",
  938. "infoPointName":"断路器长延时过负荷整定电流",
  939. "infoPointCode":"BreakerLongDelayOverloadSetI",
  940. "unit":"A",
  941. "dataType":"Num",
  942. "inputMode":"A2",
  943. "dataSource":"",
  944. "note":"",
  945. "func-id":""
  946. },
  947. {
  948. "firstTag":"技术参数",
  949. "secondTag":"低压断路器(空气开关)",
  950. "infoPointName":"断路器短延时过负荷整定电流",
  951. "infoPointCode":"BreakerShortDelayOverloadSetI",
  952. "unit":"A",
  953. "dataType":"Num",
  954. "inputMode":"A2",
  955. "dataSource":"",
  956. "note":"",
  957. "func-id":""
  958. },
  959. {
  960. "firstTag":"技术参数",
  961. "secondTag":"低压断路器(空气开关)",
  962. "infoPointName":"断路器瞬时脱扣器整定电流",
  963. "infoPointCode":"BreakerInstTripperSetI",
  964. "unit":"A",
  965. "dataType":"Num",
  966. "inputMode":"A2",
  967. "dataSource":"",
  968. "note":"",
  969. "func-id":""
  970. },
  971. {
  972. "firstTag":"技术参数",
  973. "secondTag":"低压断路器(空气开关)",
  974. "infoPointName":"断路器脱扣器型式",
  975. "infoPointCode":"TripperType",
  976. "unit":"",
  977. "dataType":"Enum",
  978. "inputMode":"D1",
  979. "dataSource":[
  980. {
  981. "code":"1",
  982. "name":"B型(3ln~5ln)"
  983. },
  984. {
  985. "code":"2",
  986. "name":"C型(5ln~10ln)"
  987. },
  988. {
  989. "code":"3",
  990. "name":"D型(10ln~16ln)"
  991. },
  992. {
  993. "code":"4",
  994. "name":"其他"
  995. }
  996. ],
  997. "note":"",
  998. "func-id":""
  999. },
  1000. {
  1001. "firstTag":"技术参数",
  1002. "secondTag":"低压断路器(空气开关)",
  1003. "infoPointName":"断路器脱扣类型",
  1004. "infoPointCode":"TripMethodType",
  1005. "unit":"",
  1006. "dataType":"Enum",
  1007. "inputMode":"D1",
  1008. "dataSource":[
  1009. {
  1010. "code":"1",
  1011. "name":"过电流脱扣器"
  1012. },
  1013. {
  1014. "code":"2",
  1015. "name":"欠电压脱扣器"
  1016. },
  1017. {
  1018. "code":"3",
  1019. "name":"分励脱扣器"
  1020. },
  1021. {
  1022. "code":"4",
  1023. "name":"其他"
  1024. }
  1025. ],
  1026. "note":"",
  1027. "func-id":""
  1028. },
  1029. {
  1030. "firstTag":"技术参数",
  1031. "secondTag":"电压互感器",
  1032. "infoPointName":"是否包含电压互感器",
  1033. "infoPointCode":"isUTrans",
  1034. "unit":"",
  1035. "dataType":"Bool",
  1036. "inputMode":"E1",
  1037. "dataSource":[
  1038. {
  1039. "code":"0",
  1040. "name":"无"
  1041. },
  1042. {
  1043. "code":"1",
  1044. "name":"有"
  1045. }
  1046. ],
  1047. "note":"",
  1048. "func-id":""
  1049. },
  1050. {
  1051. "firstTag":"技术参数",
  1052. "secondTag":"电压互感器",
  1053. "infoPointName":"电压互感器额定电压比",
  1054. "infoPointCode":"UTransRatedURatio",
  1055. "unit":"",
  1056. "dataType":"Num",
  1057. "inputMode":"A1",
  1058. "dataSource":"",
  1059. "note":"",
  1060. "func-id":""
  1061. },
  1062. {
  1063. "firstTag":"技术参数",
  1064. "secondTag":"电压互感器",
  1065. "infoPointName":"电压互感器准确级组合",
  1066. "infoPointCode":"UTransAccuracyCombination",
  1067. "unit":"",
  1068. "dataType":"Enum",
  1069. "inputMode":"D1",
  1070. "dataSource":[
  1071. {
  1072. "code":"1",
  1073. "name":"0.2级"
  1074. },
  1075. {
  1076. "code":"2",
  1077. "name":"0.5级"
  1078. },
  1079. {
  1080. "code":"3",
  1081. "name":"1级"
  1082. },
  1083. {
  1084. "code":"4",
  1085. "name":"3级"
  1086. },
  1087. {
  1088. "code":"5",
  1089. "name":"3P级"
  1090. },
  1091. {
  1092. "code":"6",
  1093. "name":"6P级"
  1094. },
  1095. {
  1096. "code":"7",
  1097. "name":"其他"
  1098. }
  1099. ],
  1100. "note":"0.2,0.5,1,3为测量用;3P,6P为保护用",
  1101. "func-id":""
  1102. },
  1103. {
  1104. "firstTag":"技术参数",
  1105. "secondTag":"电压互感器",
  1106. "infoPointName":"电压互感器额定输出",
  1107. "infoPointCode":"UTransRatedOut",
  1108. "unit":"kVA",
  1109. "dataType":"Num",
  1110. "inputMode":"A2",
  1111. "dataSource":"",
  1112. "note":"",
  1113. "func-id":""
  1114. },
  1115. {
  1116. "firstTag":"技术参数",
  1117. "secondTag":"电压互感器",
  1118. "infoPointName":"电压互感器极限输出",
  1119. "infoPointCode":"UTransLimitOut",
  1120. "unit":"kVA",
  1121. "dataType":"Num",
  1122. "inputMode":"A2",
  1123. "dataSource":"",
  1124. "note":"",
  1125. "func-id":""
  1126. },
  1127. {
  1128. "firstTag":"技术参数",
  1129. "secondTag":"电压互感器",
  1130. "infoPointName":"电压互感器额定绝缘水平",
  1131. "infoPointCode":"UTransRatedInsulationLev",
  1132. "unit":"V",
  1133. "dataType":"Num",
  1134. "inputMode":"A2",
  1135. "dataSource":"",
  1136. "note":"",
  1137. "func-id":""
  1138. },
  1139. {
  1140. "firstTag":"技术参数",
  1141. "secondTag":"电压互感器",
  1142. "infoPointName":"电压互感器安装地点",
  1143. "infoPointCode":"UTransInstallSiteType",
  1144. "unit":"",
  1145. "dataType":"Enum",
  1146. "inputMode":"D1",
  1147. "dataSource":[
  1148. {
  1149. "code":"1",
  1150. "name":"户外"
  1151. },
  1152. {
  1153. "code":"2",
  1154. "name":"室内"
  1155. },
  1156. {
  1157. "code":"3",
  1158. "name":"其他"
  1159. }
  1160. ],
  1161. "note":"35kV以下多为户内式 35kV以上多为户外式",
  1162. "func-id":""
  1163. },
  1164. {
  1165. "firstTag":"技术参数",
  1166. "secondTag":"电压互感器",
  1167. "infoPointName":"电压互感器相数",
  1168. "infoPointCode":"UTransPhaseNum",
  1169. "unit":"",
  1170. "dataType":"Enum",
  1171. "inputMode":"D1",
  1172. "dataSource":[
  1173. {
  1174. "code":"1",
  1175. "name":"单相式"
  1176. },
  1177. {
  1178. "code":"2",
  1179. "name":"三相式"
  1180. },
  1181. {
  1182. "code":"3",
  1183. "name":"其他"
  1184. }
  1185. ],
  1186. "note":"35kV以上不能制成三相式",
  1187. "func-id":""
  1188. },
  1189. {
  1190. "firstTag":"技术参数",
  1191. "secondTag":"电压互感器",
  1192. "infoPointName":"电压互感器绕组数目",
  1193. "infoPointCode":"UTransWindingNum",
  1194. "unit":"",
  1195. "dataType":"Enum",
  1196. "inputMode":"D1",
  1197. "dataSource":[
  1198. {
  1199. "code":"1",
  1200. "name":"双绕组"
  1201. },
  1202. {
  1203. "code":"2",
  1204. "name":"三绕组"
  1205. },
  1206. {
  1207. "code":"3",
  1208. "name":"其他"
  1209. }
  1210. ],
  1211. "note":"三绕组电压互感器除一次侧和基本二次侧外,还有一组辅助二次侧,供接地保护用",
  1212. "func-id":""
  1213. },
  1214. {
  1215. "firstTag":"技术参数",
  1216. "secondTag":"电压互感器",
  1217. "infoPointName":"电压互感器绝缘方式",
  1218. "infoPointCode":"UTransInsulationType",
  1219. "unit":"",
  1220. "dataType":"Enum",
  1221. "inputMode":"D1",
  1222. "dataSource":[
  1223. {
  1224. "code":"1",
  1225. "name":"干式"
  1226. },
  1227. {
  1228. "code":"2",
  1229. "name":"浇注式"
  1230. },
  1231. {
  1232. "code":"3",
  1233. "name":"油浸式"
  1234. },
  1235. {
  1236. "code":"4",
  1237. "name":"充气式"
  1238. },
  1239. {
  1240. "code":"5",
  1241. "name":"其他"
  1242. }
  1243. ],
  1244. "note":"",
  1245. "func-id":""
  1246. },
  1247. {
  1248. "firstTag":"技术参数",
  1249. "secondTag":"电压互感器",
  1250. "infoPointName":"电压互感器工作原理",
  1251. "infoPointCode":"UTransPrincipleType",
  1252. "unit":"",
  1253. "dataType":"Enum",
  1254. "inputMode":"D1",
  1255. "dataSource":[
  1256. {
  1257. "code":"1",
  1258. "name":"电磁式"
  1259. },
  1260. {
  1261. "code":"2",
  1262. "name":"电容式"
  1263. },
  1264. {
  1265. "code":"3",
  1266. "name":"电子式"
  1267. },
  1268. {
  1269. "code":"4",
  1270. "name":"其他"
  1271. }
  1272. ],
  1273. "note":"",
  1274. "func-id":""
  1275. },
  1276. {
  1277. "firstTag":"技术参数",
  1278. "secondTag":"电流互感器",
  1279. "infoPointName":"是否包含电流互感器",
  1280. "infoPointCode":"isITrans",
  1281. "unit":"",
  1282. "dataType":"Bool",
  1283. "inputMode":"E1",
  1284. "dataSource":[
  1285. {
  1286. "code":"0",
  1287. "name":"无"
  1288. },
  1289. {
  1290. "code":"1",
  1291. "name":"有"
  1292. }
  1293. ],
  1294. "note":"",
  1295. "func-id":""
  1296. },
  1297. {
  1298. "firstTag":"技术参数",
  1299. "secondTag":"电流互感器",
  1300. "infoPointName":"电流互感器类型",
  1301. "infoPointCode":"ITransType",
  1302. "unit":"",
  1303. "dataType":"Enum",
  1304. "inputMode":"D1",
  1305. "dataSource":[
  1306. {
  1307. "code":"1",
  1308. "name":"单匝式"
  1309. },
  1310. {
  1311. "code":"2",
  1312. "name":"穿墙式"
  1313. },
  1314. {
  1315. "code":"3",
  1316. "name":"支柱式"
  1317. },
  1318. {
  1319. "code":"4",
  1320. "name":"母线式"
  1321. },
  1322. {
  1323. "code":"5",
  1324. "name":"复匝式"
  1325. },
  1326. {
  1327. "code":"6",
  1328. "name":"其他"
  1329. }
  1330. ],
  1331. "note":"",
  1332. "func-id":""
  1333. },
  1334. {
  1335. "firstTag":"技术参数",
  1336. "secondTag":"电流互感器",
  1337. "infoPointName":"电流互感器额定电流比",
  1338. "infoPointCode":"ITransRatedIRatio",
  1339. "unit":"",
  1340. "dataType":"Num",
  1341. "inputMode":"A1",
  1342. "dataSource":"",
  1343. "note":"",
  1344. "func-id":""
  1345. },
  1346. {
  1347. "firstTag":"技术参数",
  1348. "secondTag":"电流互感器",
  1349. "infoPointName":"电流互感器额定一次侧电流",
  1350. "infoPointCode":"ITransRatedPrimaryI",
  1351. "unit":"A",
  1352. "dataType":"Num",
  1353. "inputMode":"A2",
  1354. "dataSource":"",
  1355. "note":"",
  1356. "func-id":""
  1357. },
  1358. {
  1359. "firstTag":"技术参数",
  1360. "secondTag":"电流互感器",
  1361. "infoPointName":"电流互感器额定二次侧电流",
  1362. "infoPointCode":"ITransRatedSecondaryI",
  1363. "unit":"A",
  1364. "dataType":"Num",
  1365. "inputMode":"A2",
  1366. "dataSource":"",
  1367. "note":"",
  1368. "func-id":""
  1369. },
  1370. {
  1371. "firstTag":"技术参数",
  1372. "secondTag":"电流互感器",
  1373. "infoPointName":"电流互感器准确级",
  1374. "infoPointCode":"ITransAccuracyLev",
  1375. "unit":"",
  1376. "dataType":"Enum",
  1377. "inputMode":"D1",
  1378. "dataSource":[
  1379. {
  1380. "code":"1",
  1381. "name":"0.2级"
  1382. },
  1383. {
  1384. "code":"2",
  1385. "name":"0.5级"
  1386. },
  1387. {
  1388. "code":"3",
  1389. "name":"1级"
  1390. },
  1391. {
  1392. "code":"4",
  1393. "name":"3级"
  1394. },
  1395. {
  1396. "code":"5",
  1397. "name":"5P级"
  1398. },
  1399. {
  1400. "code":"6",
  1401. "name":"10P级"
  1402. },
  1403. {
  1404. "code":"7",
  1405. "name":"TPX级"
  1406. },
  1407. {
  1408. "code":"8",
  1409. "name":"TPY级"
  1410. },
  1411. {
  1412. "code":"9",
  1413. "name":"TPZ级"
  1414. },
  1415. {
  1416. "code":"10",
  1417. "name":"其他"
  1418. }
  1419. ],
  1420. "note":"0.2,0.5,1,3为测量用;5P,10P为稳态保护用;TPX,TPY,TPZ为暂态保护用",
  1421. "func-id":""
  1422. },
  1423. {
  1424. "firstTag":"技术参数",
  1425. "secondTag":"电流互感器",
  1426. "infoPointName":"电流互感器额定容量",
  1427. "infoPointCode":"ITransRatedCap",
  1428. "unit":"kVA",
  1429. "dataType":"Num",
  1430. "inputMode":"A2",
  1431. "dataSource":"",
  1432. "note":"额定二次电流通过二次额定负荷时所消耗的视在功率",
  1433. "func-id":""
  1434. },
  1435. {
  1436. "firstTag":"技术参数",
  1437. "secondTag":"电流互感器",
  1438. "infoPointName":"电流互感器额定准确限制系数(10%倍数)",
  1439. "infoPointCode":"ITransRatedALF",
  1440. "unit":"",
  1441. "dataType":"Num",
  1442. "inputMode":"A1",
  1443. "dataSource":"",
  1444. "note":"在指定的二次负荷和任意功率因数下,电流互感器的电流误差为-10%时,一次电流对其额定值的倍数",
  1445. "func-id":""
  1446. },
  1447. {
  1448. "firstTag":"技术参数",
  1449. "secondTag":"电流互感器",
  1450. "infoPointName":"电流互感器比差",
  1451. "infoPointCode":"ITransRatioError",
  1452. "unit":"A",
  1453. "dataType":"Num",
  1454. "inputMode":"A2",
  1455. "dataSource":"",
  1456. "note":"互感器在测量电流时所出现的数值误差,是由于实际电流比不等于额定电流比而造成的",
  1457. "func-id":""
  1458. },
  1459. {
  1460. "firstTag":"技术参数",
  1461. "secondTag":"电流互感器",
  1462. "infoPointName":"电流互感器角差",
  1463. "infoPointCode":"ITransPhaseError",
  1464. "unit":"°",
  1465. "dataType":"Num",
  1466. "inputMode":"A2",
  1467. "dataSource":"",
  1468. "note":"互感器的一次电流与二次电流相量的相位之差,相量方向以理想互感器的相位差为零来确定,当二次电流相量超前一次电流相量时,相位差为正值,以分或厘弧度表示",
  1469. "func-id":""
  1470. },
  1471. {
  1472. "firstTag":"技术参数",
  1473. "secondTag":"电流互感器",
  1474. "infoPointName":"电流互感器热稳定倍数",
  1475. "infoPointCode":"ITransThermalStableMultiple",
  1476. "unit":"",
  1477. "dataType":"Num",
  1478. "inputMode":"A1",
  1479. "dataSource":"",
  1480. "note":"热稳定电流1s内不致使电流互感器的发热超过允许限度的电流与电流互感器的额定电流之比",
  1481. "func-id":""
  1482. },
  1483. {
  1484. "firstTag":"技术参数",
  1485. "secondTag":"电流互感器",
  1486. "infoPointName":"电流互感器动稳定倍数",
  1487. "infoPointCode":"ITransDynamicStableMultiple",
  1488. "unit":"",
  1489. "dataType":"Num",
  1490. "inputMode":"A1",
  1491. "dataSource":"",
  1492. "note":"电流互感器所能承受的最大电流瞬时值与其额定电流之比",
  1493. "func-id":""
  1494. },
  1495. {
  1496. "firstTag":"技术参数",
  1497. "secondTag":"接触器",
  1498. "infoPointName":"是否包含接触器",
  1499. "infoPointCode":"isContactor",
  1500. "unit":"",
  1501. "dataType":"Bool",
  1502. "inputMode":"E1",
  1503. "dataSource":[
  1504. {
  1505. "code":"0",
  1506. "name":"无"
  1507. },
  1508. {
  1509. "code":"1",
  1510. "name":"有"
  1511. }
  1512. ],
  1513. "note":"",
  1514. "func-id":""
  1515. },
  1516. {
  1517. "firstTag":"技术参数",
  1518. "secondTag":"接触器",
  1519. "infoPointName":"接触器绝缘电压",
  1520. "infoPointCode":"ContactorInsulationU",
  1521. "unit":"V",
  1522. "dataType":"Num",
  1523. "inputMode":"A2",
  1524. "dataSource":"",
  1525. "note":"",
  1526. "func-id":""
  1527. },
  1528. {
  1529. "firstTag":"技术参数",
  1530. "secondTag":"接触器",
  1531. "infoPointName":"接触器可控电动机功率",
  1532. "infoPointCode":"ContactorMotorP",
  1533. "unit":"kW",
  1534. "dataType":"Num",
  1535. "inputMode":"A2",
  1536. "dataSource":"",
  1537. "note":"",
  1538. "func-id":""
  1539. },
  1540. {
  1541. "firstTag":"技术参数",
  1542. "secondTag":"接触器",
  1543. "infoPointName":"接触器类型",
  1544. "infoPointCode":"ContactorType",
  1545. "unit":"",
  1546. "dataType":"Enum",
  1547. "inputMode":"D1",
  1548. "dataSource":[
  1549. {
  1550. "code":"1",
  1551. "name":"空气式"
  1552. },
  1553. {
  1554. "code":"2",
  1555. "name":"真空式"
  1556. },
  1557. {
  1558. "code":"3",
  1559. "name":"其他"
  1560. }
  1561. ],
  1562. "note":"",
  1563. "func-id":""
  1564. },
  1565. {
  1566. "firstTag":"技术参数",
  1567. "secondTag":"接触器",
  1568. "infoPointName":"接触器最大接通电流",
  1569. "infoPointCode":"ContactorMaxConnectI",
  1570. "unit":"A",
  1571. "dataType":"Num",
  1572. "inputMode":"A2",
  1573. "dataSource":"",
  1574. "note":"触点闭合时不会造成触点熔焊时的最大电流值",
  1575. "func-id":""
  1576. },
  1577. {
  1578. "firstTag":"技术参数",
  1579. "secondTag":"接触器",
  1580. "infoPointName":"接触器最大分断电流",
  1581. "infoPointCode":"ContactorMaxReleaseI",
  1582. "unit":"A",
  1583. "dataType":"Num",
  1584. "inputMode":"A2",
  1585. "dataSource":"",
  1586. "note":"触点断开时能可靠灭弧的最大电流",
  1587. "func-id":""
  1588. },
  1589. {
  1590. "firstTag":"技术参数",
  1591. "secondTag":"接触器",
  1592. "infoPointName":"接触器吸合电压",
  1593. "infoPointCode":"ContactorConnectU",
  1594. "unit":"V",
  1595. "dataType":"Num",
  1596. "inputMode":"A2",
  1597. "dataSource":"",
  1598. "note":"接触器吸合前,缓慢增加吸合线圈两端的电压,接触器可以吸合时的最小电压",
  1599. "func-id":""
  1600. },
  1601. {
  1602. "firstTag":"技术参数",
  1603. "secondTag":"接触器",
  1604. "infoPointName":"接触器释放电压",
  1605. "infoPointCode":"ContactorReleaseU",
  1606. "unit":"V",
  1607. "dataType":"Num",
  1608. "inputMode":"A2",
  1609. "dataSource":"",
  1610. "note":"接触器吸合后,缓慢降低吸合线圈的电压,接触器释放时的最大电压",
  1611. "func-id":""
  1612. },
  1613. {
  1614. "firstTag":"技术参数",
  1615. "secondTag":"接触器",
  1616. "infoPointName":"接触器操作频率",
  1617. "infoPointCode":"ContactorOperateFreq",
  1618. "unit":"次\/h",
  1619. "dataType":"Num",
  1620. "inputMode":"A2",
  1621. "dataSource":"",
  1622. "note":"接触器在吸合瞬间,吸引线圈需消耗比额定电流大5~7倍的电流,如果操作频率过高,则会使线圈严重发热,直接影响接触器的正常使用,因此规定接触器的允许操作频率,一般为每小时允许操作次数的最大值",
  1623. "func-id":""
  1624. },
  1625. {
  1626. "firstTag":"技术参数",
  1627. "secondTag":"漏电保护器",
  1628. "infoPointName":"是否包含漏电保护器",
  1629. "infoPointCode":"isLeakageProtector",
  1630. "unit":"",
  1631. "dataType":"Bool",
  1632. "inputMode":"E1",
  1633. "dataSource":[
  1634. {
  1635. "code":"0",
  1636. "name":"无"
  1637. },
  1638. {
  1639. "code":"1",
  1640. "name":"有"
  1641. }
  1642. ],
  1643. "note":"",
  1644. "func-id":""
  1645. },
  1646. {
  1647. "firstTag":"技术参数",
  1648. "secondTag":"漏电保护器",
  1649. "infoPointName":"漏电保护器额定漏电动作电流",
  1650. "infoPointCode":"LeakageProtectorRatedActionI",
  1651. "unit":"mA",
  1652. "dataType":"Num",
  1653. "inputMode":"A2",
  1654. "dataSource":"",
  1655. "note":"",
  1656. "func-id":""
  1657. },
  1658. {
  1659. "firstTag":"技术参数",
  1660. "secondTag":"漏电保护器",
  1661. "infoPointName":"漏电保护器额定漏电动作时间",
  1662. "infoPointCode":"LeakageProtectorRatedActionTime",
  1663. "unit":"s",
  1664. "dataType":"Num",
  1665. "inputMode":"A2",
  1666. "dataSource":"",
  1667. "note":"",
  1668. "func-id":""
  1669. },
  1670. {
  1671. "firstTag":"技术参数",
  1672. "secondTag":"漏电保护器",
  1673. "infoPointName":"漏电保护器额定漏电不动作电流",
  1674. "infoPointCode":"LeakageProtectorRatedNonActionI",
  1675. "unit":"mA",
  1676. "dataType":"Num",
  1677. "inputMode":"A2",
  1678. "dataSource":"",
  1679. "note":"在规定的条件下,漏电保护器不动作的电流值,一般应选漏电动作电流值的二分之一,否则因灵敏度太高容易误动作,影响用电设备的正常运行",
  1680. "func-id":""
  1681. },
  1682. {
  1683. "firstTag":"技术参数",
  1684. "secondTag":"继电器",
  1685. "infoPointName":"是否包含继电器",
  1686. "infoPointCode":"isRelay",
  1687. "unit":"",
  1688. "dataType":"Bool",
  1689. "inputMode":"E1",
  1690. "dataSource":[
  1691. {
  1692. "code":"0",
  1693. "name":"无"
  1694. },
  1695. {
  1696. "code":"1",
  1697. "name":"有"
  1698. }
  1699. ],
  1700. "note":"",
  1701. "func-id":""
  1702. },
  1703. {
  1704. "firstTag":"技术参数",
  1705. "secondTag":"继电器",
  1706. "infoPointName":"继电器类型",
  1707. "infoPointCode":"RelayType",
  1708. "unit":"",
  1709. "dataType":"Enum",
  1710. "inputMode":"D1",
  1711. "dataSource":[
  1712. {
  1713. "code":"1",
  1714. "name":"热继电器"
  1715. },
  1716. {
  1717. "code":"2",
  1718. "name":"中间继电器"
  1719. },
  1720. {
  1721. "code":"3",
  1722. "name":"时间继电器"
  1723. },
  1724. {
  1725. "code":"4",
  1726. "name":"其他"
  1727. }
  1728. ],
  1729. "note":"",
  1730. "func-id":""
  1731. },
  1732. {
  1733. "firstTag":"技术参数",
  1734. "secondTag":"继电器",
  1735. "infoPointName":"继电器线圈电阻",
  1736. "infoPointCode":"RelayCoilResistance",
  1737. "unit":"Ω",
  1738. "dataType":"Num",
  1739. "inputMode":"A2",
  1740. "dataSource":"",
  1741. "note":"",
  1742. "func-id":""
  1743. },
  1744. {
  1745. "firstTag":"技术参数",
  1746. "secondTag":"继电器",
  1747. "infoPointName":"继电器触点间距",
  1748. "infoPointCode":"RelayContactSpace",
  1749. "unit":"mm",
  1750. "dataType":"Num",
  1751. "inputMode":"A2",
  1752. "dataSource":"",
  1753. "note":"",
  1754. "func-id":""
  1755. },
  1756. {
  1757. "firstTag":"技术参数",
  1758. "secondTag":"继电器",
  1759. "infoPointName":"继电器接触点电阻",
  1760. "infoPointCode":"RelayContactResistance",
  1761. "unit":"kΩ",
  1762. "dataType":"Num",
  1763. "inputMode":"A2",
  1764. "dataSource":"",
  1765. "note":"",
  1766. "func-id":""
  1767. },
  1768. {
  1769. "firstTag":"技术参数",
  1770. "secondTag":"继电器",
  1771. "infoPointName":"继电器接触点开关电压",
  1772. "infoPointCode":"RelayContactSwitchU",
  1773. "unit":"V",
  1774. "dataType":"Num",
  1775. "inputMode":"A2",
  1776. "dataSource":"",
  1777. "note":"继电器允许加载的电压",
  1778. "func-id":""
  1779. },
  1780. {
  1781. "firstTag":"技术参数",
  1782. "secondTag":"继电器",
  1783. "infoPointName":"继电器接触点开关电流",
  1784. "infoPointCode":"RelayContactSwitchI",
  1785. "unit":"A",
  1786. "dataType":"Num",
  1787. "inputMode":"A2",
  1788. "dataSource":"",
  1789. "note":"继电器允许加载的电流",
  1790. "func-id":""
  1791. },
  1792. {
  1793. "firstTag":"技术参数",
  1794. "secondTag":"继电器",
  1795. "infoPointName":"继电器接触点最大承受电流",
  1796. "infoPointCode":"RelayMaxContactWithstandI",
  1797. "unit":"A",
  1798. "dataType":"Num",
  1799. "inputMode":"A2",
  1800. "dataSource":"",
  1801. "note":"在不考虑温升的条件下,继电器触点所能承受的最大电流,一般要大于触点开关电流",
  1802. "func-id":""
  1803. },
  1804. {
  1805. "firstTag":"技术参数",
  1806. "secondTag":"继电器",
  1807. "infoPointName":"继电器吸合电压",
  1808. "infoPointCode":"RelayConnectU",
  1809. "unit":"V",
  1810. "dataType":"Num",
  1811. "inputMode":"A2",
  1812. "dataSource":"",
  1813. "note":"使继电器触点吸合的最小线圈电压(从小到大测试)",
  1814. "func-id":""
  1815. },
  1816. {
  1817. "firstTag":"技术参数",
  1818. "secondTag":"继电器",
  1819. "infoPointName":"继电器释放电压",
  1820. "infoPointCode":"RelayReleaseU",
  1821. "unit":"V",
  1822. "dataType":"Num",
  1823. "inputMode":"A2",
  1824. "dataSource":"",
  1825. "note":"保证继电器触点释放的最大线圈电压(从大到小测试)",
  1826. "func-id":""
  1827. },
  1828. {
  1829. "firstTag":"技术参数",
  1830. "secondTag":"继电器",
  1831. "infoPointName":"继电器吸合电流",
  1832. "infoPointCode":"RelayConnectI",
  1833. "unit":"A",
  1834. "dataType":"Num",
  1835. "inputMode":"A2",
  1836. "dataSource":"",
  1837. "note":"继电器能够产生吸合动作的最小电流",
  1838. "func-id":""
  1839. },
  1840. {
  1841. "firstTag":"技术参数",
  1842. "secondTag":"继电器",
  1843. "infoPointName":"继电器释放电流",
  1844. "infoPointCode":"RelayReleaseI",
  1845. "unit":"A",
  1846. "dataType":"Num",
  1847. "inputMode":"A2",
  1848. "dataSource":"",
  1849. "note":"继电器产生释放动作的最大电流",
  1850. "func-id":""
  1851. },
  1852. {
  1853. "firstTag":"技术参数",
  1854. "secondTag":"继电器",
  1855. "infoPointName":"继电器吸合时间",
  1856. "infoPointCode":"RelayConnectTime",
  1857. "unit":"s",
  1858. "dataType":"Num",
  1859. "inputMode":"A2",
  1860. "dataSource":"",
  1861. "note":"从最初的线圈上电到触点开始闭合的时间",
  1862. "func-id":""
  1863. },
  1864. {
  1865. "firstTag":"技术参数",
  1866. "secondTag":"继电器",
  1867. "infoPointName":"继电器释放时间",
  1868. "infoPointCode":"RelayReleaseTime",
  1869. "unit":"s",
  1870. "dataType":"Num",
  1871. "inputMode":"A2",
  1872. "dataSource":"",
  1873. "note":"从最初的线圈掉电到最后触点断开的时间",
  1874. "func-id":""
  1875. },
  1876. {
  1877. "firstTag":"技术参数",
  1878. "secondTag":"继电器",
  1879. "infoPointName":"继电器最大连续施加电压",
  1880. "infoPointCode":"RelayMaxContinueU",
  1881. "unit":"V",
  1882. "dataType":"Num",
  1883. "inputMode":"A2",
  1884. "dataSource":"",
  1885. "note":"",
  1886. "func-id":""
  1887. },
  1888. {
  1889. "firstTag":"技术参数",
  1890. "secondTag":"继电器",
  1891. "infoPointName":"继电器绝缘电阻",
  1892. "infoPointCode":"RelayInsulationResistance",
  1893. "unit":"Ω",
  1894. "dataType":"Num",
  1895. "inputMode":"A2",
  1896. "dataSource":"",
  1897. "note":"各隔离部分之间的电阻包括继电器的线圈和触点,断开触点之间,触点线圈和各个铁芯之间",
  1898. "func-id":""
  1899. },
  1900. {
  1901. "firstTag":"技术参数",
  1902. "secondTag":"继电器",
  1903. "infoPointName":"继电器击穿电压",
  1904. "infoPointCode":"RelayBreakdownU",
  1905. "unit":"V",
  1906. "dataType":"Num",
  1907. "inputMode":"A2",
  1908. "dataSource":"",
  1909. "note":"",
  1910. "func-id":""
  1911. },
  1912. {
  1913. "firstTag":"技术参数",
  1914. "secondTag":"继电器",
  1915. "infoPointName":"继电器浪涌耐压能力",
  1916. "infoPointCode":"RelaySurgeWithstandU",
  1917. "unit":"V",
  1918. "dataType":"Num",
  1919. "inputMode":"A2",
  1920. "dataSource":"",
  1921. "note":"继电器承受外界浪涌电压(高能量脉冲)能力",
  1922. "func-id":""
  1923. },
  1924. {
  1925. "firstTag":"技术参数",
  1926. "secondTag":"继电器",
  1927. "infoPointName":"时间继电器延时规格",
  1928. "infoPointCode":"TimeRelayDelaySpecification",
  1929. "unit":"",
  1930. "dataType":"Num",
  1931. "inputMode":"A1",
  1932. "dataSource":"",
  1933. "note":"时间继电器",
  1934. "func-id":""
  1935. },
  1936. {
  1937. "firstTag":"技术参数",
  1938. "secondTag":"继电器",
  1939. "infoPointName":"时间继电器延时规格单位",
  1940. "infoPointCode":"TimeRelayDelaySpecificationUnit",
  1941. "unit":"",
  1942. "dataType":"Enum",
  1943. "inputMode":"D1",
  1944. "dataSource":[
  1945. {
  1946. "code":"1",
  1947. "name":"s"
  1948. },
  1949. {
  1950. "code":"2",
  1951. "name":"min"
  1952. },
  1953. {
  1954. "code":"3",
  1955. "name":"h"
  1956. },
  1957. {
  1958. "code":"4",
  1959. "name":"其他"
  1960. }
  1961. ],
  1962. "note":"时间继电器",
  1963. "func-id":""
  1964. },
  1965. {
  1966. "firstTag":"技术参数",
  1967. "secondTag":"继电器",
  1968. "infoPointName":"时间继电器类型",
  1969. "infoPointCode":"TimeRelayType",
  1970. "unit":"",
  1971. "dataType":"Enum",
  1972. "inputMode":"D1",
  1973. "dataSource":[
  1974. {
  1975. "code":"1",
  1976. "name":"空气阻尼型"
  1977. },
  1978. {
  1979. "code":"2",
  1980. "name":"电动型"
  1981. },
  1982. {
  1983. "code":"3",
  1984. "name":"电子型"
  1985. },
  1986. {
  1987. "code":"4",
  1988. "name":"其他"
  1989. }
  1990. ],
  1991. "note":"时间继电器",
  1992. "func-id":""
  1993. },
  1994. {
  1995. "firstTag":"技术参数",
  1996. "secondTag":"接线端子",
  1997. "infoPointName":"是否包含接线端子",
  1998. "infoPointCode":"isTerminal",
  1999. "unit":"",
  2000. "dataType":"Bool",
  2001. "inputMode":"D1",
  2002. "dataSource":[
  2003. {
  2004. "code":"0",
  2005. "name":"无"
  2006. },
  2007. {
  2008. "code":"1",
  2009. "name":"有"
  2010. }
  2011. ],
  2012. "note":"",
  2013. "func-id":""
  2014. },
  2015. {
  2016. "firstTag":"技术参数",
  2017. "secondTag":"接线端子",
  2018. "infoPointName":"接线端子类型",
  2019. "infoPointCode":"TerminalType",
  2020. "unit":"",
  2021. "dataType":"Enum",
  2022. "inputMode":"D1",
  2023. "dataSource":[
  2024. {
  2025. "code":"1",
  2026. "name":"插拔式"
  2027. },
  2028. {
  2029. "code":"2",
  2030. "name":"栅栏式"
  2031. },
  2032. {
  2033. "code":"3",
  2034. "name":"弹簧式"
  2035. },
  2036. {
  2037. "code":"4",
  2038. "name":"穿墙式"
  2039. },
  2040. {
  2041. "code":"5",
  2042. "name":"其他"
  2043. }
  2044. ],
  2045. "note":"",
  2046. "func-id":""
  2047. },
  2048. {
  2049. "firstTag":"技术参数",
  2050. "secondTag":"接线端子",
  2051. "infoPointName":"接线端子绝缘电阻",
  2052. "infoPointCode":"TerminalInsulationResistance",
  2053. "unit":"kΩ",
  2054. "dataType":"Num",
  2055. "inputMode":"A2",
  2056. "dataSource":"",
  2057. "note":"",
  2058. "func-id":""
  2059. },
  2060. {
  2061. "firstTag":"技术参数",
  2062. "secondTag":"接线端子",
  2063. "infoPointName":"接线端子接触电阻",
  2064. "infoPointCode":"TerminalContactResistance",
  2065. "unit":"kΩ",
  2066. "dataType":"Num",
  2067. "inputMode":"A2",
  2068. "dataSource":"",
  2069. "note":"",
  2070. "func-id":""
  2071. },
  2072. {
  2073. "firstTag":"技术参数",
  2074. "secondTag":"接线端子",
  2075. "infoPointName":"接线端子额定耐受电压",
  2076. "infoPointCode":"TerminalRatedWithstandU",
  2077. "unit":"kV",
  2078. "dataType":"Num",
  2079. "inputMode":"A2",
  2080. "dataSource":"",
  2081. "note":"",
  2082. "func-id":""
  2083. },
  2084. {
  2085. "firstTag":"技术参数",
  2086. "secondTag":"接线端子",
  2087. "infoPointName":"接线端子电线保持力",
  2088. "infoPointCode":"TerminalWireRetention",
  2089. "unit":"N",
  2090. "dataType":"Num",
  2091. "inputMode":"A2",
  2092. "dataSource":"",
  2093. "note":"",
  2094. "func-id":""
  2095. },
  2096. {
  2097. "firstTag":"技术参数",
  2098. "secondTag":"接线端子",
  2099. "infoPointName":"接线端子最大温升",
  2100. "infoPointCode":"TerminalMaxTempRise",
  2101. "unit":"℃",
  2102. "dataType":"Num",
  2103. "inputMode":"A2",
  2104. "dataSource":"",
  2105. "note":"",
  2106. "func-id":""
  2107. },
  2108. {
  2109. "firstTag":"技术参数",
  2110. "secondTag":"接线端子",
  2111. "infoPointName":"接线端子阻燃等级",
  2112. "infoPointCode":"TerminalFlameLev",
  2113. "unit":"",
  2114. "dataType":"Enum",
  2115. "inputMode":"D1",
  2116. "dataSource":[
  2117. {
  2118. "code":"1",
  2119. "name":"HB"
  2120. },
  2121. {
  2122. "code":"2",
  2123. "name":"V-2"
  2124. },
  2125. {
  2126. "code":"3",
  2127. "name":"V-1"
  2128. },
  2129. {
  2130. "code":"4",
  2131. "name":"V-0"
  2132. },
  2133. {
  2134. "code":"5",
  2135. "name":"其他"
  2136. }
  2137. ],
  2138. "note":"",
  2139. "func-id":""
  2140. },
  2141. {
  2142. "firstTag":"技术参数",
  2143. "secondTag":"接线端子",
  2144. "infoPointName":"接线端子可接导线",
  2145. "infoPointCode":"AvailableWire",
  2146. "unit":"m",
  2147. "dataType":"Num",
  2148. "inputMode":"A2",
  2149. "dataSource":"",
  2150. "note":"",
  2151. "func-id":""
  2152. },
  2153. {
  2154. "firstTag":"技术参数",
  2155. "secondTag":"",
  2156. "infoPointName":"其他设备",
  2157. "infoPointCode":"OtherEquip",
  2158. "unit":"",
  2159. "dataType":"Str",
  2160. "inputMode":"B1",
  2161. "dataSource":"",
  2162. "note":"",
  2163. "func-id":""
  2164. },
  2165. {
  2166. "firstTag":"控制参数",
  2167. "secondTag":"",
  2168. "infoPointName":"控制模式",
  2169. "infoPointCode":"CtrlMode",
  2170. "unit":"",
  2171. "dataType":"Str",
  2172. "inputMode":"B1",
  2173. "dataSource":"",
  2174. "note":"",
  2175. "func-id":""
  2176. },
  2177. {
  2178. "firstTag":"运行参数",
  2179. "secondTag":"",
  2180. "infoPointName":"运行状态",
  2181. "infoPointCode":"RunStatus",
  2182. "unit":"",
  2183. "dataType":"Boolv",
  2184. "inputMode":"L",
  2185. "dataSource":"",
  2186. "note":"0. 停止 1. 运行",
  2187. "func-id":""
  2188. },
  2189. {
  2190. "firstTag":"运行参数",
  2191. "secondTag":"",
  2192. "infoPointName":"本地远程状态",
  2193. "infoPointCode":"RemoteStatus",
  2194. "unit":"",
  2195. "dataType":"Enumv",
  2196. "inputMode":"L",
  2197. "dataSource":"",
  2198. "note":"1. 本地手动 2. 本地自动 3. 远程手动 4. 远程自动 5. 其他",
  2199. "func-id":""
  2200. },
  2201. {
  2202. "firstTag":"运行参数",
  2203. "secondTag":"开关状态",
  2204. "infoPointName":"断路器分\/合闸状态",
  2205. "infoPointCode":"BreakerStatus",
  2206. "unit":"",
  2207. "dataType":"Boolv",
  2208. "inputMode":"L",
  2209. "dataSource":"",
  2210. "note":"0. 分闸 1. 合闸",
  2211. "func-id":""
  2212. },
  2213. {
  2214. "firstTag":"运行参数",
  2215. "secondTag":"开关状态",
  2216. "infoPointName":"分段开关分\/合闸状态",
  2217. "infoPointCode":"SectionSwitchStatus",
  2218. "unit":"",
  2219. "dataType":"Boolv",
  2220. "inputMode":"L",
  2221. "dataSource":"",
  2222. "note":"0. 分闸 1. 合闸",
  2223. "func-id":""
  2224. },
  2225. {
  2226. "firstTag":"运行参数",
  2227. "secondTag":"开关状态",
  2228. "infoPointName":"负荷开关状态",
  2229. "infoPointCode":"LoadSwitchStatus",
  2230. "unit":"",
  2231. "dataType":"Boolv",
  2232. "inputMode":"L",
  2233. "dataSource":"",
  2234. "note":"0. 分闸 1. 合闸",
  2235. "func-id":""
  2236. },
  2237. {
  2238. "firstTag":"运行参数",
  2239. "secondTag":"开关状态",
  2240. "infoPointName":"接触器状态",
  2241. "infoPointCode":"ContactorStatus",
  2242. "unit":"",
  2243. "dataType":"Boolv",
  2244. "inputMode":"L",
  2245. "dataSource":"",
  2246. "note":"0. 分闸 1. 合闸",
  2247. "func-id":""
  2248. },
  2249. {
  2250. "firstTag":"运行参数",
  2251. "secondTag":"开关状态",
  2252. "infoPointName":"隔离开关状态",
  2253. "infoPointCode":"DisconnectorStatus",
  2254. "unit":"",
  2255. "dataType":"Boolv",
  2256. "inputMode":"L",
  2257. "dataSource":"",
  2258. "note":"0. 分闸 1. 合闸",
  2259. "func-id":""
  2260. },
  2261. {
  2262. "firstTag":"运行参数",
  2263. "secondTag":"开关状态",
  2264. "infoPointName":"接地状态",
  2265. "infoPointCode":"GroundStatus",
  2266. "unit":"",
  2267. "dataType":"Boolv",
  2268. "inputMode":"L",
  2269. "dataSource":"",
  2270. "note":"0. 正常接地 1. 接地故障",
  2271. "func-id":""
  2272. },
  2273. {
  2274. "firstTag":"运行参数",
  2275. "secondTag":"开关状态",
  2276. "infoPointName":"检修状态",
  2277. "infoPointCode":"OverhaulStatus",
  2278. "unit":"",
  2279. "dataType":"Boolv",
  2280. "inputMode":"L",
  2281. "dataSource":"",
  2282. "note":"0. 正常工作 1. 检修",
  2283. "func-id":""
  2284. },
  2285. {
  2286. "firstTag":"运行参数",
  2287. "secondTag":"开关状态",
  2288. "infoPointName":"弹簧储能状态",
  2289. "infoPointCode":"SpringEStoreStatus",
  2290. "unit":"",
  2291. "dataType":"Boolv",
  2292. "inputMode":"L",
  2293. "dataSource":"",
  2294. "note":"0. 正常储能 1. 未储能",
  2295. "func-id":""
  2296. },
  2297. {
  2298. "firstTag":"运行参数",
  2299. "secondTag":"开关状态",
  2300. "infoPointName":"绝缘状态",
  2301. "infoPointCode":"InsulationStatus",
  2302. "unit":"",
  2303. "dataType":"Boolv",
  2304. "inputMode":"L",
  2305. "dataSource":"",
  2306. "note":"0. 正常绝缘 1. 绝缘故障",
  2307. "func-id":""
  2308. },
  2309. {
  2310. "firstTag":"运行参数",
  2311. "secondTag":"开关状态",
  2312. "infoPointName":"重合闸充电状态",
  2313. "infoPointCode":"ReclosingChargeStatus",
  2314. "unit":"",
  2315. "dataType":"Boolv",
  2316. "inputMode":"L",
  2317. "dataSource":"",
  2318. "note":"0. 已充满电 1. 正在充电",
  2319. "func-id":""
  2320. },
  2321. {
  2322. "firstTag":"运行参数",
  2323. "secondTag":"开关状态",
  2324. "infoPointName":"通讯状态",
  2325. "infoPointCode":"CommunicateStatus",
  2326. "unit":"",
  2327. "dataType":"Boolv",
  2328. "inputMode":"L",
  2329. "dataSource":"",
  2330. "note":"0. 正常通讯 1. 通讯故障",
  2331. "func-id":""
  2332. },
  2333. {
  2334. "firstTag":"运行参数",
  2335. "secondTag":"电压",
  2336. "infoPointName":"A相电压",
  2337. "infoPointCode":"APhaseU",
  2338. "unit":"V",
  2339. "dataType":"Inst",
  2340. "inputMode":"L",
  2341. "dataSource":"",
  2342. "note":"",
  2343. "func-id":""
  2344. },
  2345. {
  2346. "firstTag":"运行参数",
  2347. "secondTag":"电压",
  2348. "infoPointName":"B相电压",
  2349. "infoPointCode":"BPhaseU",
  2350. "unit":"V",
  2351. "dataType":"Inst",
  2352. "inputMode":"L",
  2353. "dataSource":"",
  2354. "note":"",
  2355. "func-id":""
  2356. },
  2357. {
  2358. "firstTag":"运行参数",
  2359. "secondTag":"电压",
  2360. "infoPointName":"C相电压",
  2361. "infoPointCode":"CPhaseU",
  2362. "unit":"V",
  2363. "dataType":"Inst",
  2364. "inputMode":"L",
  2365. "dataSource":"",
  2366. "note":"",
  2367. "func-id":""
  2368. },
  2369. {
  2370. "firstTag":"运行参数",
  2371. "secondTag":"电压",
  2372. "infoPointName":"Uab线电压",
  2373. "infoPointCode":"UabU",
  2374. "unit":"V",
  2375. "dataType":"Inst",
  2376. "inputMode":"L",
  2377. "dataSource":"",
  2378. "note":"",
  2379. "func-id":""
  2380. },
  2381. {
  2382. "firstTag":"运行参数",
  2383. "secondTag":"电压",
  2384. "infoPointName":"Ubc线电压",
  2385. "infoPointCode":"UbcU",
  2386. "unit":"V",
  2387. "dataType":"Inst",
  2388. "inputMode":"L",
  2389. "dataSource":"",
  2390. "note":"",
  2391. "func-id":""
  2392. },
  2393. {
  2394. "firstTag":"运行参数",
  2395. "secondTag":"电压",
  2396. "infoPointName":"Uac线电压",
  2397. "infoPointCode":"UacU",
  2398. "unit":"V",
  2399. "dataType":"Inst",
  2400. "inputMode":"L",
  2401. "dataSource":"",
  2402. "note":"",
  2403. "func-id":""
  2404. },
  2405. {
  2406. "firstTag":"运行参数",
  2407. "secondTag":"电压",
  2408. "infoPointName":"正序电压",
  2409. "infoPointCode":"PositiveSequenceU",
  2410. "unit":"V",
  2411. "dataType":"Inst",
  2412. "inputMode":"L",
  2413. "dataSource":"",
  2414. "note":"",
  2415. "func-id":""
  2416. },
  2417. {
  2418. "firstTag":"运行参数",
  2419. "secondTag":"电压",
  2420. "infoPointName":"负序电压",
  2421. "infoPointCode":"NegativeSequenceU",
  2422. "unit":"V",
  2423. "dataType":"Inst",
  2424. "inputMode":"L",
  2425. "dataSource":"",
  2426. "note":"",
  2427. "func-id":""
  2428. },
  2429. {
  2430. "firstTag":"运行参数",
  2431. "secondTag":"电压",
  2432. "infoPointName":"零序电压",
  2433. "infoPointCode":"ZeroSequenceU",
  2434. "unit":"V",
  2435. "dataType":"Inst",
  2436. "inputMode":"L",
  2437. "dataSource":"",
  2438. "note":"",
  2439. "func-id":""
  2440. },
  2441. {
  2442. "firstTag":"运行参数",
  2443. "secondTag":"电流",
  2444. "infoPointName":"A相测量电流",
  2445. "infoPointCode":"APhaseI",
  2446. "unit":"A",
  2447. "dataType":"Inst",
  2448. "inputMode":"L",
  2449. "dataSource":"",
  2450. "note":"",
  2451. "func-id":""
  2452. },
  2453. {
  2454. "firstTag":"运行参数",
  2455. "secondTag":"电流",
  2456. "infoPointName":"B相测量电流",
  2457. "infoPointCode":"BPhaseI",
  2458. "unit":"A",
  2459. "dataType":"Inst",
  2460. "inputMode":"L",
  2461. "dataSource":"",
  2462. "note":"",
  2463. "func-id":""
  2464. },
  2465. {
  2466. "firstTag":"运行参数",
  2467. "secondTag":"电流",
  2468. "infoPointName":"C相测量电流",
  2469. "infoPointCode":"CPhaseI",
  2470. "unit":"A",
  2471. "dataType":"Inst",
  2472. "inputMode":"L",
  2473. "dataSource":"",
  2474. "note":"",
  2475. "func-id":""
  2476. },
  2477. {
  2478. "firstTag":"运行参数",
  2479. "secondTag":"电流",
  2480. "infoPointName":"A相无功电流",
  2481. "infoPointCode":"APhaseReactiveI",
  2482. "unit":"A",
  2483. "dataType":"Inst",
  2484. "inputMode":"L",
  2485. "dataSource":"",
  2486. "note":"",
  2487. "func-id":""
  2488. },
  2489. {
  2490. "firstTag":"运行参数",
  2491. "secondTag":"电流",
  2492. "infoPointName":"B相无功电流",
  2493. "infoPointCode":"BPhaseReactiveI",
  2494. "unit":"A",
  2495. "dataType":"Inst",
  2496. "inputMode":"L",
  2497. "dataSource":"",
  2498. "note":"",
  2499. "func-id":""
  2500. },
  2501. {
  2502. "firstTag":"运行参数",
  2503. "secondTag":"电流",
  2504. "infoPointName":"C相无功电流",
  2505. "infoPointCode":"CPhaseReactiveI",
  2506. "unit":"A",
  2507. "dataType":"Inst",
  2508. "inputMode":"L",
  2509. "dataSource":"",
  2510. "note":"",
  2511. "func-id":""
  2512. },
  2513. {
  2514. "firstTag":"运行参数",
  2515. "secondTag":"电流",
  2516. "infoPointName":"中性线电流",
  2517. "infoPointCode":"NeutralI",
  2518. "unit":"A",
  2519. "dataType":"Inst",
  2520. "inputMode":"L",
  2521. "dataSource":"",
  2522. "note":"",
  2523. "func-id":""
  2524. },
  2525. {
  2526. "firstTag":"运行参数",
  2527. "secondTag":"电流",
  2528. "infoPointName":"正序电流",
  2529. "infoPointCode":"PositiveSequenceI",
  2530. "unit":"A",
  2531. "dataType":"Inst",
  2532. "inputMode":"L",
  2533. "dataSource":"",
  2534. "note":"",
  2535. "func-id":""
  2536. },
  2537. {
  2538. "firstTag":"运行参数",
  2539. "secondTag":"电流",
  2540. "infoPointName":"负序电流",
  2541. "infoPointCode":"NegativeSequenceI",
  2542. "unit":"A",
  2543. "dataType":"Inst",
  2544. "inputMode":"L",
  2545. "dataSource":"",
  2546. "note":"",
  2547. "func-id":""
  2548. },
  2549. {
  2550. "firstTag":"运行参数",
  2551. "secondTag":"电流",
  2552. "infoPointName":"高压零序电流",
  2553. "infoPointCode":"HUZeroSequenceI",
  2554. "unit":"A",
  2555. "dataType":"Inst",
  2556. "inputMode":"L",
  2557. "dataSource":"",
  2558. "note":"",
  2559. "func-id":""
  2560. },
  2561. {
  2562. "firstTag":"运行参数",
  2563. "secondTag":"电流",
  2564. "infoPointName":"低压零序电流",
  2565. "infoPointCode":"LUZeroSequenceI",
  2566. "unit":"A",
  2567. "dataType":"Inst",
  2568. "inputMode":"L",
  2569. "dataSource":"",
  2570. "note":"",
  2571. "func-id":""
  2572. },
  2573. {
  2574. "firstTag":"运行参数",
  2575. "secondTag":"",
  2576. "infoPointName":"频率",
  2577. "infoPointCode":"Freq",
  2578. "unit":"Hz",
  2579. "dataType":"Inst",
  2580. "inputMode":"L",
  2581. "dataSource":"",
  2582. "note":"",
  2583. "func-id":""
  2584. },
  2585. {
  2586. "firstTag":"运行参数",
  2587. "secondTag":"功率",
  2588. "infoPointName":"A相有功功率",
  2589. "infoPointCode":"APhaseActiveP",
  2590. "unit":"kW",
  2591. "dataType":"Inst",
  2592. "inputMode":"L",
  2593. "dataSource":"",
  2594. "note":"",
  2595. "func-id":""
  2596. },
  2597. {
  2598. "firstTag":"运行参数",
  2599. "secondTag":"功率",
  2600. "infoPointName":"B相有功功率",
  2601. "infoPointCode":"BPhaseActiveP",
  2602. "unit":"kW",
  2603. "dataType":"Inst",
  2604. "inputMode":"L",
  2605. "dataSource":"",
  2606. "note":"",
  2607. "func-id":""
  2608. },
  2609. {
  2610. "firstTag":"运行参数",
  2611. "secondTag":"功率",
  2612. "infoPointName":"C相有功功率",
  2613. "infoPointCode":"CPhaseActiveP",
  2614. "unit":"kW",
  2615. "dataType":"Inst",
  2616. "inputMode":"L",
  2617. "dataSource":"",
  2618. "note":"",
  2619. "func-id":""
  2620. },
  2621. {
  2622. "firstTag":"运行参数",
  2623. "secondTag":"功率",
  2624. "infoPointName":"总有功功率",
  2625. "infoPointCode":"TotActiveP",
  2626. "unit":"kW",
  2627. "dataType":"Inst",
  2628. "inputMode":"L",
  2629. "dataSource":"",
  2630. "note":"",
  2631. "func-id":""
  2632. },
  2633. {
  2634. "firstTag":"运行参数",
  2635. "secondTag":"功率",
  2636. "infoPointName":"A相无功功率",
  2637. "infoPointCode":"APhaseReactiveP",
  2638. "unit":"kVar",
  2639. "dataType":"Inst",
  2640. "inputMode":"L",
  2641. "dataSource":"",
  2642. "note":"",
  2643. "func-id":""
  2644. },
  2645. {
  2646. "firstTag":"运行参数",
  2647. "secondTag":"功率",
  2648. "infoPointName":"B相无功功率",
  2649. "infoPointCode":"BPhaseReactiveP",
  2650. "unit":"kVar",
  2651. "dataType":"Inst",
  2652. "inputMode":"L",
  2653. "dataSource":"",
  2654. "note":"",
  2655. "func-id":""
  2656. },
  2657. {
  2658. "firstTag":"运行参数",
  2659. "secondTag":"功率",
  2660. "infoPointName":"C相无功功率",
  2661. "infoPointCode":"CPhaseReactiveP",
  2662. "unit":"kVar",
  2663. "dataType":"Inst",
  2664. "inputMode":"L",
  2665. "dataSource":"",
  2666. "note":"",
  2667. "func-id":""
  2668. },
  2669. {
  2670. "firstTag":"运行参数",
  2671. "secondTag":"功率",
  2672. "infoPointName":"总无功功率",
  2673. "infoPointCode":"TotReactiveP",
  2674. "unit":"kVar",
  2675. "dataType":"Inst",
  2676. "inputMode":"L",
  2677. "dataSource":"",
  2678. "note":"",
  2679. "func-id":""
  2680. },
  2681. {
  2682. "firstTag":"运行参数",
  2683. "secondTag":"功率",
  2684. "infoPointName":"A相视在功率",
  2685. "infoPointCode":"APhaseApparentP",
  2686. "unit":"kVA",
  2687. "dataType":"Inst",
  2688. "inputMode":"L",
  2689. "dataSource":"",
  2690. "note":"",
  2691. "func-id":""
  2692. },
  2693. {
  2694. "firstTag":"运行参数",
  2695. "secondTag":"功率",
  2696. "infoPointName":"B相视在功率",
  2697. "infoPointCode":"BPhaseApparentP",
  2698. "unit":"kVA",
  2699. "dataType":"Inst",
  2700. "inputMode":"L",
  2701. "dataSource":"",
  2702. "note":"",
  2703. "func-id":""
  2704. },
  2705. {
  2706. "firstTag":"运行参数",
  2707. "secondTag":"功率",
  2708. "infoPointName":"C相视在功率",
  2709. "infoPointCode":"CPhaseApparentP",
  2710. "unit":"kVA",
  2711. "dataType":"Inst",
  2712. "inputMode":"L",
  2713. "dataSource":"",
  2714. "note":"",
  2715. "func-id":""
  2716. },
  2717. {
  2718. "firstTag":"运行参数",
  2719. "secondTag":"功率",
  2720. "infoPointName":"总视在功率",
  2721. "infoPointCode":"TotApparentP",
  2722. "unit":"kVA",
  2723. "dataType":"Inst",
  2724. "inputMode":"L",
  2725. "dataSource":"",
  2726. "note":"",
  2727. "func-id":""
  2728. },
  2729. {
  2730. "firstTag":"运行参数",
  2731. "secondTag":"功率",
  2732. "infoPointName":"A相功率因数",
  2733. "infoPointCode":"APhasePFactor",
  2734. "unit":"",
  2735. "dataType":"Inst",
  2736. "inputMode":"L",
  2737. "dataSource":"",
  2738. "note":"",
  2739. "func-id":""
  2740. },
  2741. {
  2742. "firstTag":"运行参数",
  2743. "secondTag":"功率",
  2744. "infoPointName":"B相功率因数",
  2745. "infoPointCode":"BPhasePFactor",
  2746. "unit":"",
  2747. "dataType":"Inst",
  2748. "inputMode":"L",
  2749. "dataSource":"",
  2750. "note":"",
  2751. "func-id":""
  2752. },
  2753. {
  2754. "firstTag":"运行参数",
  2755. "secondTag":"功率",
  2756. "infoPointName":"C相功率因数",
  2757. "infoPointCode":"CPhasePFactor",
  2758. "unit":"",
  2759. "dataType":"Inst",
  2760. "inputMode":"L",
  2761. "dataSource":"",
  2762. "note":"",
  2763. "func-id":""
  2764. },
  2765. {
  2766. "firstTag":"运行参数",
  2767. "secondTag":"功率",
  2768. "infoPointName":"总功率因数",
  2769. "infoPointCode":"TotPFactor",
  2770. "unit":"",
  2771. "dataType":"Inst",
  2772. "inputMode":"L",
  2773. "dataSource":"",
  2774. "note":"",
  2775. "func-id":""
  2776. },
  2777. {
  2778. "firstTag":"运行参数",
  2779. "secondTag":"总谐波",
  2780. "infoPointName":"总谐波A相电压",
  2781. "infoPointCode":"TotHarmonicAPhaseU",
  2782. "unit":"V",
  2783. "dataType":"Inst",
  2784. "inputMode":"L",
  2785. "dataSource":"",
  2786. "note":"",
  2787. "func-id":""
  2788. },
  2789. {
  2790. "firstTag":"运行参数",
  2791. "secondTag":"总谐波",
  2792. "infoPointName":"总谐波B相电压",
  2793. "infoPointCode":"TotHarmonicBPhaseU",
  2794. "unit":"V",
  2795. "dataType":"Inst",
  2796. "inputMode":"L",
  2797. "dataSource":"",
  2798. "note":"",
  2799. "func-id":""
  2800. },
  2801. {
  2802. "firstTag":"运行参数",
  2803. "secondTag":"总谐波",
  2804. "infoPointName":"总谐波C相电压",
  2805. "infoPointCode":"TotHarmonicCPhaseU",
  2806. "unit":"V",
  2807. "dataType":"Inst",
  2808. "inputMode":"L",
  2809. "dataSource":"",
  2810. "note":"",
  2811. "func-id":""
  2812. },
  2813. {
  2814. "firstTag":"运行参数",
  2815. "secondTag":"总谐波",
  2816. "infoPointName":"总电压谐波含量",
  2817. "infoPointCode":"TotUHarmonic",
  2818. "unit":"V",
  2819. "dataType":"Inst",
  2820. "inputMode":"L",
  2821. "dataSource":"",
  2822. "note":"",
  2823. "func-id":""
  2824. },
  2825. {
  2826. "firstTag":"运行参数",
  2827. "secondTag":"总谐波",
  2828. "infoPointName":"总谐波A相电流",
  2829. "infoPointCode":"TotHarmonicAPhaseI",
  2830. "unit":"A",
  2831. "dataType":"Inst",
  2832. "inputMode":"L",
  2833. "dataSource":"",
  2834. "note":"",
  2835. "func-id":""
  2836. },
  2837. {
  2838. "firstTag":"运行参数",
  2839. "secondTag":"总谐波",
  2840. "infoPointName":"总谐波B相电流",
  2841. "infoPointCode":"TotHarmonicBPhaseI",
  2842. "unit":"A",
  2843. "dataType":"Inst",
  2844. "inputMode":"L",
  2845. "dataSource":"",
  2846. "note":"",
  2847. "func-id":""
  2848. },
  2849. {
  2850. "firstTag":"运行参数",
  2851. "secondTag":"总谐波",
  2852. "infoPointName":"总谐波C相电流",
  2853. "infoPointCode":"TotHarmonicCPhaseI",
  2854. "unit":"A",
  2855. "dataType":"Inst",
  2856. "inputMode":"L",
  2857. "dataSource":"",
  2858. "note":"",
  2859. "func-id":""
  2860. },
  2861. {
  2862. "firstTag":"运行参数",
  2863. "secondTag":"总谐波",
  2864. "infoPointName":"总电流谐波含量",
  2865. "infoPointCode":"TotIHarmonic",
  2866. "unit":"A",
  2867. "dataType":"Inst",
  2868. "inputMode":"L",
  2869. "dataSource":"",
  2870. "note":"",
  2871. "func-id":""
  2872. },
  2873. {
  2874. "firstTag":"运行参数",
  2875. "secondTag":"畸变率",
  2876. "infoPointName":"A相电压谐波畸变率",
  2877. "infoPointCode":"APhaseUHD",
  2878. "unit":"%",
  2879. "dataType":"Inst",
  2880. "inputMode":"L",
  2881. "dataSource":"",
  2882. "note":"",
  2883. "func-id":""
  2884. },
  2885. {
  2886. "firstTag":"运行参数",
  2887. "secondTag":"畸变率",
  2888. "infoPointName":"B相电压谐波畸变率",
  2889. "infoPointCode":"BPhaseUHD",
  2890. "unit":"%",
  2891. "dataType":"Inst",
  2892. "inputMode":"L",
  2893. "dataSource":"",
  2894. "note":"",
  2895. "func-id":""
  2896. },
  2897. {
  2898. "firstTag":"运行参数",
  2899. "secondTag":"畸变率",
  2900. "infoPointName":"C相电压谐波畸变率",
  2901. "infoPointCode":"CPhaseUHD",
  2902. "unit":"%",
  2903. "dataType":"Inst",
  2904. "inputMode":"L",
  2905. "dataSource":"",
  2906. "note":"",
  2907. "func-id":""
  2908. },
  2909. {
  2910. "firstTag":"运行参数",
  2911. "secondTag":"畸变率",
  2912. "infoPointName":"电压谐波总畸变率",
  2913. "infoPointCode":"UTHD",
  2914. "unit":"%",
  2915. "dataType":"Inst",
  2916. "inputMode":"L",
  2917. "dataSource":"",
  2918. "note":"",
  2919. "func-id":""
  2920. },
  2921. {
  2922. "firstTag":"运行参数",
  2923. "secondTag":"畸变率",
  2924. "infoPointName":"A相电流谐波畸变率",
  2925. "infoPointCode":"APhaseIHD",
  2926. "unit":"%",
  2927. "dataType":"Inst",
  2928. "inputMode":"L",
  2929. "dataSource":"",
  2930. "note":"",
  2931. "func-id":""
  2932. },
  2933. {
  2934. "firstTag":"运行参数",
  2935. "secondTag":"畸变率",
  2936. "infoPointName":"B相电流谐波畸变率",
  2937. "infoPointCode":"BPhaseIHD",
  2938. "unit":"%",
  2939. "dataType":"Inst",
  2940. "inputMode":"L",
  2941. "dataSource":"",
  2942. "note":"",
  2943. "func-id":""
  2944. },
  2945. {
  2946. "firstTag":"运行参数",
  2947. "secondTag":"畸变率",
  2948. "infoPointName":"C相电流谐波畸变率",
  2949. "infoPointCode":"CPhaseIHD",
  2950. "unit":"%",
  2951. "dataType":"Inst",
  2952. "inputMode":"L",
  2953. "dataSource":"",
  2954. "note":"",
  2955. "func-id":""
  2956. },
  2957. {
  2958. "firstTag":"运行参数",
  2959. "secondTag":"畸变率",
  2960. "infoPointName":"电流谐波总畸变率",
  2961. "infoPointCode":"ITHD",
  2962. "unit":"%",
  2963. "dataType":"Inst",
  2964. "inputMode":"L",
  2965. "dataSource":"",
  2966. "note":"",
  2967. "func-id":""
  2968. },
  2969. {
  2970. "firstTag":"运行参数",
  2971. "secondTag":"畸变率",
  2972. "infoPointName":"3阶谐波A相电压畸变率",
  2973. "infoPointCode":"3APhaseUHD",
  2974. "unit":"%",
  2975. "dataType":"Inst",
  2976. "inputMode":"L",
  2977. "dataSource":"",
  2978. "note":"",
  2979. "func-id":""
  2980. },
  2981. {
  2982. "firstTag":"运行参数",
  2983. "secondTag":"畸变率",
  2984. "infoPointName":"3阶谐波B相电压畸变率",
  2985. "infoPointCode":"3BPhaseUHD",
  2986. "unit":"%",
  2987. "dataType":"Inst",
  2988. "inputMode":"L",
  2989. "dataSource":"",
  2990. "note":"",
  2991. "func-id":""
  2992. },
  2993. {
  2994. "firstTag":"运行参数",
  2995. "secondTag":"畸变率",
  2996. "infoPointName":"3阶谐波C相电压畸变率",
  2997. "infoPointCode":"3CPhaseUHD",
  2998. "unit":"%",
  2999. "dataType":"Inst",
  3000. "inputMode":"L",
  3001. "dataSource":"",
  3002. "note":"",
  3003. "func-id":""
  3004. },
  3005. {
  3006. "firstTag":"运行参数",
  3007. "secondTag":"畸变率",
  3008. "infoPointName":"3阶谐波A相电流畸变率",
  3009. "infoPointCode":"3APhaseIHD",
  3010. "unit":"%",
  3011. "dataType":"Inst",
  3012. "inputMode":"L",
  3013. "dataSource":"",
  3014. "note":"",
  3015. "func-id":""
  3016. },
  3017. {
  3018. "firstTag":"运行参数",
  3019. "secondTag":"畸变率",
  3020. "infoPointName":"3阶谐波B相电流畸变率",
  3021. "infoPointCode":"3BPhaseIHD",
  3022. "unit":"%",
  3023. "dataType":"Inst",
  3024. "inputMode":"L",
  3025. "dataSource":"",
  3026. "note":"",
  3027. "func-id":""
  3028. },
  3029. {
  3030. "firstTag":"运行参数",
  3031. "secondTag":"畸变率",
  3032. "infoPointName":"3阶谐波C相电流畸变率",
  3033. "infoPointCode":"3CPhaseIHD",
  3034. "unit":"%",
  3035. "dataType":"Inst",
  3036. "inputMode":"L",
  3037. "dataSource":"",
  3038. "note":"",
  3039. "func-id":""
  3040. },
  3041. {
  3042. "firstTag":"运行参数",
  3043. "secondTag":"畸变率",
  3044. "infoPointName":"5阶谐波A相电压畸变率",
  3045. "infoPointCode":"5APhaseUHD",
  3046. "unit":"%",
  3047. "dataType":"Inst",
  3048. "inputMode":"L",
  3049. "dataSource":"",
  3050. "note":"",
  3051. "func-id":""
  3052. },
  3053. {
  3054. "firstTag":"运行参数",
  3055. "secondTag":"畸变率",
  3056. "infoPointName":"5阶谐波B相电压畸变率",
  3057. "infoPointCode":"5BPhaseUHD",
  3058. "unit":"%",
  3059. "dataType":"Inst",
  3060. "inputMode":"L",
  3061. "dataSource":"",
  3062. "note":"",
  3063. "func-id":""
  3064. },
  3065. {
  3066. "firstTag":"运行参数",
  3067. "secondTag":"畸变率",
  3068. "infoPointName":"5阶谐波C相电压畸变率",
  3069. "infoPointCode":"5CPhaseUHD",
  3070. "unit":"%",
  3071. "dataType":"Inst",
  3072. "inputMode":"L",
  3073. "dataSource":"",
  3074. "note":"",
  3075. "func-id":""
  3076. },
  3077. {
  3078. "firstTag":"运行参数",
  3079. "secondTag":"畸变率",
  3080. "infoPointName":"5阶谐波A相电流畸变率",
  3081. "infoPointCode":"5APhaseIHD",
  3082. "unit":"%",
  3083. "dataType":"Inst",
  3084. "inputMode":"L",
  3085. "dataSource":"",
  3086. "note":"",
  3087. "func-id":""
  3088. },
  3089. {
  3090. "firstTag":"运行参数",
  3091. "secondTag":"畸变率",
  3092. "infoPointName":"5阶谐波B相电流畸变率",
  3093. "infoPointCode":"5BPhaseIHD",
  3094. "unit":"%",
  3095. "dataType":"Inst",
  3096. "inputMode":"L",
  3097. "dataSource":"",
  3098. "note":"",
  3099. "func-id":""
  3100. },
  3101. {
  3102. "firstTag":"运行参数",
  3103. "secondTag":"畸变率",
  3104. "infoPointName":"5阶谐波C相电流畸变率",
  3105. "infoPointCode":"5CPhaseIHD",
  3106. "unit":"%",
  3107. "dataType":"Inst",
  3108. "inputMode":"L",
  3109. "dataSource":"",
  3110. "note":"",
  3111. "func-id":""
  3112. },
  3113. {
  3114. "firstTag":"运行参数",
  3115. "secondTag":"畸变率",
  3116. "infoPointName":"7阶谐波A相电压畸变率",
  3117. "infoPointCode":"7APhaseUHD",
  3118. "unit":"%",
  3119. "dataType":"Inst",
  3120. "inputMode":"L",
  3121. "dataSource":"",
  3122. "note":"",
  3123. "func-id":""
  3124. },
  3125. {
  3126. "firstTag":"运行参数",
  3127. "secondTag":"畸变率",
  3128. "infoPointName":"7阶谐波B相电压畸变率",
  3129. "infoPointCode":"7BPhaseUHD",
  3130. "unit":"%",
  3131. "dataType":"Inst",
  3132. "inputMode":"L",
  3133. "dataSource":"",
  3134. "note":"",
  3135. "func-id":""
  3136. },
  3137. {
  3138. "firstTag":"运行参数",
  3139. "secondTag":"畸变率",
  3140. "infoPointName":"7阶谐波C相电压畸变率",
  3141. "infoPointCode":"7CPhaseUHD",
  3142. "unit":"%",
  3143. "dataType":"Inst",
  3144. "inputMode":"L",
  3145. "dataSource":"",
  3146. "note":"",
  3147. "func-id":""
  3148. },
  3149. {
  3150. "firstTag":"运行参数",
  3151. "secondTag":"畸变率",
  3152. "infoPointName":"7阶谐波A相电流畸变率",
  3153. "infoPointCode":"7APhaseIHD",
  3154. "unit":"%",
  3155. "dataType":"Inst",
  3156. "inputMode":"L",
  3157. "dataSource":"",
  3158. "note":"",
  3159. "func-id":""
  3160. },
  3161. {
  3162. "firstTag":"运行参数",
  3163. "secondTag":"畸变率",
  3164. "infoPointName":"7阶谐波B相电流畸变率",
  3165. "infoPointCode":"7BPhaseIHD",
  3166. "unit":"%",
  3167. "dataType":"Inst",
  3168. "inputMode":"L",
  3169. "dataSource":"",
  3170. "note":"",
  3171. "func-id":""
  3172. },
  3173. {
  3174. "firstTag":"运行参数",
  3175. "secondTag":"畸变率",
  3176. "infoPointName":"7阶谐波C相电流畸变率",
  3177. "infoPointCode":"7CPhaseIHD",
  3178. "unit":"%",
  3179. "dataType":"Inst",
  3180. "inputMode":"L",
  3181. "dataSource":"",
  3182. "note":"",
  3183. "func-id":""
  3184. },
  3185. {
  3186. "firstTag":"运行参数",
  3187. "secondTag":"畸变率",
  3188. "infoPointName":"9阶谐波A相电压畸变率",
  3189. "infoPointCode":"9APhaseUHD",
  3190. "unit":"%",
  3191. "dataType":"Inst",
  3192. "inputMode":"L",
  3193. "dataSource":"",
  3194. "note":"",
  3195. "func-id":""
  3196. },
  3197. {
  3198. "firstTag":"运行参数",
  3199. "secondTag":"畸变率",
  3200. "infoPointName":"9阶谐波B相电压畸变率",
  3201. "infoPointCode":"9BPhaseUHD",
  3202. "unit":"%",
  3203. "dataType":"Inst",
  3204. "inputMode":"L",
  3205. "dataSource":"",
  3206. "note":"",
  3207. "func-id":""
  3208. },
  3209. {
  3210. "firstTag":"运行参数",
  3211. "secondTag":"畸变率",
  3212. "infoPointName":"9阶谐波C相电压畸变率",
  3213. "infoPointCode":"9CPhaseUHD",
  3214. "unit":"%",
  3215. "dataType":"Inst",
  3216. "inputMode":"L",
  3217. "dataSource":"",
  3218. "note":"",
  3219. "func-id":""
  3220. },
  3221. {
  3222. "firstTag":"运行参数",
  3223. "secondTag":"畸变率",
  3224. "infoPointName":"9阶谐波A相电流畸变率",
  3225. "infoPointCode":"9APhaseIHD",
  3226. "unit":"%",
  3227. "dataType":"Inst",
  3228. "inputMode":"L",
  3229. "dataSource":"",
  3230. "note":"",
  3231. "func-id":""
  3232. },
  3233. {
  3234. "firstTag":"运行参数",
  3235. "secondTag":"畸变率",
  3236. "infoPointName":"9阶谐波B相电流畸变率",
  3237. "infoPointCode":"9BPhaseIHD",
  3238. "unit":"%",
  3239. "dataType":"Inst",
  3240. "inputMode":"L",
  3241. "dataSource":"",
  3242. "note":"",
  3243. "func-id":""
  3244. },
  3245. {
  3246. "firstTag":"运行参数",
  3247. "secondTag":"畸变率",
  3248. "infoPointName":"9阶谐波C相电流畸变率",
  3249. "infoPointCode":"9CPhaseIHD",
  3250. "unit":"%",
  3251. "dataType":"Inst",
  3252. "inputMode":"L",
  3253. "dataSource":"",
  3254. "note":"",
  3255. "func-id":""
  3256. },
  3257. {
  3258. "firstTag":"运行参数",
  3259. "secondTag":"畸变率",
  3260. "infoPointName":"11阶谐波A相电压畸变率",
  3261. "infoPointCode":"11APhaseUHD",
  3262. "unit":"%",
  3263. "dataType":"Inst",
  3264. "inputMode":"L",
  3265. "dataSource":"",
  3266. "note":"",
  3267. "func-id":""
  3268. },
  3269. {
  3270. "firstTag":"运行参数",
  3271. "secondTag":"畸变率",
  3272. "infoPointName":"11阶谐波B相电压畸变率",
  3273. "infoPointCode":"11BPhaseUHD",
  3274. "unit":"%",
  3275. "dataType":"Inst",
  3276. "inputMode":"L",
  3277. "dataSource":"",
  3278. "note":"",
  3279. "func-id":""
  3280. },
  3281. {
  3282. "firstTag":"运行参数",
  3283. "secondTag":"畸变率",
  3284. "infoPointName":"11阶谐波C相电压畸变率",
  3285. "infoPointCode":"11CPhaseUHD",
  3286. "unit":"%",
  3287. "dataType":"Inst",
  3288. "inputMode":"L",
  3289. "dataSource":"",
  3290. "note":"",
  3291. "func-id":""
  3292. },
  3293. {
  3294. "firstTag":"运行参数",
  3295. "secondTag":"畸变率",
  3296. "infoPointName":"11阶谐波A相电流畸变率",
  3297. "infoPointCode":"11APhaseIHD",
  3298. "unit":"%",
  3299. "dataType":"Inst",
  3300. "inputMode":"L",
  3301. "dataSource":"",
  3302. "note":"",
  3303. "func-id":""
  3304. },
  3305. {
  3306. "firstTag":"运行参数",
  3307. "secondTag":"畸变率",
  3308. "infoPointName":"11阶谐波B相电流畸变率",
  3309. "infoPointCode":"11BPhaseIHD",
  3310. "unit":"%",
  3311. "dataType":"Inst",
  3312. "inputMode":"L",
  3313. "dataSource":"",
  3314. "note":"",
  3315. "func-id":""
  3316. },
  3317. {
  3318. "firstTag":"运行参数",
  3319. "secondTag":"畸变率",
  3320. "infoPointName":"11阶谐波C相电流畸变率",
  3321. "infoPointCode":"11CPhaseIHD",
  3322. "unit":"%",
  3323. "dataType":"Inst",
  3324. "inputMode":"L",
  3325. "dataSource":"",
  3326. "note":"",
  3327. "func-id":""
  3328. },
  3329. {
  3330. "firstTag":"运行参数",
  3331. "secondTag":"畸变率",
  3332. "infoPointName":"13阶谐波A相电压畸变率",
  3333. "infoPointCode":"13APhaseUHD",
  3334. "unit":"%",
  3335. "dataType":"Inst",
  3336. "inputMode":"L",
  3337. "dataSource":"",
  3338. "note":"",
  3339. "func-id":""
  3340. },
  3341. {
  3342. "firstTag":"运行参数",
  3343. "secondTag":"畸变率",
  3344. "infoPointName":"13阶谐波B相电压畸变率",
  3345. "infoPointCode":"13BPhaseUHD",
  3346. "unit":"%",
  3347. "dataType":"Inst",
  3348. "inputMode":"L",
  3349. "dataSource":"",
  3350. "note":"",
  3351. "func-id":""
  3352. },
  3353. {
  3354. "firstTag":"运行参数",
  3355. "secondTag":"畸变率",
  3356. "infoPointName":"13阶谐波C相电压畸变率",
  3357. "infoPointCode":"13CPhaseUHD",
  3358. "unit":"%",
  3359. "dataType":"Inst",
  3360. "inputMode":"L",
  3361. "dataSource":"",
  3362. "note":"",
  3363. "func-id":""
  3364. },
  3365. {
  3366. "firstTag":"运行参数",
  3367. "secondTag":"畸变率",
  3368. "infoPointName":"13阶谐波A相电流畸变率",
  3369. "infoPointCode":"13APhaseIHD",
  3370. "unit":"%",
  3371. "dataType":"Inst",
  3372. "inputMode":"L",
  3373. "dataSource":"",
  3374. "note":"",
  3375. "func-id":""
  3376. },
  3377. {
  3378. "firstTag":"运行参数",
  3379. "secondTag":"畸变率",
  3380. "infoPointName":"13阶谐波B相电流畸变率",
  3381. "infoPointCode":"13BPhaseIHD",
  3382. "unit":"%",
  3383. "dataType":"Inst",
  3384. "inputMode":"L",
  3385. "dataSource":"",
  3386. "note":"",
  3387. "func-id":""
  3388. },
  3389. {
  3390. "firstTag":"运行参数",
  3391. "secondTag":"畸变率",
  3392. "infoPointName":"13阶谐波C相电流畸变率",
  3393. "infoPointCode":"13CPhaseIHD",
  3394. "unit":"%",
  3395. "dataType":"Inst",
  3396. "inputMode":"L",
  3397. "dataSource":"",
  3398. "note":"",
  3399. "func-id":""
  3400. },
  3401. {
  3402. "firstTag":"运行参数",
  3403. "secondTag":"畸变率",
  3404. "infoPointName":"15阶谐波A相电压畸变率",
  3405. "infoPointCode":"15APhaseUHD",
  3406. "unit":"%",
  3407. "dataType":"Inst",
  3408. "inputMode":"L",
  3409. "dataSource":"",
  3410. "note":"",
  3411. "func-id":""
  3412. },
  3413. {
  3414. "firstTag":"运行参数",
  3415. "secondTag":"畸变率",
  3416. "infoPointName":"15阶谐波B相电压畸变率",
  3417. "infoPointCode":"15BPhaseUHD",
  3418. "unit":"%",
  3419. "dataType":"Inst",
  3420. "inputMode":"L",
  3421. "dataSource":"",
  3422. "note":"",
  3423. "func-id":""
  3424. },
  3425. {
  3426. "firstTag":"运行参数",
  3427. "secondTag":"畸变率",
  3428. "infoPointName":"15阶谐波C相电压畸变率",
  3429. "infoPointCode":"15CPhaseUHD",
  3430. "unit":"%",
  3431. "dataType":"Inst",
  3432. "inputMode":"L",
  3433. "dataSource":"",
  3434. "note":"",
  3435. "func-id":""
  3436. },
  3437. {
  3438. "firstTag":"运行参数",
  3439. "secondTag":"畸变率",
  3440. "infoPointName":"15阶谐波A相电流畸变率",
  3441. "infoPointCode":"15APhaseIHD",
  3442. "unit":"%",
  3443. "dataType":"Inst",
  3444. "inputMode":"L",
  3445. "dataSource":"",
  3446. "note":"",
  3447. "func-id":""
  3448. },
  3449. {
  3450. "firstTag":"运行参数",
  3451. "secondTag":"畸变率",
  3452. "infoPointName":"15阶谐波B相电流畸变率",
  3453. "infoPointCode":"15BPhaseIHD",
  3454. "unit":"%",
  3455. "dataType":"Inst",
  3456. "inputMode":"L",
  3457. "dataSource":"",
  3458. "note":"",
  3459. "func-id":""
  3460. },
  3461. {
  3462. "firstTag":"运行参数",
  3463. "secondTag":"畸变率",
  3464. "infoPointName":"15阶谐波C相电流畸变率",
  3465. "infoPointCode":"15CPhaseIHD",
  3466. "unit":"%",
  3467. "dataType":"Inst",
  3468. "inputMode":"L",
  3469. "dataSource":"",
  3470. "note":"",
  3471. "func-id":""
  3472. },
  3473. {
  3474. "firstTag":"运行参数",
  3475. "secondTag":"畸变率",
  3476. "infoPointName":"17阶谐波A相电压畸变率",
  3477. "infoPointCode":"17APhaseUHD",
  3478. "unit":"%",
  3479. "dataType":"Inst",
  3480. "inputMode":"L",
  3481. "dataSource":"",
  3482. "note":"",
  3483. "func-id":""
  3484. },
  3485. {
  3486. "firstTag":"运行参数",
  3487. "secondTag":"畸变率",
  3488. "infoPointName":"17阶谐波B相电压畸变率",
  3489. "infoPointCode":"17BPhaseUHD",
  3490. "unit":"%",
  3491. "dataType":"Inst",
  3492. "inputMode":"L",
  3493. "dataSource":"",
  3494. "note":"",
  3495. "func-id":""
  3496. },
  3497. {
  3498. "firstTag":"运行参数",
  3499. "secondTag":"畸变率",
  3500. "infoPointName":"17阶谐波C相电压畸变率",
  3501. "infoPointCode":"17CPhaseUHD",
  3502. "unit":"%",
  3503. "dataType":"Inst",
  3504. "inputMode":"L",
  3505. "dataSource":"",
  3506. "note":"",
  3507. "func-id":""
  3508. },
  3509. {
  3510. "firstTag":"运行参数",
  3511. "secondTag":"畸变率",
  3512. "infoPointName":"17阶谐波A相电流畸变率",
  3513. "infoPointCode":"17APhaseIHD",
  3514. "unit":"%",
  3515. "dataType":"Inst",
  3516. "inputMode":"L",
  3517. "dataSource":"",
  3518. "note":"",
  3519. "func-id":""
  3520. },
  3521. {
  3522. "firstTag":"运行参数",
  3523. "secondTag":"畸变率",
  3524. "infoPointName":"17阶谐波B相电流畸变率",
  3525. "infoPointCode":"17BPhaseIHD",
  3526. "unit":"%",
  3527. "dataType":"Inst",
  3528. "inputMode":"L",
  3529. "dataSource":"",
  3530. "note":"",
  3531. "func-id":""
  3532. },
  3533. {
  3534. "firstTag":"运行参数",
  3535. "secondTag":"畸变率",
  3536. "infoPointName":"17阶谐波C相电流畸变率",
  3537. "infoPointCode":"17CPhaseIHD",
  3538. "unit":"%",
  3539. "dataType":"Inst",
  3540. "inputMode":"L",
  3541. "dataSource":"",
  3542. "note":"",
  3543. "func-id":""
  3544. },
  3545. {
  3546. "firstTag":"运行参数",
  3547. "secondTag":"畸变率",
  3548. "infoPointName":"19阶谐波A相电压畸变率",
  3549. "infoPointCode":"19APhaseUHD",
  3550. "unit":"%",
  3551. "dataType":"Inst",
  3552. "inputMode":"L",
  3553. "dataSource":"",
  3554. "note":"",
  3555. "func-id":""
  3556. },
  3557. {
  3558. "firstTag":"运行参数",
  3559. "secondTag":"畸变率",
  3560. "infoPointName":"19阶谐波B相电压畸变率",
  3561. "infoPointCode":"19BPhaseUHD",
  3562. "unit":"%",
  3563. "dataType":"Inst",
  3564. "inputMode":"L",
  3565. "dataSource":"",
  3566. "note":"",
  3567. "func-id":""
  3568. },
  3569. {
  3570. "firstTag":"运行参数",
  3571. "secondTag":"畸变率",
  3572. "infoPointName":"19阶谐波C相电压畸变率",
  3573. "infoPointCode":"19CPhaseUHD",
  3574. "unit":"%",
  3575. "dataType":"Inst",
  3576. "inputMode":"L",
  3577. "dataSource":"",
  3578. "note":"",
  3579. "func-id":""
  3580. },
  3581. {
  3582. "firstTag":"运行参数",
  3583. "secondTag":"畸变率",
  3584. "infoPointName":"19阶谐波A相电流畸变率",
  3585. "infoPointCode":"19APhaseIHD",
  3586. "unit":"%",
  3587. "dataType":"Inst",
  3588. "inputMode":"L",
  3589. "dataSource":"",
  3590. "note":"",
  3591. "func-id":""
  3592. },
  3593. {
  3594. "firstTag":"运行参数",
  3595. "secondTag":"畸变率",
  3596. "infoPointName":"19阶谐波B相电流畸变率",
  3597. "infoPointCode":"19BPhaseIHD",
  3598. "unit":"%",
  3599. "dataType":"Inst",
  3600. "inputMode":"L",
  3601. "dataSource":"",
  3602. "note":"",
  3603. "func-id":""
  3604. },
  3605. {
  3606. "firstTag":"运行参数",
  3607. "secondTag":"畸变率",
  3608. "infoPointName":"19阶谐波C相电流畸变率",
  3609. "infoPointCode":"19CPhaseIHD",
  3610. "unit":"%",
  3611. "dataType":"Inst",
  3612. "inputMode":"L",
  3613. "dataSource":"",
  3614. "note":"",
  3615. "func-id":""
  3616. },
  3617. {
  3618. "firstTag":"运行参数",
  3619. "secondTag":"畸变率",
  3620. "infoPointName":"21阶谐波A相电压畸变率",
  3621. "infoPointCode":"21APhaseUHD",
  3622. "unit":"%",
  3623. "dataType":"Inst",
  3624. "inputMode":"L",
  3625. "dataSource":"",
  3626. "note":"",
  3627. "func-id":""
  3628. },
  3629. {
  3630. "firstTag":"运行参数",
  3631. "secondTag":"畸变率",
  3632. "infoPointName":"21阶谐波B相电压畸变率",
  3633. "infoPointCode":"21BPhaseUHD",
  3634. "unit":"%",
  3635. "dataType":"Inst",
  3636. "inputMode":"L",
  3637. "dataSource":"",
  3638. "note":"",
  3639. "func-id":""
  3640. },
  3641. {
  3642. "firstTag":"运行参数",
  3643. "secondTag":"畸变率",
  3644. "infoPointName":"21阶谐波C相电压畸变率",
  3645. "infoPointCode":"21CPhaseUHD",
  3646. "unit":"%",
  3647. "dataType":"Inst",
  3648. "inputMode":"L",
  3649. "dataSource":"",
  3650. "note":"",
  3651. "func-id":""
  3652. },
  3653. {
  3654. "firstTag":"运行参数",
  3655. "secondTag":"畸变率",
  3656. "infoPointName":"21阶谐波A相电流畸变率",
  3657. "infoPointCode":"21APhaseIHD",
  3658. "unit":"%",
  3659. "dataType":"Inst",
  3660. "inputMode":"L",
  3661. "dataSource":"",
  3662. "note":"",
  3663. "func-id":""
  3664. },
  3665. {
  3666. "firstTag":"运行参数",
  3667. "secondTag":"畸变率",
  3668. "infoPointName":"21阶谐波B相电流畸变率",
  3669. "infoPointCode":"21BPhaseIHD",
  3670. "unit":"%",
  3671. "dataType":"Inst",
  3672. "inputMode":"L",
  3673. "dataSource":"",
  3674. "note":"",
  3675. "func-id":""
  3676. },
  3677. {
  3678. "firstTag":"运行参数",
  3679. "secondTag":"畸变率",
  3680. "infoPointName":"21阶谐波C相电流畸变率",
  3681. "infoPointCode":"21CPhaseIHD",
  3682. "unit":"%",
  3683. "dataType":"Inst",
  3684. "inputMode":"L",
  3685. "dataSource":"",
  3686. "note":"",
  3687. "func-id":""
  3688. },
  3689. {
  3690. "firstTag":"运行参数",
  3691. "secondTag":"畸变率",
  3692. "infoPointName":"23阶谐波A相电压畸变率",
  3693. "infoPointCode":"23APhaseUHD",
  3694. "unit":"%",
  3695. "dataType":"Inst",
  3696. "inputMode":"L",
  3697. "dataSource":"",
  3698. "note":"",
  3699. "func-id":""
  3700. },
  3701. {
  3702. "firstTag":"运行参数",
  3703. "secondTag":"畸变率",
  3704. "infoPointName":"23阶谐波B相电压畸变率",
  3705. "infoPointCode":"23BPhaseUHD",
  3706. "unit":"%",
  3707. "dataType":"Inst",
  3708. "inputMode":"L",
  3709. "dataSource":"",
  3710. "note":"",
  3711. "func-id":""
  3712. },
  3713. {
  3714. "firstTag":"运行参数",
  3715. "secondTag":"畸变率",
  3716. "infoPointName":"23阶谐波C相电压畸变率",
  3717. "infoPointCode":"23CPhaseUHD",
  3718. "unit":"%",
  3719. "dataType":"Inst",
  3720. "inputMode":"L",
  3721. "dataSource":"",
  3722. "note":"",
  3723. "func-id":""
  3724. },
  3725. {
  3726. "firstTag":"运行参数",
  3727. "secondTag":"畸变率",
  3728. "infoPointName":"23阶谐波A相电流畸变率",
  3729. "infoPointCode":"23APhaseIHD",
  3730. "unit":"%",
  3731. "dataType":"Inst",
  3732. "inputMode":"L",
  3733. "dataSource":"",
  3734. "note":"",
  3735. "func-id":""
  3736. },
  3737. {
  3738. "firstTag":"运行参数",
  3739. "secondTag":"畸变率",
  3740. "infoPointName":"23阶谐波B相电流畸变率",
  3741. "infoPointCode":"23BPhaseIHD",
  3742. "unit":"%",
  3743. "dataType":"Inst",
  3744. "inputMode":"L",
  3745. "dataSource":"",
  3746. "note":"",
  3747. "func-id":""
  3748. },
  3749. {
  3750. "firstTag":"运行参数",
  3751. "secondTag":"畸变率",
  3752. "infoPointName":"23阶谐波C相电流畸变率",
  3753. "infoPointCode":"23CPhaseIHD",
  3754. "unit":"%",
  3755. "dataType":"Inst",
  3756. "inputMode":"L",
  3757. "dataSource":"",
  3758. "note":"",
  3759. "func-id":""
  3760. },
  3761. {
  3762. "firstTag":"运行参数",
  3763. "secondTag":"畸变率",
  3764. "infoPointName":"25阶谐波A相电压畸变率",
  3765. "infoPointCode":"25APhaseUHD",
  3766. "unit":"%",
  3767. "dataType":"Inst",
  3768. "inputMode":"L",
  3769. "dataSource":"",
  3770. "note":"",
  3771. "func-id":""
  3772. },
  3773. {
  3774. "firstTag":"运行参数",
  3775. "secondTag":"畸变率",
  3776. "infoPointName":"25阶谐波B相电压畸变率",
  3777. "infoPointCode":"25BPhaseUHD",
  3778. "unit":"%",
  3779. "dataType":"Inst",
  3780. "inputMode":"L",
  3781. "dataSource":"",
  3782. "note":"",
  3783. "func-id":""
  3784. },
  3785. {
  3786. "firstTag":"运行参数",
  3787. "secondTag":"畸变率",
  3788. "infoPointName":"25阶谐波C相电压畸变率",
  3789. "infoPointCode":"25CPhaseUHD",
  3790. "unit":"%",
  3791. "dataType":"Inst",
  3792. "inputMode":"L",
  3793. "dataSource":"",
  3794. "note":"",
  3795. "func-id":""
  3796. },
  3797. {
  3798. "firstTag":"运行参数",
  3799. "secondTag":"畸变率",
  3800. "infoPointName":"25阶谐波A相电流畸变率",
  3801. "infoPointCode":"25APhaseIHD",
  3802. "unit":"%",
  3803. "dataType":"Inst",
  3804. "inputMode":"L",
  3805. "dataSource":"",
  3806. "note":"",
  3807. "func-id":""
  3808. },
  3809. {
  3810. "firstTag":"运行参数",
  3811. "secondTag":"畸变率",
  3812. "infoPointName":"25阶谐波B相电流畸变率",
  3813. "infoPointCode":"25BPhaseIHD",
  3814. "unit":"%",
  3815. "dataType":"Inst",
  3816. "inputMode":"L",
  3817. "dataSource":"",
  3818. "note":"",
  3819. "func-id":""
  3820. },
  3821. {
  3822. "firstTag":"运行参数",
  3823. "secondTag":"畸变率",
  3824. "infoPointName":"25阶谐波C相电流畸变率",
  3825. "infoPointCode":"25CPhaseIHD",
  3826. "unit":"%",
  3827. "dataType":"Inst",
  3828. "inputMode":"L",
  3829. "dataSource":"",
  3830. "note":"",
  3831. "func-id":""
  3832. },
  3833. {
  3834. "firstTag":"运行参数",
  3835. "secondTag":"畸变率",
  3836. "infoPointName":"27阶谐波A相电压畸变率",
  3837. "infoPointCode":"27APhaseUHD",
  3838. "unit":"%",
  3839. "dataType":"Inst",
  3840. "inputMode":"L",
  3841. "dataSource":"",
  3842. "note":"",
  3843. "func-id":""
  3844. },
  3845. {
  3846. "firstTag":"运行参数",
  3847. "secondTag":"畸变率",
  3848. "infoPointName":"27阶谐波B相电压畸变率",
  3849. "infoPointCode":"27BPhaseUHD",
  3850. "unit":"%",
  3851. "dataType":"Inst",
  3852. "inputMode":"L",
  3853. "dataSource":"",
  3854. "note":"",
  3855. "func-id":""
  3856. },
  3857. {
  3858. "firstTag":"运行参数",
  3859. "secondTag":"畸变率",
  3860. "infoPointName":"27阶谐波C相电压畸变率",
  3861. "infoPointCode":"27CPhaseUHD",
  3862. "unit":"%",
  3863. "dataType":"Inst",
  3864. "inputMode":"L",
  3865. "dataSource":"",
  3866. "note":"",
  3867. "func-id":""
  3868. },
  3869. {
  3870. "firstTag":"运行参数",
  3871. "secondTag":"畸变率",
  3872. "infoPointName":"27阶谐波A相电流畸变率",
  3873. "infoPointCode":"27APhaseIHD",
  3874. "unit":"%",
  3875. "dataType":"Inst",
  3876. "inputMode":"L",
  3877. "dataSource":"",
  3878. "note":"",
  3879. "func-id":""
  3880. },
  3881. {
  3882. "firstTag":"运行参数",
  3883. "secondTag":"畸变率",
  3884. "infoPointName":"27阶谐波B相电流畸变率",
  3885. "infoPointCode":"27BPhaseIHD",
  3886. "unit":"%",
  3887. "dataType":"Inst",
  3888. "inputMode":"L",
  3889. "dataSource":"",
  3890. "note":"",
  3891. "func-id":""
  3892. },
  3893. {
  3894. "firstTag":"运行参数",
  3895. "secondTag":"畸变率",
  3896. "infoPointName":"27阶谐波C相电流畸变率",
  3897. "infoPointCode":"27CPhaseIHD",
  3898. "unit":"%",
  3899. "dataType":"Inst",
  3900. "inputMode":"L",
  3901. "dataSource":"",
  3902. "note":"",
  3903. "func-id":""
  3904. },
  3905. {
  3906. "firstTag":"运行参数",
  3907. "secondTag":"畸变率",
  3908. "infoPointName":"29阶谐波A相电压畸变率",
  3909. "infoPointCode":"29APhaseUHD",
  3910. "unit":"%",
  3911. "dataType":"Inst",
  3912. "inputMode":"L",
  3913. "dataSource":"",
  3914. "note":"",
  3915. "func-id":""
  3916. },
  3917. {
  3918. "firstTag":"运行参数",
  3919. "secondTag":"畸变率",
  3920. "infoPointName":"29阶谐波B相电压畸变率",
  3921. "infoPointCode":"29BPhaseUHD",
  3922. "unit":"%",
  3923. "dataType":"Inst",
  3924. "inputMode":"L",
  3925. "dataSource":"",
  3926. "note":"",
  3927. "func-id":""
  3928. },
  3929. {
  3930. "firstTag":"运行参数",
  3931. "secondTag":"畸变率",
  3932. "infoPointName":"29阶谐波C相电压畸变率",
  3933. "infoPointCode":"29CPhaseUHD",
  3934. "unit":"%",
  3935. "dataType":"Inst",
  3936. "inputMode":"L",
  3937. "dataSource":"",
  3938. "note":"",
  3939. "func-id":""
  3940. },
  3941. {
  3942. "firstTag":"运行参数",
  3943. "secondTag":"畸变率",
  3944. "infoPointName":"29阶谐波A相电流畸变率",
  3945. "infoPointCode":"29APhaseIHD",
  3946. "unit":"%",
  3947. "dataType":"Inst",
  3948. "inputMode":"L",
  3949. "dataSource":"",
  3950. "note":"",
  3951. "func-id":""
  3952. },
  3953. {
  3954. "firstTag":"运行参数",
  3955. "secondTag":"畸变率",
  3956. "infoPointName":"29阶谐波B相电流畸变率",
  3957. "infoPointCode":"29BPhaseIHD",
  3958. "unit":"%",
  3959. "dataType":"Inst",
  3960. "inputMode":"L",
  3961. "dataSource":"",
  3962. "note":"",
  3963. "func-id":""
  3964. },
  3965. {
  3966. "firstTag":"运行参数",
  3967. "secondTag":"畸变率",
  3968. "infoPointName":"29阶谐波C相电流畸变率",
  3969. "infoPointCode":"29CPhaseIHD",
  3970. "unit":"%",
  3971. "dataType":"Inst",
  3972. "inputMode":"L",
  3973. "dataSource":"",
  3974. "note":"",
  3975. "func-id":""
  3976. },
  3977. {
  3978. "firstTag":"运行参数",
  3979. "secondTag":"畸变率",
  3980. "infoPointName":"31阶谐波A相电压畸变率",
  3981. "infoPointCode":"31APhaseUHD",
  3982. "unit":"%",
  3983. "dataType":"Inst",
  3984. "inputMode":"L",
  3985. "dataSource":"",
  3986. "note":"",
  3987. "func-id":""
  3988. },
  3989. {
  3990. "firstTag":"运行参数",
  3991. "secondTag":"畸变率",
  3992. "infoPointName":"31阶谐波B相电压畸变率",
  3993. "infoPointCode":"31BPhaseUHD",
  3994. "unit":"%",
  3995. "dataType":"Inst",
  3996. "inputMode":"L",
  3997. "dataSource":"",
  3998. "note":"",
  3999. "func-id":""
  4000. },
  4001. {
  4002. "firstTag":"运行参数",
  4003. "secondTag":"畸变率",
  4004. "infoPointName":"31阶谐波C相电压畸变率",
  4005. "infoPointCode":"31CPhaseUHD",
  4006. "unit":"%",
  4007. "dataType":"Inst",
  4008. "inputMode":"L",
  4009. "dataSource":"",
  4010. "note":"",
  4011. "func-id":""
  4012. },
  4013. {
  4014. "firstTag":"运行参数",
  4015. "secondTag":"畸变率",
  4016. "infoPointName":"31阶谐波A相电流畸变率",
  4017. "infoPointCode":"31APhaseIHD",
  4018. "unit":"%",
  4019. "dataType":"Inst",
  4020. "inputMode":"L",
  4021. "dataSource":"",
  4022. "note":"",
  4023. "func-id":""
  4024. },
  4025. {
  4026. "firstTag":"运行参数",
  4027. "secondTag":"畸变率",
  4028. "infoPointName":"31阶谐波B相电流畸变率",
  4029. "infoPointCode":"31BPhaseIHD",
  4030. "unit":"%",
  4031. "dataType":"Inst",
  4032. "inputMode":"L",
  4033. "dataSource":"",
  4034. "note":"",
  4035. "func-id":""
  4036. },
  4037. {
  4038. "firstTag":"运行参数",
  4039. "secondTag":"畸变率",
  4040. "infoPointName":"31阶谐波C相电流畸变率",
  4041. "infoPointCode":"31CPhaseIHD",
  4042. "unit":"%",
  4043. "dataType":"Inst",
  4044. "inputMode":"L",
  4045. "dataSource":"",
  4046. "note":"",
  4047. "func-id":""
  4048. },
  4049. {
  4050. "firstTag":"运行参数",
  4051. "secondTag":"畸变率",
  4052. "infoPointName":"33阶谐波A相电压畸变率",
  4053. "infoPointCode":"33APhaseUHD",
  4054. "unit":"%",
  4055. "dataType":"Inst",
  4056. "inputMode":"L",
  4057. "dataSource":"",
  4058. "note":"",
  4059. "func-id":""
  4060. },
  4061. {
  4062. "firstTag":"运行参数",
  4063. "secondTag":"畸变率",
  4064. "infoPointName":"33阶谐波B相电压畸变率",
  4065. "infoPointCode":"33BPhaseUHD",
  4066. "unit":"%",
  4067. "dataType":"Inst",
  4068. "inputMode":"L",
  4069. "dataSource":"",
  4070. "note":"",
  4071. "func-id":""
  4072. },
  4073. {
  4074. "firstTag":"运行参数",
  4075. "secondTag":"畸变率",
  4076. "infoPointName":"33阶谐波C相电压畸变率",
  4077. "infoPointCode":"33CPhaseUHD",
  4078. "unit":"%",
  4079. "dataType":"Inst",
  4080. "inputMode":"L",
  4081. "dataSource":"",
  4082. "note":"",
  4083. "func-id":""
  4084. },
  4085. {
  4086. "firstTag":"运行参数",
  4087. "secondTag":"畸变率",
  4088. "infoPointName":"33阶谐波A相电流畸变率",
  4089. "infoPointCode":"33APhaseIHD",
  4090. "unit":"%",
  4091. "dataType":"Inst",
  4092. "inputMode":"L",
  4093. "dataSource":"",
  4094. "note":"",
  4095. "func-id":""
  4096. },
  4097. {
  4098. "firstTag":"运行参数",
  4099. "secondTag":"畸变率",
  4100. "infoPointName":"33阶谐波B相电流畸变率",
  4101. "infoPointCode":"33BPhaseIHD",
  4102. "unit":"%",
  4103. "dataType":"Inst",
  4104. "inputMode":"L",
  4105. "dataSource":"",
  4106. "note":"",
  4107. "func-id":""
  4108. },
  4109. {
  4110. "firstTag":"运行参数",
  4111. "secondTag":"畸变率",
  4112. "infoPointName":"33阶谐波C相电流畸变率",
  4113. "infoPointCode":"33CPhaseIHD",
  4114. "unit":"%",
  4115. "dataType":"Inst",
  4116. "inputMode":"L",
  4117. "dataSource":"",
  4118. "note":"",
  4119. "func-id":""
  4120. },
  4121. {
  4122. "firstTag":"运行参数",
  4123. "secondTag":"畸变率",
  4124. "infoPointName":"35阶谐波A相电压畸变率",
  4125. "infoPointCode":"35APhaseUHD",
  4126. "unit":"%",
  4127. "dataType":"Inst",
  4128. "inputMode":"L",
  4129. "dataSource":"",
  4130. "note":"",
  4131. "func-id":""
  4132. },
  4133. {
  4134. "firstTag":"运行参数",
  4135. "secondTag":"畸变率",
  4136. "infoPointName":"35阶谐波B相电压畸变率",
  4137. "infoPointCode":"35BPhaseUHD",
  4138. "unit":"%",
  4139. "dataType":"Inst",
  4140. "inputMode":"L",
  4141. "dataSource":"",
  4142. "note":"",
  4143. "func-id":""
  4144. },
  4145. {
  4146. "firstTag":"运行参数",
  4147. "secondTag":"畸变率",
  4148. "infoPointName":"35阶谐波C相电压畸变率",
  4149. "infoPointCode":"35CPhaseUHD",
  4150. "unit":"%",
  4151. "dataType":"Inst",
  4152. "inputMode":"L",
  4153. "dataSource":"",
  4154. "note":"",
  4155. "func-id":""
  4156. },
  4157. {
  4158. "firstTag":"运行参数",
  4159. "secondTag":"畸变率",
  4160. "infoPointName":"35阶谐波A相电流畸变率",
  4161. "infoPointCode":"35APhaseIHD",
  4162. "unit":"%",
  4163. "dataType":"Inst",
  4164. "inputMode":"L",
  4165. "dataSource":"",
  4166. "note":"",
  4167. "func-id":""
  4168. },
  4169. {
  4170. "firstTag":"运行参数",
  4171. "secondTag":"畸变率",
  4172. "infoPointName":"35阶谐波B相电流畸变率",
  4173. "infoPointCode":"35BPhaseIHD",
  4174. "unit":"%",
  4175. "dataType":"Inst",
  4176. "inputMode":"L",
  4177. "dataSource":"",
  4178. "note":"",
  4179. "func-id":""
  4180. },
  4181. {
  4182. "firstTag":"运行参数",
  4183. "secondTag":"畸变率",
  4184. "infoPointName":"35阶谐波C相电流畸变率",
  4185. "infoPointCode":"35CPhaseIHD",
  4186. "unit":"%",
  4187. "dataType":"Inst",
  4188. "inputMode":"L",
  4189. "dataSource":"",
  4190. "note":"",
  4191. "func-id":""
  4192. },
  4193. {
  4194. "firstTag":"运行参数",
  4195. "secondTag":"畸变率",
  4196. "infoPointName":"37阶谐波A相电压畸变率",
  4197. "infoPointCode":"37APhaseUHD",
  4198. "unit":"%",
  4199. "dataType":"Inst",
  4200. "inputMode":"L",
  4201. "dataSource":"",
  4202. "note":"",
  4203. "func-id":""
  4204. },
  4205. {
  4206. "firstTag":"运行参数",
  4207. "secondTag":"畸变率",
  4208. "infoPointName":"37阶谐波B相电压畸变率",
  4209. "infoPointCode":"37BPhaseUHD",
  4210. "unit":"%",
  4211. "dataType":"Inst",
  4212. "inputMode":"L",
  4213. "dataSource":"",
  4214. "note":"",
  4215. "func-id":""
  4216. },
  4217. {
  4218. "firstTag":"运行参数",
  4219. "secondTag":"畸变率",
  4220. "infoPointName":"37阶谐波C相电压畸变率",
  4221. "infoPointCode":"37CPhaseUHD",
  4222. "unit":"%",
  4223. "dataType":"Inst",
  4224. "inputMode":"L",
  4225. "dataSource":"",
  4226. "note":"",
  4227. "func-id":""
  4228. },
  4229. {
  4230. "firstTag":"运行参数",
  4231. "secondTag":"畸变率",
  4232. "infoPointName":"37阶谐波A相电流畸变率",
  4233. "infoPointCode":"37APhaseIHD",
  4234. "unit":"%",
  4235. "dataType":"Inst",
  4236. "inputMode":"L",
  4237. "dataSource":"",
  4238. "note":"",
  4239. "func-id":""
  4240. },
  4241. {
  4242. "firstTag":"运行参数",
  4243. "secondTag":"畸变率",
  4244. "infoPointName":"37阶谐波B相电流畸变率",
  4245. "infoPointCode":"37BPhaseIHD",
  4246. "unit":"%",
  4247. "dataType":"Inst",
  4248. "inputMode":"L",
  4249. "dataSource":"",
  4250. "note":"",
  4251. "func-id":""
  4252. },
  4253. {
  4254. "firstTag":"运行参数",
  4255. "secondTag":"畸变率",
  4256. "infoPointName":"37阶谐波C相电流畸变率",
  4257. "infoPointCode":"37CPhaseIHD",
  4258. "unit":"%",
  4259. "dataType":"Inst",
  4260. "inputMode":"L",
  4261. "dataSource":"",
  4262. "note":"",
  4263. "func-id":""
  4264. },
  4265. {
  4266. "firstTag":"运行参数",
  4267. "secondTag":"畸变率",
  4268. "infoPointName":"39阶谐波A相电压畸变率",
  4269. "infoPointCode":"39APhaseUHD",
  4270. "unit":"%",
  4271. "dataType":"Inst",
  4272. "inputMode":"L",
  4273. "dataSource":"",
  4274. "note":"",
  4275. "func-id":""
  4276. },
  4277. {
  4278. "firstTag":"运行参数",
  4279. "secondTag":"畸变率",
  4280. "infoPointName":"39阶谐波B相电压畸变率",
  4281. "infoPointCode":"39BPhaseUHD",
  4282. "unit":"%",
  4283. "dataType":"Inst",
  4284. "inputMode":"L",
  4285. "dataSource":"",
  4286. "note":"",
  4287. "func-id":""
  4288. },
  4289. {
  4290. "firstTag":"运行参数",
  4291. "secondTag":"畸变率",
  4292. "infoPointName":"39阶谐波C相电压畸变率",
  4293. "infoPointCode":"39CPhaseUHD",
  4294. "unit":"%",
  4295. "dataType":"Inst",
  4296. "inputMode":"L",
  4297. "dataSource":"",
  4298. "note":"",
  4299. "func-id":""
  4300. },
  4301. {
  4302. "firstTag":"运行参数",
  4303. "secondTag":"畸变率",
  4304. "infoPointName":"39阶谐波A相电流畸变率",
  4305. "infoPointCode":"39APhaseIHD",
  4306. "unit":"%",
  4307. "dataType":"Inst",
  4308. "inputMode":"L",
  4309. "dataSource":"",
  4310. "note":"",
  4311. "func-id":""
  4312. },
  4313. {
  4314. "firstTag":"运行参数",
  4315. "secondTag":"畸变率",
  4316. "infoPointName":"39阶谐波B相电流畸变率",
  4317. "infoPointCode":"39BPhaseIHD",
  4318. "unit":"%",
  4319. "dataType":"Inst",
  4320. "inputMode":"L",
  4321. "dataSource":"",
  4322. "note":"",
  4323. "func-id":""
  4324. },
  4325. {
  4326. "firstTag":"运行参数",
  4327. "secondTag":"畸变率",
  4328. "infoPointName":"39阶谐波C相电流畸变率",
  4329. "infoPointCode":"39CPhaseIHD",
  4330. "unit":"%",
  4331. "dataType":"Inst",
  4332. "inputMode":"L",
  4333. "dataSource":"",
  4334. "note":"",
  4335. "func-id":""
  4336. },
  4337. {
  4338. "firstTag":"运行参数",
  4339. "secondTag":"关键指标",
  4340. "infoPointName":"负载负荷率",
  4341. "infoPointCode":"LoadRate",
  4342. "unit":"%",
  4343. "dataType":"Inst",
  4344. "inputMode":"M",
  4345. "dataSource":"",
  4346. "note":"",
  4347. "func-id":""
  4348. },
  4349. {
  4350. "firstTag":"运行参数",
  4351. "secondTag":"关键指标",
  4352. "infoPointName":"配电容量负荷率",
  4353. "infoPointCode":"CapRate",
  4354. "unit":"%",
  4355. "dataType":"Inst",
  4356. "inputMode":"M",
  4357. "dataSource":"",
  4358. "note":"",
  4359. "func-id":""
  4360. },
  4361. {
  4362. "firstTag":"运行参数",
  4363. "secondTag":"关键指标",
  4364. "infoPointName":"三相不平衡电压",
  4365. "infoPointCode":"3PhaseUnbalancedU",
  4366. "unit":"V",
  4367. "dataType":"Inst",
  4368. "inputMode":"M",
  4369. "dataSource":"",
  4370. "note":"",
  4371. "func-id":""
  4372. },
  4373. {
  4374. "firstTag":"运行参数",
  4375. "secondTag":"关键指标",
  4376. "infoPointName":"三线不平衡电压",
  4377. "infoPointCode":"3LineUnbalancedU",
  4378. "unit":"V",
  4379. "dataType":"Inst",
  4380. "inputMode":"M",
  4381. "dataSource":"",
  4382. "note":"",
  4383. "func-id":""
  4384. },
  4385. {
  4386. "firstTag":"运行参数",
  4387. "secondTag":"关键指标",
  4388. "infoPointName":"三相不平衡电流",
  4389. "infoPointCode":"3PhaseUnbalancedI",
  4390. "unit":"A",
  4391. "dataType":"Inst",
  4392. "inputMode":"M",
  4393. "dataSource":"",
  4394. "note":"",
  4395. "func-id":""
  4396. },
  4397. {
  4398. "firstTag":"运行参数",
  4399. "secondTag":"关键指标",
  4400. "infoPointName":"最大不平衡线电压",
  4401. "infoPointCode":"MaxUnbalanceLineU",
  4402. "unit":"V",
  4403. "dataType":"Inst",
  4404. "inputMode":"M",
  4405. "dataSource":"",
  4406. "note":"",
  4407. "func-id":""
  4408. },
  4409. {
  4410. "firstTag":"运行参数",
  4411. "secondTag":"关键指标",
  4412. "infoPointName":"最大不平衡相电压",
  4413. "infoPointCode":"MaxUnbalancePhaseU",
  4414. "unit":"V",
  4415. "dataType":"Inst",
  4416. "inputMode":"M",
  4417. "dataSource":"",
  4418. "note":"",
  4419. "func-id":""
  4420. },
  4421. {
  4422. "firstTag":"运行参数",
  4423. "secondTag":"关键指标",
  4424. "infoPointName":"最大不平衡电流",
  4425. "infoPointCode":"MaxUnbalanceI",
  4426. "unit":"A",
  4427. "dataType":"Inst",
  4428. "inputMode":"M",
  4429. "dataSource":"",
  4430. "note":"",
  4431. "func-id":""
  4432. },
  4433. {
  4434. "firstTag":"运行参数",
  4435. "secondTag":"关键指标",
  4436. "infoPointName":"电压不平衡度",
  4437. "infoPointCode":"UUnbalanceRate",
  4438. "unit":"%",
  4439. "dataType":"Inst",
  4440. "inputMode":"M",
  4441. "dataSource":"",
  4442. "note":"",
  4443. "func-id":""
  4444. },
  4445. {
  4446. "firstTag":"运行参数",
  4447. "secondTag":"关键指标",
  4448. "infoPointName":"电流不平衡度",
  4449. "infoPointCode":"IUnbalanceRate",
  4450. "unit":"%",
  4451. "dataType":"Inst",
  4452. "inputMode":"M",
  4453. "dataSource":"",
  4454. "note":"",
  4455. "func-id":""
  4456. },
  4457. {
  4458. "firstTag":"运行参数",
  4459. "secondTag":"关键指标",
  4460. "infoPointName":"A相电压偏差",
  4461. "infoPointCode":"APhaseUDeviation",
  4462. "unit":"%",
  4463. "dataType":"Inst",
  4464. "inputMode":"M",
  4465. "dataSource":"",
  4466. "note":"",
  4467. "func-id":""
  4468. },
  4469. {
  4470. "firstTag":"运行参数",
  4471. "secondTag":"关键指标",
  4472. "infoPointName":"B相电压偏差",
  4473. "infoPointCode":"BPhaseUDeviation",
  4474. "unit":"%",
  4475. "dataType":"Inst",
  4476. "inputMode":"M",
  4477. "dataSource":"",
  4478. "note":"",
  4479. "func-id":""
  4480. },
  4481. {
  4482. "firstTag":"运行参数",
  4483. "secondTag":"关键指标",
  4484. "infoPointName":"C相电压偏差",
  4485. "infoPointCode":"CPhaseUDeviation",
  4486. "unit":"%",
  4487. "dataType":"Inst",
  4488. "inputMode":"M",
  4489. "dataSource":"",
  4490. "note":"",
  4491. "func-id":""
  4492. },
  4493. {
  4494. "firstTag":"运行参数",
  4495. "secondTag":"关键指标",
  4496. "infoPointName":"ab线电压偏差",
  4497. "infoPointCode":"LineabUDeviation",
  4498. "unit":"%",
  4499. "dataType":"Inst",
  4500. "inputMode":"M",
  4501. "dataSource":"",
  4502. "note":"",
  4503. "func-id":""
  4504. },
  4505. {
  4506. "firstTag":"运行参数",
  4507. "secondTag":"关键指标",
  4508. "infoPointName":"bc线电压偏差",
  4509. "infoPointCode":"LinebcUDeviation",
  4510. "unit":"%",
  4511. "dataType":"Inst",
  4512. "inputMode":"M",
  4513. "dataSource":"",
  4514. "note":"",
  4515. "func-id":""
  4516. },
  4517. {
  4518. "firstTag":"运行参数",
  4519. "secondTag":"关键指标",
  4520. "infoPointName":"ca线电压偏差",
  4521. "infoPointCode":"LinecaUDeviation",
  4522. "unit":"%",
  4523. "dataType":"Inst",
  4524. "inputMode":"M",
  4525. "dataSource":"",
  4526. "note":"",
  4527. "func-id":""
  4528. },
  4529. {
  4530. "firstTag":"运行参数",
  4531. "secondTag":"关键指标",
  4532. "infoPointName":"频率偏差",
  4533. "infoPointCode":"FreqDeviation",
  4534. "unit":"Hz",
  4535. "dataType":"Inst",
  4536. "inputMode":"M",
  4537. "dataSource":"",
  4538. "note":"",
  4539. "func-id":""
  4540. },
  4541. {
  4542. "firstTag":"运行参数",
  4543. "secondTag":"累计参数",
  4544. "infoPointName":"正向有功电能",
  4545. "infoPointCode":"AccPositiveActiveE",
  4546. "unit":"kWh",
  4547. "dataType":"Acc",
  4548. "inputMode":"M",
  4549. "dataSource":"",
  4550. "note":"",
  4551. "func-id":""
  4552. },
  4553. {
  4554. "firstTag":"运行参数",
  4555. "secondTag":"累计参数",
  4556. "infoPointName":"反向有功电能",
  4557. "infoPointCode":"AccReverseActiveE",
  4558. "unit":"kWh",
  4559. "dataType":"Acc",
  4560. "inputMode":"M",
  4561. "dataSource":"",
  4562. "note":"",
  4563. "func-id":""
  4564. },
  4565. {
  4566. "firstTag":"运行参数",
  4567. "secondTag":"累计参数",
  4568. "infoPointName":"正向无功电能",
  4569. "infoPointCode":"AccPositiveReactiveE",
  4570. "unit":"kVarh",
  4571. "dataType":"Acc",
  4572. "inputMode":"M",
  4573. "dataSource":"",
  4574. "note":"",
  4575. "func-id":""
  4576. },
  4577. {
  4578. "firstTag":"运行参数",
  4579. "secondTag":"累计参数",
  4580. "infoPointName":"反向无功电能",
  4581. "infoPointCode":"AccReverseReactiveE",
  4582. "unit":"kVarh",
  4583. "dataType":"Acc",
  4584. "inputMode":"M",
  4585. "dataSource":"",
  4586. "note":"",
  4587. "func-id":""
  4588. },
  4589. {
  4590. "firstTag":"运行参数",
  4591. "secondTag":"累计参数",
  4592. "infoPointName":"视在电能",
  4593. "infoPointCode":"AccApparentE",
  4594. "unit":"kVAh",
  4595. "dataType":"Acc",
  4596. "inputMode":"M",
  4597. "dataSource":"",
  4598. "note":"",
  4599. "func-id":""
  4600. },
  4601. {
  4602. "firstTag":"运行参数",
  4603. "secondTag":"累计参数",
  4604. "infoPointName":"净累计有功电能",
  4605. "infoPointCode":"NetAccActiveE",
  4606. "unit":"kWh",
  4607. "dataType":"Acc",
  4608. "inputMode":"M",
  4609. "dataSource":"",
  4610. "note":"",
  4611. "func-id":""
  4612. },
  4613. {
  4614. "firstTag":"运行参数",
  4615. "secondTag":"累计参数",
  4616. "infoPointName":"净累计无功电能",
  4617. "infoPointCode":"NetAccReactiveE",
  4618. "unit":"kVarh",
  4619. "dataType":"Acc",
  4620. "inputMode":"M",
  4621. "dataSource":"",
  4622. "note":"",
  4623. "func-id":""
  4624. },
  4625. {
  4626. "firstTag":"运行参数",
  4627. "secondTag":"累计参数",
  4628. "infoPointName":"感性无功电能",
  4629. "infoPointCode":"AccInductiveReactiveE",
  4630. "unit":"kVarh",
  4631. "dataType":"Acc",
  4632. "inputMode":"M",
  4633. "dataSource":"",
  4634. "note":"",
  4635. "func-id":""
  4636. },
  4637. {
  4638. "firstTag":"运行参数",
  4639. "secondTag":"累计参数",
  4640. "infoPointName":"容性无功电能",
  4641. "infoPointCode":"AccCapacitiveReactiveE",
  4642. "unit":"kVarh",
  4643. "dataType":"Acc",
  4644. "inputMode":"M",
  4645. "dataSource":"",
  4646. "note":"",
  4647. "func-id":""
  4648. },
  4649. {
  4650. "firstTag":"运行参数",
  4651. "secondTag":"累计参数",
  4652. "infoPointName":"累计运行时间",
  4653. "infoPointCode":"AccRunTime",
  4654. "unit":"h",
  4655. "dataType":"Acc",
  4656. "inputMode":"M",
  4657. "dataSource":"",
  4658. "note":"",
  4659. "func-id":""
  4660. },
  4661. {
  4662. "firstTag":"运行参数",
  4663. "secondTag":"累计参数",
  4664. "infoPointName":"开启时间计时",
  4665. "infoPointCode":"OpenTimeCount",
  4666. "unit":"h",
  4667. "dataType":"Acc",
  4668. "inputMode":"M",
  4669. "dataSource":"",
  4670. "note":"",
  4671. "func-id":""
  4672. },
  4673. {
  4674. "firstTag":"运行参数",
  4675. "secondTag":"累计参数",
  4676. "infoPointName":"关闭时间计时",
  4677. "infoPointCode":"CloseTimeCount",
  4678. "unit":"h",
  4679. "dataType":"Acc",
  4680. "inputMode":"M",
  4681. "dataSource":"",
  4682. "note":"",
  4683. "func-id":""
  4684. }
  4685. ]
  4686. }