main.data.ts 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. import { BasicColumn } from '/@/components/Table';
  2. import { FormSchema } from '/@/components/Table';
  3. import { rules } from '/@/utils/helper/validator';
  4. import { reactive } from 'vue';
  5. import type { EChartsOption } from 'echarts';
  6. import { useGlobSetting } from '/@/hooks/setting';
  7. import { cloneDeep } from 'lodash-es';
  8. type CtrlLockOpenType = {
  9. CtrlLockOpen: boolean | undefined;
  10. CtrlExplosionVentOpen: boolean | undefined;
  11. };
  12. export type PointMonitorType = {
  13. valueName: string;
  14. valueCode: string;
  15. value: number | string;
  16. warnMin_201: number | string;
  17. warnMin_104: number | string;
  18. readTime: string;
  19. };
  20. export const columns: BasicColumn[] = [
  21. {
  22. title: '名称',
  23. dataIndex: 'strname',
  24. width: 120,
  25. },
  26. {
  27. title: '安装位置',
  28. dataIndex: 'strinstallpos',
  29. width: 100,
  30. },
  31. {
  32. title: '是否为常闭型',
  33. dataIndex: 'bnormalclose',
  34. width: 100,
  35. // customRender: render.renderAvatar,
  36. },
  37. {
  38. title: '净宽',
  39. dataIndex: 'fclearwidth',
  40. width: 80,
  41. },
  42. {
  43. title: '净高',
  44. dataIndex: 'fclearheight',
  45. width: 100,
  46. },
  47. {
  48. title: '风门道数',
  49. dataIndex: 'ndoorcount',
  50. width: 100,
  51. },
  52. {
  53. title: '所属分站',
  54. width: 150,
  55. dataIndex: 'stationname',
  56. },
  57. {
  58. title: '点表',
  59. width: 100,
  60. dataIndex: 'strtype',
  61. },
  62. {
  63. title: '监测类型',
  64. dataIndex: 'monitorflag',
  65. width: 100,
  66. },
  67. {
  68. title: '是否模拟数据',
  69. dataIndex: 'testflag',
  70. width: 100,
  71. },
  72. ];
  73. export const recycleColumns: BasicColumn[] = [
  74. {
  75. title: '名称',
  76. dataIndex: 'strname',
  77. width: 100,
  78. },
  79. {
  80. title: '是否为常闭型',
  81. dataIndex: 'bnormalclose',
  82. width: 100,
  83. },
  84. ];
  85. export const searchFormSchema: FormSchema[] = [
  86. {
  87. label: '名称',
  88. field: 'strname',
  89. component: 'Input',
  90. colProps: { span: 6 },
  91. },
  92. {
  93. label: '安装位置',
  94. field: 'strinstallpos',
  95. component: 'Input',
  96. colProps: { span: 6 },
  97. },
  98. {
  99. label: '是否为常闭型',
  100. field: 'bnormalclose',
  101. component: 'JDictSelectTag',
  102. componentProps: {
  103. dictCode: 'user_status',
  104. placeholder: '请选择读写类型',
  105. stringToNumber: true,
  106. },
  107. colProps: { span: 6 },
  108. },
  109. ];
  110. export const formSchema: FormSchema[] = [
  111. {
  112. label: '',
  113. field: 'id',
  114. component: 'Input',
  115. show: false,
  116. },
  117. {
  118. label: '名称',
  119. field: 'strname',
  120. component: 'Input',
  121. },
  122. {
  123. label: '安装位置',
  124. field: 'strinstallpos',
  125. component: 'Input',
  126. },
  127. {
  128. label: '是否为常闭型',
  129. field: 'bnormalclose',
  130. component: 'RadioGroup',
  131. defaultValue: 1,
  132. componentProps: () => {
  133. return {
  134. options: [
  135. { label: '是', value: 1, key: '1' },
  136. { label: '否', value: 0, key: '2' },
  137. ],
  138. };
  139. },
  140. },
  141. {
  142. label: '净宽',
  143. field: 'fclearwidth',
  144. component: 'Input',
  145. },
  146. {
  147. label: '净高',
  148. field: 'fclearheight',
  149. component: 'Input',
  150. },
  151. {
  152. label: '风门道数',
  153. field: 'ndoorcount',
  154. component: 'Input',
  155. },
  156. {
  157. label: '所属分站',
  158. field: 'stationname',
  159. component: 'JDictSelectTag',
  160. componentProps: {
  161. dictCode: 'user_status',
  162. placeholder: '请选择状态',
  163. stringToNumber: true,
  164. },
  165. },
  166. {
  167. label: '点表',
  168. field: 'strtype',
  169. component: 'JDictSelectTag',
  170. componentProps: {
  171. dictCode: 'user_status',
  172. placeholder: '请选择状态',
  173. stringToNumber: true,
  174. },
  175. },
  176. {
  177. label: '监测类型',
  178. field: 'monitorflag',
  179. component: 'JDictSelectTag',
  180. componentProps: {
  181. dictCode: 'user_status',
  182. placeholder: '请选择状态',
  183. stringToNumber: true,
  184. },
  185. },
  186. {
  187. label: '是否模拟数据',
  188. field: 'testflag',
  189. component: 'RadioGroup',
  190. defaultValue: 1,
  191. componentProps: () => {
  192. return {
  193. options: [
  194. { label: '是', value: 1, key: '1' },
  195. { label: '否', value: 0, key: '2' },
  196. ],
  197. };
  198. },
  199. },
  200. ];
  201. export const tableColumns = [
  202. {
  203. title: '',
  204. dataIndex: 'isCheck',
  205. customCell: (_, index) => {
  206. if (index % 2 == 0) {
  207. return { rowSpan: 2 };
  208. } else {
  209. return { rowSpan: 0 };
  210. }
  211. },
  212. },
  213. {
  214. title: '安装位置',
  215. dataIndex: 'address',
  216. customCell: (_, index) => {
  217. if (index % 2 == 0) {
  218. return { rowSpan: 2 };
  219. } else {
  220. return { rowSpan: 0 };
  221. }
  222. },
  223. },
  224. {
  225. title: '运行风机',
  226. dataIndex: 'childName',
  227. },
  228. {
  229. title: '风机静压(Pa)',
  230. dataIndex: 'yc2',
  231. },
  232. {
  233. title: '风机全压(Pa)',
  234. dataIndex: 'dqPa',
  235. },
  236. {
  237. title: '电机流量(m³/s)',
  238. dataIndex: 'fanM3',
  239. },
  240. {
  241. title: '电机速度(rpm/s)',
  242. dataIndex: 'fanSD',
  243. },
  244. {
  245. title: '电机电压(V)',
  246. dataIndex: 'fanU',
  247. },
  248. {
  249. title: '电机电流(A)',
  250. dataIndex: 'fanA',
  251. },
  252. {
  253. title: '电机频率(Hz/s)',
  254. dataIndex: 'fanPL',
  255. },
  256. {
  257. title: '电机功率(KW/s)',
  258. dataIndex: 'fanGL',
  259. },
  260. {
  261. title: '振动X1(mm/s)',
  262. dataIndex: 'zdX1',
  263. },
  264. {
  265. title: '振动Y1(mm/s)',
  266. dataIndex: 'zdY1',
  267. },
  268. ];
  269. export const dataColumns = () => {
  270. return [
  271. {
  272. id: 'UXC',
  273. name: '电机轴温设定(℃)',
  274. id2: 'bearingFront2_F1',
  275. },
  276. { id: 'VXC', name: '电机定温设定(℃)', id2: 'bearingBack2_F1' },
  277. {
  278. id: 'WXC',
  279. name: '电机前轴温度(℃)',
  280. id2: 'stator2A_F1',
  281. },
  282. {
  283. id: 'QZC',
  284. name: '电机后轴温度(℃)',
  285. id2: 'stator2B_F1',
  286. },
  287. { id: 'ZCZ1C', name: '电机定子1温度(℃)', id2: 'fIA2_F1' },
  288. { id: 'ZCZ2C', name: '电机定子2温度(℃)', id2: 'fIB2_F1' },
  289. { id: 'FTZ1C', name: '电机定3温度(℃)', id2: 'fIC2_F1' },
  290. ];
  291. };
  292. export const stateColumns = () => {
  293. return [
  294. // {
  295. // id: 'lubeBoxTemperatureF1High',
  296. // name: '润滑站油箱油温高报警',
  297. // flag: false,
  298. // },
  299. {
  300. id: 'lubeBoxTemperatureF1Low',
  301. name: '润滑站1油箱油温低报警',
  302. flag: true,
  303. },
  304. {
  305. id: 'lubeTemperatureF1High',
  306. name: '润滑站1供油油温高报警',
  307. flag: true,
  308. },
  309. // {
  310. // id: 'lubeTemperatureF1Low',
  311. // name: '润滑站1供油油温低报警',
  312. // flag: false,
  313. // },
  314. { id: 'lubePaF1High', name: '润滑站1供油油压高报警', flag: true },
  315. { id: 'lubePaF1Low', name: '润滑站1供油油压低报警', flag: true },
  316. // { id: "ch4_F1High", name: "瓦斯值1高报警", flag: false },
  317. { id: 'singleDoorF1Warn', name: '侧开风门单模报警', flag: true },
  318. { id: 'lubeF1SlightFault', name: '稀油润滑站轻故障', flag: true },
  319. { id: 'lubeF1SevereFault', name: '稀油润滑站重故障', flag: true },
  320. { id: 'f1B1Fault', name: '变频器1故障', flag: true },
  321. { id: 'f1B2Fault', name: '变频器2故障', flag: true },
  322. { id: 'f1Fault', name: '通风机故障', flag: true },
  323. ];
  324. };
  325. export const faultDeviceHeader = [
  326. {
  327. title: '测点名称',
  328. code: 'valueName',
  329. width: '200px',
  330. },
  331. {
  332. title: '实时数据',
  333. code: 'value',
  334. width: '110px',
  335. },
  336. {
  337. title: '预警限值',
  338. code: 'warnMin_104',
  339. width: '110px',
  340. },
  341. {
  342. title: '报警限值',
  343. code: 'warnMin_201',
  344. width: '110px',
  345. },
  346. ];
  347. export const rightFaultDeviceColumns = [
  348. {
  349. title: '中端X',
  350. dataIndex: 'Fault_cd_ZX', // 测点名称
  351. width: 120,
  352. },
  353. {
  354. title: '中端X',
  355. dataIndex: 'Fault_ZX_val', // 中端X实时监测值
  356. width: 120,
  357. },
  358. ];
  359. export const modalTypeArr = {
  360. centerBtnArr: [
  361. {
  362. key: 'startSmoke',
  363. value: '一键启动/停止',
  364. permission: 'fan:startSmoke',
  365. },
  366. {
  367. key: 'startFan',
  368. value: '一键启动/停止',
  369. permission: 'fan:startFan',
  370. },
  371. {
  372. key: 'startFan',
  373. value: '一键启动/停止',
  374. permission: 'fan:startAndResetFan',
  375. },
  376. {
  377. key: 'resetFan',
  378. value: '一键复位',
  379. permission: 'fan:resetFan',
  380. },
  381. {
  382. key: 'changeSmoke',
  383. value: '不停风倒机',
  384. permission: 'fan:changeSmoke',
  385. },
  386. {
  387. key: 'changeDirection',
  388. value: '一键反风',
  389. permission: 'fan:changeDirection',
  390. },
  391. {
  392. key: 'frequency',
  393. value: '一键调频',
  394. permission: 'fan:frequency',
  395. },
  396. {
  397. key: 'fbm',
  398. value: '防爆门控制',
  399. permission: 'fan:fbm',
  400. },
  401. {
  402. key: 'kkjc',
  403. value: '工况辅助决策',
  404. permission: 'fan:kkjc',
  405. },
  406. {
  407. key: 'zhlk',
  408. value: '自主联控',
  409. permission: 'fan:zhlk',
  410. },
  411. ],
  412. };
  413. export const fbmControlData = <CtrlLockOpenType>reactive({
  414. CtrlLockOpen: false, // 远程开锁 true 为打开状态, false 为关闭状态
  415. CtrlExplosionVentOpen: false, // 远程开门 true 为打开状态, false 为关闭状态
  416. });
  417. // export const assistanceData = {
  418. // '30': {
  419. // angle: 0,
  420. // Hz: 30.0, //频率
  421. // a: -0.17624, //二次项系数
  422. // b: 34.59747, //一次项系数
  423. // c: 938.98517, //常数项系数
  424. // min: 93.0, //风量下限
  425. // max: 132.0, //风量上限
  426. // },
  427. // '31': {
  428. // angle: 0,
  429. // Hz: 31.0,
  430. // a: -0.17624,
  431. // b: 35.055694,
  432. // c: 851.596922,
  433. // min: 96.1,
  434. // max: 136.4,
  435. // },
  436. // '32': {
  437. // angle: 0,
  438. // Hz: 32.0,
  439. // a: -0.17624,
  440. // b: 35.513918,
  441. // c: 768.749733,
  442. // min: 99.2,
  443. // max: 140.8,
  444. // },
  445. // '33': {
  446. // angle: 0,
  447. // Hz: 33.0,
  448. // a: -0.17624,
  449. // b: 35.972142,
  450. // c: 690.443603,
  451. // min: 102.3,
  452. // max: 145.2,
  453. // },
  454. // '34': {
  455. // angle: 0,
  456. // Hz: 34.0,
  457. // a: -0.17624,
  458. // b: 36.430366,
  459. // c: 616.678531,
  460. // min: 105.4,
  461. // max: 149.6,
  462. // },
  463. // '35': {
  464. // angle: 0,
  465. // Hz: 35.0,
  466. // a: -0.17624,
  467. // b: 36.88859,
  468. // c: 547.454517,
  469. // min: 108.5,
  470. // max: 154.0,
  471. // },
  472. // '36': {
  473. // angle: 0,
  474. // Hz: 36.0,
  475. // a: -0.17624,
  476. // b: 37.346814,
  477. // c: 482.771563,
  478. // min: 111.6,
  479. // max: 158.4,
  480. // },
  481. // '37': {
  482. // angle: 0,
  483. // Hz: 37.0,
  484. // a: -0.17624,
  485. // b: 37.805038,
  486. // c: 422.629667,
  487. // min: 114.7,
  488. // max: 162.8,
  489. // },
  490. // '38': {
  491. // angle: 0,
  492. // Hz: 38.0,
  493. // a: -0.17624,
  494. // b: 38.263262,
  495. // c: 367.028829,
  496. // min: 117.8,
  497. // max: 167.2,
  498. // },
  499. // '39': {
  500. // angle: 0,
  501. // Hz: 39.0,
  502. // a: -0.17624,
  503. // b: 38.721486,
  504. // c: 315.96905,
  505. // min: 120.9,
  506. // max: 171.6,
  507. // },
  508. // '40': {
  509. // angle: 0,
  510. // Hz: 40.0,
  511. // a: -0.17624,
  512. // b: 39.17971,
  513. // c: 269.45033,
  514. // min: 124.0,
  515. // max: 176.0,
  516. // },
  517. // '41': {
  518. // angle: 0,
  519. // Hz: 41.0,
  520. // a: -0.17624,
  521. // b: 39.637934,
  522. // c: 227.472668,
  523. // min: 127.1,
  524. // max: 180.4,
  525. // },
  526. // '42': {
  527. // angle: 0,
  528. // Hz: 42.0,
  529. // a: -0.17624,
  530. // b: 40.096158,
  531. // c: 190.036065,
  532. // min: 130.2,
  533. // max: 184.8,
  534. // },
  535. // '43': {
  536. // angle: 0,
  537. // Hz: 43.0,
  538. // a: -0.17624,
  539. // b: 40.554382,
  540. // c: 157.140521,
  541. // min: 133.3,
  542. // max: 189.2,
  543. // },
  544. // '44': {
  545. // angle: 0,
  546. // Hz: 44.0,
  547. // a: -0.17624,
  548. // b: 41.012606,
  549. // c: 128.786035,
  550. // min: 136.4,
  551. // max: 193.6,
  552. // },
  553. // '45': {
  554. // angle: 0,
  555. // Hz: 45.0,
  556. // a: -0.17624,
  557. // b: 41.47083,
  558. // c: 104.972607,
  559. // min: 139.5,
  560. // max: 198.0,
  561. // },
  562. // '46': {
  563. // angle: 0,
  564. // Hz: 46.0,
  565. // a: -0.17624,
  566. // b: 41.929054,
  567. // c: 85.700239,
  568. // min: 142.6,
  569. // max: 202.4,
  570. // },
  571. // '47': {
  572. // angle: 0,
  573. // Hz: 47.0,
  574. // a: -0.17624,
  575. // b: 42.387278,
  576. // c: 70.968929,
  577. // min: 145.7,
  578. // max: 206.8,
  579. // },
  580. // '48': {
  581. // angle: 0,
  582. // Hz: 48.0,
  583. // a: -0.17624,
  584. // b: 42.845502,
  585. // c: 60.778677,
  586. // min: 148.8,
  587. // max: 211.2,
  588. // },
  589. // '49': {
  590. // angle: 0,
  591. // Hz: 49.0,
  592. // a: -0.17624,
  593. // b: 43.303726,
  594. // c: 55.129484,
  595. // min: 151.9,
  596. // max: 215.6,
  597. // },
  598. // '50': {
  599. // angle: 0,
  600. // Hz: 50.0,
  601. // a: -0.17624,
  602. // b: 43.76195,
  603. // c: 54.02135,
  604. // min: 155.0,
  605. // max: 220.0,
  606. // },
  607. // };
  608. export const assistanceData = {
  609. '30': {
  610. angle: 0,
  611. Hz: 30.0, //频率
  612. a: -0.17624, //二次项系数
  613. b: 43.40947, //一次项系数
  614. c: 97.60705999999982, //常数项系数
  615. min: 93.0, //风量下限
  616. max: 132.0, //风量上限
  617. },
  618. '31': {
  619. angle: 0,
  620. Hz: 31.0,
  621. a: -0.17624,
  622. b: 43.427094,
  623. c: 95.43614590000016,
  624. min: 96.1,
  625. max: 136.4,
  626. },
  627. '32': {
  628. angle: 0,
  629. Hz: 32.0,
  630. a: -0.17624,
  631. b: 43.444718,
  632. c: 93.26435059999994,
  633. min: 99.2,
  634. max: 140.8,
  635. },
  636. '33': {
  637. angle: 0,
  638. Hz: 33.0,
  639. a: -0.17624,
  640. b: 43.462342,
  641. c: 91.09167409999964,
  642. min: 102.3,
  643. max: 145.2,
  644. },
  645. '34': {
  646. angle: 0,
  647. Hz: 34.0,
  648. a: -0.17624,
  649. b: 43.479966000000005,
  650. c: 88.91811639999969,
  651. min: 105.4,
  652. max: 149.6,
  653. },
  654. '35': {
  655. angle: 0,
  656. Hz: 35.0,
  657. a: -0.17624,
  658. b: 43.49759,
  659. c: 86.74367749999965,
  660. min: 108.5,
  661. max: 154.0,
  662. },
  663. '36': {
  664. angle: 0,
  665. Hz: 36.0,
  666. a: -0.17624,
  667. b: 43.515214,
  668. c: 84.56835739999997,
  669. min: 111.6,
  670. max: 158.4,
  671. },
  672. '37': {
  673. angle: 0,
  674. Hz: 37.0,
  675. a: -0.17624,
  676. b: 43.532838,
  677. c: 82.3921561000002,
  678. min: 114.7,
  679. max: 162.8,
  680. },
  681. '38': {
  682. angle: 0,
  683. Hz: 38.0,
  684. a: -0.17624,
  685. b: 43.550462,
  686. c: 80.21507359999941,
  687. min: 117.8,
  688. max: 167.2,
  689. },
  690. '39': {
  691. angle: 0,
  692. Hz: 39.0,
  693. a: -0.17624,
  694. b: 43.568086,
  695. c: 78.0371098999999,
  696. min: 120.9,
  697. max: 171.6,
  698. },
  699. '40': {
  700. angle: 0,
  701. Hz: 40.0,
  702. a: -0.17624,
  703. b: 43.58571,
  704. c: 75.85826499999985,
  705. min: 124.0,
  706. max: 176.0,
  707. },
  708. '41': {
  709. angle: 0,
  710. Hz: 41.0,
  711. a: -0.17624,
  712. b: 43.603334,
  713. c: 73.67853890000015,
  714. min: 127.1,
  715. max: 180.4,
  716. },
  717. '42': {
  718. angle: 0,
  719. Hz: 42.0,
  720. a: -0.17624,
  721. b: 43.620958,
  722. c: 71.4979315999999,
  723. min: 130.2,
  724. max: 184.8,
  725. },
  726. '43': {
  727. angle: 0,
  728. Hz: 43.0,
  729. a: -0.17624,
  730. b: 43.638582,
  731. c: 69.31644309999956,
  732. min: 133.3,
  733. max: 189.2,
  734. },
  735. '44': {
  736. angle: 0,
  737. Hz: 44.0,
  738. a: -0.17624,
  739. b: 43.656206000000005,
  740. c: 67.13407339999958,
  741. min: 136.4,
  742. max: 193.6,
  743. },
  744. '45': {
  745. angle: 0,
  746. Hz: 45.0,
  747. a: -0.17624,
  748. b: 43.67383,
  749. c: 64.9508224999995,
  750. min: 139.5,
  751. max: 198.0,
  752. },
  753. '46': {
  754. angle: 0,
  755. Hz: 46.0,
  756. a: -0.17624,
  757. b: 43.691454,
  758. c: 62.76669039999979,
  759. min: 142.6,
  760. max: 202.4,
  761. },
  762. '47': {
  763. angle: 0,
  764. Hz: 47.0,
  765. a: -0.17624,
  766. b: 43.709078,
  767. c: 60.58167709999998,
  768. min: 145.7,
  769. max: 206.8,
  770. },
  771. '48': {
  772. angle: 0,
  773. Hz: 48.0,
  774. a: -0.17624,
  775. b: 43.726702,
  776. c: 58.39578259999962,
  777. min: 148.8,
  778. max: 211.2,
  779. },
  780. '49': {
  781. angle: 0,
  782. Hz: 49.0,
  783. a: -0.17624,
  784. b: 43.744326,
  785. c: 56.20900689999962,
  786. min: 151.9,
  787. max: 215.6,
  788. },
  789. '50': {
  790. angle: 0,
  791. Hz: 50.0,
  792. a: -0.17624,
  793. b: 43.76195,
  794. c: 54.021349999999984,
  795. min: 155.0,
  796. max: 220.0,
  797. },
  798. };
  799. export const setOption = (deviceType?) => {
  800. let yMax = 4500;
  801. const { sysOrgCode } = useGlobSetting();
  802. // const sysOrgCode = 'sdmtjthlgmk';
  803. if (sysOrgCode == 'sdmtjtdltmk') {
  804. // 这里判断白家渠还是五当沟
  805. if (deviceType == 'fanmain_bjq') {
  806. yMax = 5500;
  807. } else if (deviceType == 'fanmain_wdg') {
  808. yMax = 1200;
  809. }
  810. } else if (sysOrgCode == 'sdmtjtswmk') {
  811. if (deviceType == 'fanmain_bfj') {
  812. yMax = 5000;
  813. } else if (deviceType == 'fanmain_nfj') {
  814. yMax = 4500;
  815. }
  816. } else if (sysOrgCode == 'sdmtjtbdmk') {
  817. if (deviceType == 'fanmain_ljy') {
  818. yMax = 5000;
  819. } else if (deviceType == 'fanmain_zl') {
  820. yMax = 6000;
  821. }
  822. } else if (sysOrgCode == 'sdmtjtjjmk') {
  823. yMax = 6000;
  824. } else if (sysOrgCode == 'sdmtjtsgtmk') {
  825. yMax = 3000;
  826. } else if (sysOrgCode == 'sdmtjthlgmk') {
  827. yMax = 3000;
  828. } else if (sysOrgCode == 'sdmtjtdltmkhjtj') {
  829. yMax = 3000;
  830. } else if (sysOrgCode == 'sdmtjtcctrk') {
  831. yMax = 600;
  832. } else if (sysOrgCode == 'sdmtjtwlmlmk') {
  833. yMax = 4000;
  834. } else {
  835. yMax = 4500;
  836. }
  837. return reactive<EChartsOption>({
  838. title: {
  839. text: '风机运行工况辅助曲线图',
  840. textStyle: {
  841. color: '#BF954D',
  842. },
  843. left: 'center',
  844. top: 0,
  845. },
  846. // backgroundColor: '#39deff',
  847. tooltip: {
  848. trigger: 'axis',
  849. axisPointer: {
  850. type: 'cross',
  851. label: {
  852. backgroundColor: '#6a7985',
  853. },
  854. },
  855. },
  856. toolbox: {
  857. show: true,
  858. },
  859. grid: {
  860. left: 8,
  861. right: 50,
  862. bottom: 0,
  863. containLabel: true,
  864. },
  865. xAxis: {
  866. type: 'category',
  867. name: 'm³/s',
  868. nameTextStyle: {
  869. fontWeight: 600,
  870. fontSize: 13,
  871. },
  872. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  873. axisLabel: {
  874. margin: 20,
  875. fontSize: 14,
  876. color: '#f1f1f199',
  877. },
  878. boundaryGap: false,
  879. data: [],
  880. },
  881. yAxis: {
  882. type: 'value',
  883. axisLine: {
  884. show: true,
  885. lineStyle: {
  886. color: '#006c9d',
  887. },
  888. },
  889. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  890. axisLabel: {
  891. show: true,
  892. fontSize: 14,
  893. formatter: '{value}',
  894. color: '#0071A5',
  895. },
  896. min: 0,
  897. max: yMax, //武当沟
  898. name: 'Pa',
  899. nameTextStyle: {
  900. fontWeight: 600,
  901. fontSize: 13,
  902. },
  903. },
  904. series: [],
  905. });
  906. };
  907. export const initData1 = () => {
  908. const assistanceData = {
  909. '30': {
  910. angle: 0,
  911. Hz: 30.0, //频率
  912. a: -0.17624, //二次项系数
  913. b: 43.40947, //一次项系数
  914. c: 97.60705999999982, //常数项系数
  915. min: 93.0, //风量下限
  916. max: 171.0, //风量上限
  917. },
  918. '31': {
  919. angle: 0,
  920. Hz: 31.0,
  921. a: -0.17624,
  922. b: 43.427094,
  923. c: 95.43614590000016,
  924. min: 96.1,
  925. max: 174.4,
  926. },
  927. '32': {
  928. angle: 0,
  929. Hz: 32.0,
  930. a: -0.17624,
  931. b: 43.444718,
  932. c: 93.26435059999994,
  933. min: 99.2,
  934. max: 177.8,
  935. },
  936. '33': {
  937. angle: 0,
  938. Hz: 33.0,
  939. a: -0.17624,
  940. b: 43.462342,
  941. c: 91.09167409999964,
  942. min: 102.3,
  943. max: 180.2,
  944. },
  945. '34': {
  946. angle: 0,
  947. Hz: 34.0,
  948. a: -0.17624,
  949. b: 43.479966000000005,
  950. c: 88.91811639999969,
  951. min: 105.4,
  952. max: 182.0,
  953. },
  954. '35': {
  955. angle: 0,
  956. Hz: 35.0,
  957. a: -0.17624,
  958. b: 43.49759,
  959. c: 86.74367749999965,
  960. min: 108.5,
  961. max: 184.5,
  962. },
  963. '36': {
  964. angle: 0,
  965. Hz: 36.0,
  966. a: -0.17624,
  967. b: 43.515214,
  968. c: 84.56835739999997,
  969. min: 111.6,
  970. max: 187.0,
  971. },
  972. '37': {
  973. angle: 0,
  974. Hz: 37.0,
  975. a: -0.17624,
  976. b: 43.532838,
  977. c: 82.3921561000002,
  978. min: 114.7,
  979. max: 190.8,
  980. },
  981. '38': {
  982. angle: 0,
  983. Hz: 38.0,
  984. a: -0.17624,
  985. b: 43.550462,
  986. c: 80.21507359999941,
  987. min: 117.8,
  988. max: 193.0,
  989. },
  990. '39': {
  991. angle: 0,
  992. Hz: 39.0,
  993. a: -0.17624,
  994. b: 43.568086,
  995. c: 78.0371098999999,
  996. min: 120.9,
  997. max: 195.6,
  998. },
  999. '40': {
  1000. angle: 0,
  1001. Hz: 40.0,
  1002. a: -0.17624,
  1003. b: 43.58571,
  1004. c: 75.85826499999985,
  1005. min: 123.0,
  1006. max: 197.0,
  1007. },
  1008. '41': {
  1009. angle: 0,
  1010. Hz: 41.0,
  1011. a: -0.17624,
  1012. b: 43.603334,
  1013. c: 73.67853890000015,
  1014. min: 125.1,
  1015. max: 199.4,
  1016. },
  1017. '42': {
  1018. angle: 0,
  1019. Hz: 42.0,
  1020. a: -0.17624,
  1021. b: 43.620958,
  1022. c: 71.4979315999999,
  1023. min: 128.2,
  1024. max: 202.8,
  1025. },
  1026. '43': {
  1027. angle: 0,
  1028. Hz: 43.0,
  1029. a: -0.17624,
  1030. b: 43.638582,
  1031. c: 69.31644309999956,
  1032. min: 130.3,
  1033. max: 205.8,
  1034. },
  1035. '44': {
  1036. angle: 0,
  1037. Hz: 44.0,
  1038. a: -0.17624,
  1039. b: 43.656206000000005,
  1040. c: 67.13407339999958,
  1041. min: 132.4,
  1042. max: 208.5,
  1043. },
  1044. '45': {
  1045. angle: 0,
  1046. Hz: 45.0,
  1047. a: -0.17624,
  1048. b: 43.67383,
  1049. c: 64.9508224999995,
  1050. min: 134.5,
  1051. max: 211.8,
  1052. },
  1053. '46': {
  1054. angle: 0,
  1055. Hz: 46.0,
  1056. a: -0.17624,
  1057. b: 43.691454,
  1058. c: 62.76669039999979,
  1059. min: 136.6,
  1060. max: 214.4,
  1061. },
  1062. '47': {
  1063. angle: 0,
  1064. Hz: 47.0,
  1065. a: -0.17624,
  1066. b: 43.709078,
  1067. c: 60.58167709999998,
  1068. min: 138.7,
  1069. max: 217.8,
  1070. },
  1071. '48': {
  1072. angle: 0,
  1073. Hz: 48.0,
  1074. a: -0.17624,
  1075. b: 43.726702,
  1076. c: 58.39578259999962,
  1077. min: 140.8,
  1078. max: 219.2,
  1079. },
  1080. '49': {
  1081. angle: 0,
  1082. Hz: 49.0,
  1083. a: -0.17624,
  1084. b: 43.744326,
  1085. c: 56.20900689999962,
  1086. min: 143.9,
  1087. max: 221.6,
  1088. },
  1089. '50': {
  1090. angle: 0,
  1091. Hz: 50.0,
  1092. a: -0.17624,
  1093. b: 43.76195,
  1094. c: 54.021349999999984,
  1095. min: 146.0,
  1096. max: 223.0,
  1097. },
  1098. };
  1099. const num = 21;
  1100. const a = -0.17624; //-0.17624,
  1101. const m = 2770.6411125432646,
  1102. n = -124.15442010894235;
  1103. let i = 21;
  1104. const data = [];
  1105. for (const key in assistanceData) {
  1106. i -= 1;
  1107. const p = i;
  1108. const item = assistanceData[key];
  1109. item['b'] = 2 * a * (n + p);
  1110. item['c'] = a * (n + p) * (n + p) + m - i * 50;
  1111. // if (sysOrgCode == 'sdmtjtdltmk') {
  1112. // // 大柳塔井整体向右下移动
  1113. // item['min'] = item['min'] + 20;
  1114. // item['max'] = item['max'] + 20;
  1115. // item['b'] = 2 * a * (n + p) + 3;
  1116. // item['c'] = a * (n + p) * (n + p) + m - i * 60;
  1117. // } else {
  1118. // item['b'] = 2 * a * (n + p);
  1119. // item['c'] = a * (n + p) * (n + p) + m - i * 50;
  1120. // // //白家渠
  1121. // // a = -0.13424;
  1122. // // item['a'] = Math.round((a + 0.002 * (num - i)) * 10000) / 10000;
  1123. // // item['min'] = item['min'] + 50 + (num - i) * 2;
  1124. // // item['max'] = item['max'] + 65 + (num - i) * 3.5;
  1125. // // item['b'] = 2 * item['a'] * (n + p) + 8.8;
  1126. // // item['c'] = item['a'] * (n + p) * (n + p) + m - i * 60;
  1127. // // //武当沟
  1128. // // a = -0.17724;
  1129. // // item['a'] = Math.round((a - 0.002 * (num - i)) * 10000) / 10000;
  1130. // // item['min'] = item['min'] - 40 - (num - i) * 1;
  1131. // // item['max'] = item['max'] - 60 - (num - i) * 0.5;
  1132. // // item['b'] = 2 * item['a'] * (n + p) - 16.5;
  1133. // // item['c'] = item['a'] * (n + p) * (n + p) + m - i * 40;
  1134. // }
  1135. data.push(item);
  1136. }
  1137. console.log(data);
  1138. return data;
  1139. };
  1140. // 大柳塔武当沟
  1141. export const initData = (deviceType?) => {
  1142. const { sysOrgCode } = useGlobSetting();
  1143. // const sysOrgCode = 'sdmtjtwlmlmk';
  1144. if (sysOrgCode == 'sdmtjtdltmk') {
  1145. return initDataDlt(deviceType);
  1146. } else if (sysOrgCode == 'sdmtjtswmk') {
  1147. return initDataSw(deviceType);
  1148. } else if (sysOrgCode == 'sdmtjtbltmk') {
  1149. return initDataBlt();
  1150. } else if (sysOrgCode == 'sdmtjtbdmk') {
  1151. return initDataBd(deviceType);
  1152. } else if (sysOrgCode == 'sdmtjtjjmk') {
  1153. return initDataJj();
  1154. } else if (sysOrgCode == 'sdmtjtdltmkhjtj') {
  1155. return initDataHjt();
  1156. } else if (sysOrgCode == 'sdmtjtsgtmk') {
  1157. return initDataSgt();
  1158. } else if (sysOrgCode == 'sdmtjthlgmk') {
  1159. return initDataSgt();
  1160. } else if (sysOrgCode == 'sdmtjtyjlmk') {
  1161. return initDataJj();
  1162. } else if (sysOrgCode == 'sdmtjtcctrk') {
  1163. return initDataCctr();
  1164. } else if (sysOrgCode == 'sdmtjtwlmlmk') {
  1165. return initDataWlml();
  1166. } else {
  1167. return initData1();
  1168. }
  1169. };
  1170. // 乌兰木伦
  1171. const initDataWlml = () => {
  1172. const data: any[] = [];
  1173. data.push({
  1174. angle: -3,
  1175. Hz: -3,
  1176. a: -15.607,
  1177. b: 6242.3,
  1178. c: -621571,
  1179. min: 204,
  1180. max: 212,
  1181. });
  1182. data.push({
  1183. angle: -2,
  1184. Hz: -2,
  1185. a: -8.3134,
  1186. b: 3178.9,
  1187. c: -300224,
  1188. min: 204,
  1189. max: 211,
  1190. });
  1191. data.push({
  1192. angle: 0,
  1193. Hz: 0,
  1194. a: -8.9632,
  1195. b: 3751.3,
  1196. c: -389068,
  1197. min: 216,
  1198. max: 227.2,
  1199. });
  1200. data.push({
  1201. angle: 1,
  1202. Hz: 1,
  1203. a: -12.77,
  1204. b: 5415.9,
  1205. c: -571193,
  1206. min: 216,
  1207. max: 226.8,
  1208. });
  1209. data.push({
  1210. angle: 2,
  1211. Hz: 2,
  1212. a: -12.432,
  1213. b: 5635.5,
  1214. c: -635361,
  1215. min: 234.5,
  1216. max: 242.4,
  1217. });
  1218. data.push({
  1219. angle: 3,
  1220. Hz: 3,
  1221. a: -2.9424,
  1222. b: 1147.7,
  1223. c: -104620,
  1224. min: 234.5,
  1225. max: 243.5,
  1226. });
  1227. return data;
  1228. };
  1229. // 石圪台
  1230. const initDataCctr = () => {
  1231. const data: any[] = [];
  1232. data.push({
  1233. angle: 0,
  1234. Hz: 0,
  1235. a: -0.0221,
  1236. b: -1.2494,
  1237. c: 552.28,
  1238. min: 52,
  1239. max: 125,
  1240. });
  1241. data.push({
  1242. angle: 3,
  1243. Hz: 3,
  1244. a: -0.0232,
  1245. b: -0.8204,
  1246. c: 603.39,
  1247. min: 50,
  1248. max: 139,
  1249. });
  1250. data.push({
  1251. angle: 6,
  1252. Hz: 6,
  1253. a: -0.0417,
  1254. b: 3.1004,
  1255. c: 498.9,
  1256. min: 45,
  1257. max: 150,
  1258. });
  1259. return data;
  1260. };
  1261. // 石圪台
  1262. const initDataSgt = () => {
  1263. const data: any[] = [];
  1264. data.push({
  1265. angle: -6,
  1266. Hz: -6,
  1267. a: -0.0438,
  1268. b: 14.5078,
  1269. c: 986.6,
  1270. min: 130,
  1271. max: 370,
  1272. });
  1273. data.push({
  1274. angle: -3,
  1275. Hz: -3,
  1276. a: -0.035,
  1277. b: 11.7875,
  1278. c: 1226.8,
  1279. min: 140,
  1280. max: 400,
  1281. });
  1282. data.push({
  1283. angle: 0,
  1284. Hz: 0,
  1285. a: -0.0354,
  1286. b: 13.6986,
  1287. c: 1078.6,
  1288. min: 150,
  1289. max: 430,
  1290. });
  1291. data.push({
  1292. angle: 3,
  1293. Hz: 3,
  1294. a: -0.0444,
  1295. b: 19.5673,
  1296. c: 504,
  1297. min: 170,
  1298. max: 445,
  1299. });
  1300. data.push({
  1301. angle: 6,
  1302. Hz: 6,
  1303. a: -0.0507,
  1304. b: 24.3336,
  1305. c: -70,
  1306. min: 190,
  1307. max: 460,
  1308. });
  1309. return data;
  1310. };
  1311. // 大柳塔白家渠
  1312. const initDataDlt = (deviceType?) => {
  1313. if (deviceType == 'fanmain_bjq') {
  1314. const num = 2;
  1315. const obj = {
  1316. angle: 0,
  1317. Hz: -0,
  1318. a: -0.0656,
  1319. b: 17.398283350755946,
  1320. c: 3241.38254718147,
  1321. min: 300,
  1322. max: 1100.0,
  1323. };
  1324. const a = -0.0656,
  1325. m = 17.398283350755946,
  1326. n = 3241.38254718147;
  1327. const maxList = [339.4, 359.4, 379.4, 399.4, 419.4];
  1328. const minList = [143, 152, 161, 170, 180];
  1329. const data = [];
  1330. for (let i = -2; i <= num; i++) {
  1331. const item = cloneDeep(obj);
  1332. item['Hz'] = 0 + i * 3;
  1333. item['c'] = n + 5 * i;
  1334. item['b'] = m + i * 2;
  1335. item['max'] = maxList[i + 2];
  1336. item['min'] = minList[i + 2];
  1337. data.push(item);
  1338. }
  1339. return data;
  1340. } else if (deviceType == 'fanmain_wdg') {
  1341. // 武当沟
  1342. const num = 2;
  1343. const obj = {
  1344. angle: 0,
  1345. Hz: -0,
  1346. a: -0.1424,
  1347. b: 26.316238660115914,
  1348. c: -370.62808803303426,
  1349. min: 300,
  1350. max: 1100.0,
  1351. };
  1352. const a = -0.1424,
  1353. m = 26.086238660115914,
  1354. n = -370.62808803303426;
  1355. const maxList = [138, 148, 158, 168, 178];
  1356. const minList = [90, 95, 100, 105, 110];
  1357. const data = [];
  1358. for (let i = -2; i <= num; i++) {
  1359. const item = cloneDeep(obj);
  1360. item['Hz'] = 0 + i * 3;
  1361. item['c'] = n + 1 * i;
  1362. item['b'] = m + i * 1.3;
  1363. item['max'] = maxList[i + 2];
  1364. item['min'] = minList[i + 2];
  1365. data.push(item);
  1366. }
  1367. return data;
  1368. }
  1369. };
  1370. const initDataSw = (deviceType?) => {
  1371. if (deviceType == 'fanmain_bfj') {
  1372. // 北风井
  1373. const num = 2;
  1374. const obj = {
  1375. angle: 0,
  1376. Hz: 0,
  1377. a: -0.2486,
  1378. b: 14.998999006593294,
  1379. c: 3672.488224167444,
  1380. min: 300,
  1381. max: 1100.0,
  1382. };
  1383. const a = -0.2486,
  1384. m = 14.998999006593294,
  1385. n = 3672.488224167444;
  1386. const maxList = [115.67, 130.67, 146.67, 165.67, 185.67];
  1387. const minList = [50, 60, 70, 85, 100];
  1388. const data = [];
  1389. for (let i = -2; i <= num; i++) {
  1390. const item = cloneDeep(obj);
  1391. item['Hz'] = 0 + i * 3;
  1392. item['c'] = n + 5 * i;
  1393. item['b'] = m + i * 8;
  1394. item['max'] = maxList[i + 2];
  1395. item['min'] = minList[i + 2];
  1396. data.push(item);
  1397. }
  1398. return data;
  1399. } else if (deviceType == 'fanmain_nfj') {
  1400. // 南风井
  1401. const num = 2;
  1402. const obj = {
  1403. angle: 0,
  1404. Hz: -0,
  1405. a: -0.0445,
  1406. b: 15.46559392987956,
  1407. c: 2607.959183673496,
  1408. min: 300,
  1409. max: 1100.0,
  1410. };
  1411. const a = -0.0455,
  1412. m = 15.46559392987956,
  1413. n = 2607.959183673496;
  1414. const maxList = [315, 345, 375, 410, 450, 500];
  1415. const minList = [90, 105, 120, 145, 170, 185];
  1416. const data = [];
  1417. for (let i = -3; i <= num; i++) {
  1418. const item = cloneDeep(obj);
  1419. item['Hz'] = 0 + i * 3;
  1420. item['a'] = Math.round((a - 0.003 * (num - i)) * 10000) / 10000;
  1421. item['c'] = n + 10 * i;
  1422. item['b'] = m + i * 1.2;
  1423. item['max'] = maxList[i + 3];
  1424. item['min'] = minList[i + 3];
  1425. data.push(item);
  1426. }
  1427. return data;
  1428. }
  1429. };
  1430. const initDataHjt = () => {
  1431. const data: any[] = [];
  1432. data.push({
  1433. angle: -10,
  1434. Hz: -10,
  1435. a: -0.0357,
  1436. b: 13.657,
  1437. c: 515.38,
  1438. min: 170,
  1439. max: 400,
  1440. });
  1441. data.push({
  1442. angle: -7,
  1443. Hz: -7,
  1444. a: -0.0371,
  1445. b: 15.478,
  1446. c: 452.43,
  1447. min: 170,
  1448. max: 400,
  1449. });
  1450. data.push({
  1451. angle: -5,
  1452. Hz: -5,
  1453. a: -0.0357,
  1454. b: 13.657,
  1455. c: 515.38,
  1456. min: 170,
  1457. max: 400,
  1458. });
  1459. data.push({
  1460. angle: -4,
  1461. Hz: -4,
  1462. a: -0.0361,
  1463. b: 16.706,
  1464. c: 228.85,
  1465. min: 170,
  1466. max: 400,
  1467. });
  1468. data.push({
  1469. angle: -2,
  1470. Hz: -2,
  1471. a: -0.0357,
  1472. b: 15.478,
  1473. c: 452.43,
  1474. min: 170,
  1475. max: 400,
  1476. });
  1477. data.push({
  1478. angle: 1,
  1479. Hz: 1,
  1480. a: -0.0361,
  1481. b: 16.706,
  1482. c: 228.85,
  1483. min: 170,
  1484. max: 400,
  1485. });
  1486. return data;
  1487. };
  1488. const initDataBd = (deviceType?) => {
  1489. if (deviceType == 'fanmain_ljy') {
  1490. // 刘家宴
  1491. const num = 2;
  1492. const obj = {
  1493. angle: 0,
  1494. Hz: 0,
  1495. a: -0.02674,
  1496. b: 10.070078367532346,
  1497. c: 3048.210229423783,
  1498. min: 300,
  1499. max: 1100.0,
  1500. };
  1501. const a = -0.02774,
  1502. m = 10.090078367532346,
  1503. n = 3988.210229423783;
  1504. const maxList = [370, 410, 450, 500, 560, 624];
  1505. const minList = [70, 80, 100, 130, 160, 210];
  1506. const data = [];
  1507. let index = 0;
  1508. for (let i = -3; i <= num; i++) {
  1509. ++index;
  1510. const item = cloneDeep(obj);
  1511. item['a'] = Math.round((a - 0.002 * (6 - index)) * 10000) / 10000;
  1512. item['Hz'] = 0 + i * 3;
  1513. item['c'] = n + 10 * i;
  1514. item['b'] = m + i * 1.3;
  1515. item['max'] = maxList[i + 3];
  1516. item['min'] = minList[i + 3];
  1517. data.push(item);
  1518. }
  1519. return data;
  1520. } else if (deviceType == 'fanmain_zl') {
  1521. // 枣庄
  1522. const num = 2;
  1523. const obj = {
  1524. angle: 0,
  1525. Hz: 0,
  1526. a: -0.02674,
  1527. b: 10.070078367532346,
  1528. c: 3048.210229423783,
  1529. min: 300,
  1530. max: 1100.0,
  1531. };
  1532. const a = -0.05874,
  1533. m = 17.090078367532346,
  1534. n = 3588.210229423783;
  1535. const maxList = [315, 344, 379, 415, 454];
  1536. const minList = [160, 170, 180, 190, 200, 210];
  1537. const data = [];
  1538. let index = 0;
  1539. for (let i = -2; i <= num; i++) {
  1540. ++index;
  1541. const item = cloneDeep(obj);
  1542. item['a'] = Math.round((a - 0.003 * (6 - index)) * 10000) / 10000;
  1543. item['Hz'] = 0 + i * 3;
  1544. item['c'] = n + 6 * i;
  1545. item['b'] = m + i * 1.9;
  1546. item['max'] = maxList[i + 2];
  1547. item['min'] = minList[i + 2];
  1548. data.push(item);
  1549. }
  1550. return data;
  1551. }
  1552. };
  1553. const initDataBlt = () => {
  1554. const num = 2;
  1555. const obj = {
  1556. angle: 0,
  1557. Hz: 0,
  1558. a: -0.02674,
  1559. b: 10.070078367532346,
  1560. c: 3048.210229423783,
  1561. min: 300,
  1562. max: 1100.0,
  1563. };
  1564. const a = -0.02874,
  1565. m = 10.070078367532346,
  1566. n = 3048.210229423783;
  1567. const maxList = [370, 400, 440, 480, 525, 580];
  1568. const minList = [70, 80, 100, 130, 160, 210];
  1569. const data = [];
  1570. let index = 0;
  1571. for (let i = -3; i <= num; i++) {
  1572. ++index;
  1573. const item = cloneDeep(obj);
  1574. item['a'] = Math.round((a - 0.002 * (6 - index)) * 10000) / 10000;
  1575. item['Hz'] = 0 + i * 3;
  1576. item['c'] = n + 10 * i;
  1577. item['b'] = m + i * 1;
  1578. item['max'] = maxList[i + 3];
  1579. item['min'] = minList[i + 3];
  1580. data.push(item);
  1581. }
  1582. return data;
  1583. };
  1584. const initDataJj = () => {
  1585. const num = 2;
  1586. const obj = {
  1587. angle: 0,
  1588. Hz: 0,
  1589. a: -0.02674,
  1590. b: 10.070078367532346,
  1591. c: 3048.210229423783,
  1592. min: 300,
  1593. max: 1100.0,
  1594. };
  1595. const a = -0.09874,
  1596. m = 21.090078367532346,
  1597. n = 3588.210229423783;
  1598. const maxList = [239, 264, 292, 322, 354];
  1599. const minList = [60, 70, 80, 90, 100, 110];
  1600. const data = [];
  1601. let index = 0;
  1602. for (let i = -2; i <= num; i++) {
  1603. ++index;
  1604. const item = cloneDeep(obj);
  1605. item['a'] = Math.round((a - 0.003 * (6 - index)) * 10000) / 10000;
  1606. item['Hz'] = 0 + i * 3;
  1607. item['c'] = n + 10 * i;
  1608. item['b'] = m + i * 3;
  1609. item['max'] = maxList[i + 2];
  1610. item['min'] = minList[i + 2];
  1611. data.push(item);
  1612. }
  1613. return data;
  1614. };
  1615. export const fanInfoData = reactive({
  1616. fj: '一号回风井',
  1617. xh: 'FBCDZ No.29',
  1618. gl: '2×500',
  1619. edgl: '740',
  1620. eddy: '10000',
  1621. eddl: '38.4',
  1622. flfw: '110~260',
  1623. fyfw: '200~4100',
  1624. fbdj: 'ExdI',
  1625. ccrq: '2010.07',
  1626. sccj: '南阳防爆',
  1627. tjfs: '变频调节',
  1628. plfw: '30~50',
  1629. });
  1630. export const fanInfo = [
  1631. {
  1632. title: '风井',
  1633. code: 'windWell_mainFanInfo',
  1634. value: '一号回风井',
  1635. },
  1636. {
  1637. title: '型号',
  1638. code: 'modelType_mainFanInfo',
  1639. value: 'FBCDZ No.29',
  1640. },
  1641. {
  1642. title: '功率(kW)',
  1643. code: 'powerRating_mainFanInfo',
  1644. value: '2×500',
  1645. },
  1646. {
  1647. title: '额定转速(r/min)',
  1648. code: 'ratedSpeed_mainFanInfo',
  1649. value: '740',
  1650. },
  1651. {
  1652. title: '额定电压(V)',
  1653. code: 'ratedVoltage_mainFanInfo',
  1654. value: '10000',
  1655. },
  1656. {
  1657. title: '额定电流(A)',
  1658. code: 'ratedCurrent_mainFanInfo',
  1659. value: '38.4',
  1660. },
  1661. {
  1662. title: '风量范围(m³/s)',
  1663. code: 'airflowRange_mainFanInfo',
  1664. value: '110~260',
  1665. },
  1666. {
  1667. title: '风压范围(Pa)',
  1668. code: 'pressureRange_mainFanInfo',
  1669. value: '200~4100',
  1670. },
  1671. {
  1672. title: '防爆等级',
  1673. code: 'explosionProofRating_mainFanInfo',
  1674. value: 'ExdI',
  1675. },
  1676. {
  1677. title: '出厂日期',
  1678. code: 'manufactureDate_mainFanInfo',
  1679. value: '2010.07',
  1680. },
  1681. {
  1682. title: '生产厂家',
  1683. code: 'manufacturer_mainFanInfo',
  1684. value: '南阳防爆',
  1685. },
  1686. {
  1687. title: '调节方式',
  1688. code: 'adjustmentMethod_mainFanInfo',
  1689. value: '变频调节',
  1690. },
  1691. {
  1692. title: '频率可调范围(Hz)',
  1693. code: 'angleAdjustableRange_mainFanInfo',
  1694. value: '30~50',
  1695. },
  1696. ];
  1697. export const getSchamas = (): FormSchema[] => {
  1698. return [
  1699. {
  1700. field: 'fj',
  1701. component: 'Input',
  1702. label: '风井',
  1703. colProps: {
  1704. span: 6,
  1705. },
  1706. },
  1707. {
  1708. field: 'xh',
  1709. component: 'Input',
  1710. label: '型号',
  1711. colProps: {
  1712. span: 6,
  1713. },
  1714. },
  1715. {
  1716. field: 'gl',
  1717. component: 'Input',
  1718. label: '功率(kW)',
  1719. colProps: {
  1720. span: 6,
  1721. },
  1722. },
  1723. {
  1724. field: 'edgl',
  1725. component: 'Input',
  1726. label: '额定转速(r/min)',
  1727. colProps: {
  1728. span: 6,
  1729. },
  1730. },
  1731. {
  1732. field: 'eddy',
  1733. component: 'Input',
  1734. label: '额定电压(V)',
  1735. colProps: {
  1736. span: 6,
  1737. },
  1738. },
  1739. {
  1740. field: 'eddl',
  1741. component: 'Input',
  1742. label: '额定电流(A)',
  1743. colProps: {
  1744. span: 6,
  1745. },
  1746. },
  1747. {
  1748. field: 'flfw',
  1749. component: 'Input',
  1750. label: '风量范围(m³/s)',
  1751. colProps: {
  1752. span: 6,
  1753. },
  1754. },
  1755. {
  1756. field: 'fyfw',
  1757. component: 'Input',
  1758. label: '风压范围(Pa)',
  1759. colProps: {
  1760. span: 6,
  1761. },
  1762. },
  1763. {
  1764. field: 'fbdj',
  1765. component: 'Select',
  1766. label: '防爆等级',
  1767. colProps: {
  1768. span: 6,
  1769. },
  1770. componentProps: {
  1771. options: [
  1772. {
  1773. label: 'ExdI',
  1774. value: 'ExdI',
  1775. key: '1',
  1776. },
  1777. ],
  1778. },
  1779. },
  1780. {
  1781. field: 'ccrq',
  1782. component: 'Input',
  1783. label: '出厂日期',
  1784. colProps: {
  1785. span: 6,
  1786. },
  1787. },
  1788. {
  1789. field: 'sccj',
  1790. component: 'Input',
  1791. label: '生产厂家',
  1792. colProps: {
  1793. span: 6,
  1794. },
  1795. },
  1796. {
  1797. field: 'tjfs',
  1798. component: 'Select',
  1799. label: '调节方式',
  1800. colProps: {
  1801. span: 6,
  1802. },
  1803. componentProps: {
  1804. options: [
  1805. {
  1806. label: '变频调节',
  1807. value: '变频调节',
  1808. key: '1',
  1809. },
  1810. ],
  1811. },
  1812. },
  1813. {
  1814. field: 'plfw',
  1815. component: 'Input',
  1816. label: '频率可调范围(Hz)',
  1817. colProps: {
  1818. span: 6,
  1819. },
  1820. },
  1821. ];
  1822. };
  1823. export const getSchamas1 = (): FormSchema[] => {
  1824. return [
  1825. {
  1826. field: 'Hz',
  1827. component: 'InputNumber',
  1828. label: '频率(Hz)',
  1829. required: true,
  1830. colProps: {
  1831. span: 6,
  1832. },
  1833. },
  1834. {
  1835. field: 'a',
  1836. component: 'InputNumber',
  1837. label: '二次项系数',
  1838. required: true,
  1839. colProps: {
  1840. span: 6,
  1841. },
  1842. },
  1843. {
  1844. field: 'b',
  1845. component: 'InputNumber',
  1846. label: '一次项系数',
  1847. required: true,
  1848. colProps: {
  1849. span: 6,
  1850. },
  1851. },
  1852. {
  1853. field: 'c',
  1854. component: 'InputNumber',
  1855. label: '常数项系数',
  1856. required: true,
  1857. colProps: {
  1858. span: 6,
  1859. },
  1860. },
  1861. {
  1862. field: 'min',
  1863. component: 'InputNumber',
  1864. label: '风量下限(m³/s)',
  1865. required: true,
  1866. colProps: {
  1867. span: 6,
  1868. },
  1869. },
  1870. {
  1871. field: 'max',
  1872. component: 'InputNumber',
  1873. label: '风量上限(m³/s)',
  1874. required: true,
  1875. colProps: {
  1876. span: 6,
  1877. },
  1878. },
  1879. ];
  1880. };
  1881. export const lineFormData = reactive({
  1882. Hz: null,
  1883. a: null,
  1884. b: null,
  1885. c: null,
  1886. min: null,
  1887. max: null,
  1888. });