Browse Source

[Feat 0000] 主通风机QH曲线移植到可配置首页中,添加两种新预设配置

houzekong 1 month ago
parent
commit
83b378e4fc

+ 2 - 1
src/views/vent/deviceManager/configurationTable/types.ts

@@ -77,7 +77,7 @@ export interface ModuleData {
     direction: 'column' | 'row';
     items: {
       /** 分区名称,对应下方的配置 */
-      name: 'board' | 'list' | 'chart' | 'table' | 'gallery' | 'complex_list' | 'gallery_list' | 'blast_delta' | 'measure_detail';
+      name: 'board' | 'list' | 'chart' | 'table' | 'gallery' | 'complex_list' | 'gallery_list' | 'blast_delta' | 'measure_detail' | 'qh_curve';
       /** 分区大小 */
       basis: string;
       overflow?: boolean;
@@ -198,6 +198,7 @@ export interface ModuleDataChart extends ReadFrom {
   /** 图表x轴配置(若有),支持多个,注意至少一个 */
   xAxis: {
     show: boolean;
+    name?: string;
   }[];
   /** 图表y轴配置(若有),支持多个,注意至少一个 */
   yAxis: {

+ 4 - 0
src/views/vent/home/configurable/components/content.vue

@@ -64,6 +64,9 @@
         <template v-if="config.name === 'blast_delta'">
           <BlastDelta class="content__module" :pos-monitor="config.data" :canvasSize="{ width: 250, height: 200 }" />
         </template>
+        <template v-if="config.name === 'qh_curve'">
+          <QHCurve class="content__module" :mainfan="config.data" />
+        </template>
         <template v-if="config.name === 'measure_detail'">
           <MeasureDetail
             class="content__module"
@@ -105,6 +108,7 @@
   import { clone } from 'lodash-es';
   import { getData, getFormattedText } from '../hooks/helper';
   import BlastDelta from '../../../monitorManager/deviceMonitor/components/device/modal/blastDelta.vue';
+  import QHCurve from './preset/QHCurve.vue';
   import MeasureDetail from './preset/MeasureDetail.vue';
   // import FIreWarn from './preset/FIreWarn.vue';
   // import FIreControl from './preset/FIreControl.vue';

+ 1 - 3
src/views/vent/home/configurable/components/detail/CustomChart.vue

@@ -8,8 +8,6 @@
   import { ModuleDataChart } from '/@/views/vent/deviceManager/configurationTable/types';
   import { EChartsOption, graphic } from 'echarts';
   import { getData, getFormattedText } from '../../hooks/helper';
-  import { install$10 } from 'echarts/types/dist/shared';
-  import { color } from 'echarts/core';
 
   const props = withDefaults(
     defineProps<{
@@ -122,7 +120,7 @@
           trigger: 'item',
         },
         color: ['#73C0DE', '#5470C6', '#91CC75', '#FAC858', '#ED6666', '#17d1b2', '#2ae271', '#11bce7', '#c127f0', '#ee125b'],
-        series: baseSeries.reduce((curr: EChartsOption[], serie, index) => {
+        series: baseSeries.reduce((curr: EChartsOption[], serie) => {
           const colors = ['#73C0DE', '#5470C6', '#91CC75', '#FAC858', '#ED6666', '#17d1b2', '#2ae271', '#11bce7', '#c127f0', '#ee125b'];
           if (baseSeries.length === 1) {
             curr.push({

+ 327 - 0
src/views/vent/home/configurable/components/preset/QHCurve.vue

@@ -0,0 +1,327 @@
+<template>
+  <div class="main-contents">
+    <!-- <div class="point-des-box">
+      <div>工况点</div>
+      <div>负压(Pa): {{ selectDataObj.dataH }}</div>
+      <div>风量(m³/min): {{ (selectDataObj.dataQ * 60).toFixed(2) }}</div>
+    </div> -->
+    <div class="main" ref="main"></div>
+  </div>
+</template>
+
+<script lang="ts" setup>
+  import { ref, reactive, nextTick, defineProps, watch } from 'vue';
+  import * as echarts from 'echarts';
+  //   import { useGlobSetting } from '/@/hooks/setting';
+  //   const { sysOrgCode } = useGlobSetting();
+
+  const props = defineProps<{ mainfan: Record<string, any> }>();
+  const selectDataObj = ref({
+    dataQ: 0,
+    dataH: 0,
+  });
+  //echart图表数据
+  const echartData = reactive<any>({
+    xdata: [],
+    ydata: [],
+    ydata1: [],
+  });
+  const maxM3 = ref(150); // 高家梁是150,其他400
+  const maxMPa = ref(4000);
+  const main = ref();
+
+  function changeSelect(selectData) {
+    let objParam;
+    if (!selectData) return;
+    const fan2Active = selectData.readData.Fan2StartStatus && selectData.readData.Fan2StartStatus == '1';
+    if (fan2Active) {
+      objParam = {
+        dataQ: selectData.readData.Fan2m3 || 0,
+        dataH: Math.abs(Number(selectData.readData.Fan2FanPre || 0)),
+      };
+    } else {
+      objParam = {
+        dataQ: selectData.readData.Fan1m3 || 0,
+        dataH: Math.abs(Number(selectData.readData.Fan1FanPre || 0)),
+      };
+    }
+
+    setChart(objParam, {
+      dataha0: -0.056,
+      dataha1: 3.6491,
+      dataha2: 434.4,
+      dataha3: 100,
+      dataha4: -1000,
+    });
+    getOption();
+  }
+
+  // 设置曲线数据
+  function setChart(param, character) {
+    const dataQ = 300;
+    const dataH = character.dataha0 * dataQ * dataQ + character.dataha1 * dataQ + character.dataha2;
+    const Q1 = Math.round((parseFloat(param.dataQ) / 60) * 100) / 100;
+    const H1 = parseFloat(param.dataH);
+
+    selectDataObj.value.dataH = H1;
+    selectDataObj.value.dataQ = Q1;
+
+    const q = Q1 - dataQ;
+    const h = H1 - dataH;
+    // 风压特性曲线1
+    const data: [number, number][] = [];
+    // 风压特性曲线2
+    const data2: [number, number][] = [];
+    const datax: number[] = [];
+    maxM3.value = Q1 < 100 ? 150 : Q1 < 200 ? 250 : Q1 < 300 ? 400 : Q1 < 400 ? 500 : Q1 < 600 ? 800 : 1000;
+    maxMPa.value = H1 < 2000 ? 4000 : H1 < 2500 ? 5000 : 6000;
+
+    for (let i = 30; i <= maxM3.value; i++) {
+      const x = i;
+      const y4 = character.dataha0 * (x - q) * (x - q) + character.dataha1 * (x - q) + character.dataha2 + h;
+      data2.push([x, y4]);
+    }
+    for (let i = 0; i <= maxM3.value; i++) {
+      const x = i;
+      const y = (H1 / Q1 / Q1) * x * x;
+      data.push([x, y]);
+      datax.push(x * 60);
+    }
+    echartData.xdata = datax;
+    echartData.ydata = data;
+    echartData.ydata1 = data2;
+    echartData.ydata2 = [[Q1, H1]];
+  }
+
+  function getOption() {
+    nextTick(() => {
+      const myChart = echarts.init(main.value);
+      let option = {
+        title: {
+          textStyle: {
+            color: '#3df6ff',
+            fontSize: 14, // 字体颜色
+          },
+          text: '',
+        },
+        grid: {
+          top: '25%',
+          left: '5%',
+          right: '19%',
+          bottom: '8%',
+          containLabel: true,
+        },
+        legend: {
+          // x:'right',
+          top: '5%',
+          textStyle: {
+            color: '#ffffff',
+            fontSize: 14, // 字体颜色
+          },
+          data: ['风量', '负压'],
+        },
+        tooltip: {
+          backgroundColor: 'rgba(0,0,0,0.8)',
+          textStyle: {
+            color: '#3df6ff',
+            fontSize: 14, // 字体颜色
+          },
+          formatter: function (params) {
+            // var res = '风量' + ' : ' + Math.round(params.data[0] * 60 * 10) / 10 + '(m³/min)<br/>'
+            // res = res + '&emsp;&emsp;&emsp;' + params.data[0] + '(m³/s)<br/>'
+            var res = '风量' + ' : ' + params.data[0] * 60 + '(m³/min)<br/>';
+            res = res + '&emsp;&emsp;&emsp;' + params.data[0].toFixed(2) + '(m³/s)<br/>';
+            res = res + '负压' + ' : ' + params.data[1] + '(Pa)<br/>';
+            return res;
+          },
+          trigger: 'item',
+        },
+        color: ['#00bb00', '#ffbb00', '#ff0000', '#0000ff'],
+        xAxis: [
+          {
+            name: '风量\r\n(m³/min)\r\n',
+            nameTextStyle: {
+              color: '#3df6ff',
+              fontSize: 12,
+            },
+            axisLine: {
+              lineStyle: {
+                color: '#0092d5',
+                width: 1, // 这里是为了突出显示加上的
+              },
+            },
+            splitLine: {
+              show: false, // 网格线
+              lineStyle: {
+                color: '#006c9d',
+                type: 'dashed', // 设置网格线类型 dotted:虚线   solid:实线
+              },
+            },
+            axisLabel: {
+              show: true,
+              position: 'bottom',
+              textStyle: {
+                color: '#b3b8cc',
+                fontSize: 14,
+              },
+              formatter: function (value) {
+                return value * 60 + '';
+              },
+            },
+            type: 'value',
+            min: 0,
+            max: maxM3.value, // 高家梁最大9000,
+          },
+          {
+            name: '',
+            nameTextStyle: {
+              color: '#3df6ff',
+              fontSize: 12,
+            },
+            axisTick: {
+              show: false,
+            },
+            axisLine: {
+              show: false,
+              lineStyle: {
+                color: '#0092d5',
+                width: 1, // 这里是为了突出显示加上的
+              },
+            },
+            splitLine: {
+              show: false, // 网格线
+              lineStyle: {
+                color: '#006c9d',
+                type: 'dashed', // 设置网格线类型 dotted:虚线   solid:实线
+              },
+            },
+            axisLabel: {
+              show: false,
+              textStyle: {
+                color: '#b3b8cc',
+                fontSize: 14,
+              },
+            },
+            type: 'value',
+            min: 0,
+            // max: 400,
+            data: echartData.xdata,
+          },
+        ],
+        yAxis: [
+          {
+            name: '负压(Pa)',
+            splitNumber: 5,
+            nameTextStyle: {
+              color: '#3df6ff',
+              fontSize: 12,
+            },
+            axisLine: {
+              show: true,
+              lineStyle: {
+                color: '#0092d5',
+                width: 1, // 这里是为了突出显示加上的
+              },
+            },
+            splitLine: {
+              show: true, // 网格线
+              lineStyle: {
+                color: '#006c9d',
+                type: 'dashed', // 设置网格线类型 dotted:虚线   solid:实线
+              },
+            },
+            axisLabel: {
+              show: true,
+              textStyle: {
+                color: '#b3b8cc',
+                fontSize: 14,
+              },
+            },
+            type: 'value',
+            min: 0,
+            max: maxMPa.value,
+          },
+        ],
+        series: [
+          {
+            type: 'effectScatter',
+            symbolSize: 5,
+            // symbolOffset:[1, 1],
+            showEffectOn: 'render',
+            // 涟漪特效相关配置。
+            rippleEffect: {
+              // 波纹的绘制方式,可选 'stroke' 和 'fill'。
+              brushType: 'stroke',
+            },
+            zlevel: 1,
+            z: 999,
+            itemStyle: {
+              color: '#ff0000',
+            },
+            data: echartData.ydata2,
+          },
+          {
+            name: '风量',
+            yAxisIndex: 0,
+            xAxisIndex: 1,
+            type: 'line',
+            smooth: true,
+            animationDuration: 1000,
+            showSymbol: false,
+            data: echartData.ydata,
+          },
+          {
+            name: '负压',
+            yAxisIndex: 0,
+            xAxisIndex: 1,
+            type: 'line',
+            smooth: true,
+            animationDuration: 1000,
+            showSymbol: false,
+
+            data: echartData.ydata1,
+          },
+        ],
+      };
+      myChart.setOption(option);
+      window.onresize = function () {
+        myChart.resize();
+      };
+    });
+  }
+
+  watch(
+    () => props.mainfan,
+    (val) => {
+      changeSelect(val);
+    },
+    {
+      deep: true,
+    }
+  );
+</script>
+
+<style lang="less" scoped>
+  .main-contents {
+    position: relative;
+    width: 100%;
+    height: 100%;
+
+    // .point-des-box {
+    //   position: absolute;
+    //   background: #0d0d0dbd;
+    //   padding: 5px 8px;
+    //   border-radius: 10px;
+    //   border: 1px solid #ffffff;
+    //   z-index: 999;
+    //   color: #fff;
+    //   right: 20px;
+    //   top: 10px;
+    // }
+
+    .main {
+      width: 100%;
+      height: 100%;
+    }
+  }
+</style>

+ 10 - 0
src/views/vent/home/configurable/configurable.api.ts

@@ -39,6 +39,16 @@ export const getHomeData = (params) => {
       }
     });
     res.fanlocal.forEach((e) => {
+      e.chartData = [
+        {
+          x: '吸风量',
+          y: e.readData.windQuantity1,
+        },
+        {
+          x: '供风量',
+          y: e.readData.windQuantity2,
+        },
+      ];
       if (e.readData.Fan2StartStatus === '1') {
         e.current = '二号';
         e.readData.FanfHz = e.readData.Fan2fHz;

+ 175 - 38
src/views/vent/home/configurable/configurable.data.ts

@@ -2,6 +2,154 @@ import { Config } from '../../deviceManager/configurationTable/types';
 // import { BDdustMock, BDfireMock } from './configurable.data.bd';
 
 export const testConfigVent: Config[] = [
+  // {
+  //   deviceType: 'fanmain',
+  //   moduleName: '主通风机系统',
+  //   pageType: 'vent',
+  //   moduleData: {
+  //     header: {
+  //       show: true,
+  //       readFrom: '',
+  //       selector: {
+  //         show: true,
+  //         value: '${strinstallpos}',
+  //       },
+  //       slot: {
+  //         show: true,
+  //         value: '运行风机:${readData.Fan1StartStatus}',
+  //         trans: {
+  //           '1': '一号',
+  //           '0': '二号',
+  //         },
+  //       },
+  //     },
+  //     background: {
+  //       show: true,
+  //       type: 'video',
+  //       link: '/video/mainFan.mp4',
+  //     },
+  //     layout: {
+  //       direction: 'column',
+  //       items: [
+  //         {
+  //           name: 'board',
+  //           basis: '40%',
+  //         },
+  //       ],
+  //     },
+  //     board: [
+  //       {
+  //         type: 'A',
+  //         readFrom: 'readData',
+  //         layout: 'val-top',
+  //         items: [
+  //           {
+  //             label: '风量(m³/min)',
+  //             value: '${m3}',
+  //           },
+  //           {
+  //             label: '负压(Pa)',
+  //             value: '${Fan1StartStatus}',
+  //             trans: {
+  //               '1': '${Fan1FreqHz}',
+  //               '0': '${Fan1FreqHz}',
+  //             },
+  //           },
+  //           {
+  //             label: '频率(Hz)',
+  //             value: '${DataPa}',
+  //           },
+  //         ],
+  //       },
+  //     ],
+  //     list: [],
+  //     chart: [],
+  //     table: [],
+  //     gallery: [],
+  //     complex_list: [],
+  //     gallery_list: [],
+  //     preset: [],
+  //   },
+  //   showStyle: {
+  //     size: 'width:450px;height:280px;',
+  //     version: '新版',
+  //     position: 'top:60px;left:0;',
+  //   },
+  // },
+  // {
+  //   deviceType: 'fanlocal',
+  //   moduleName: '局部通风机系统',
+  //   pageType: 'vent',
+  //   moduleData: {
+  //     header: {
+  //       show: true,
+  //       readFrom: '',
+  //       selector: {
+  //         show: true,
+  //         value: '${strinstallpos}',
+  //       },
+  //       slot: {
+  //         show: true,
+  //         value: '运行风机:${readData.Fan1StartStatus}',
+  //         trans: {
+  //           '1': '一号',
+  //           '0': '二号',
+  //         },
+  //       },
+  //     },
+  //     background: {
+  //       show: true,
+  //       type: 'video',
+  //       link: '/video/fanLocal.mp4',
+  //     },
+  //     layout: {
+  //       direction: 'column',
+  //       items: [
+  //         {
+  //           name: 'board',
+  //           basis: '40%',
+  //         },
+  //       ],
+  //     },
+  //     board: [
+  //       {
+  //         type: 'A',
+  //         readFrom: 'readData',
+  //         layout: 'val-top',
+  //         items: [
+  //           {
+  //             label: '吸风量(m³/min)',
+  //             value: '${windQuantity1}',
+  //           },
+  //           {
+  //             label: '供风量(m³/min)',
+  //             value: '${windQuantity2}',
+  //           },
+  //           {
+  //             label: '频率(Hz)',
+  //             value: '${Fan1StartStatus}',
+  //             trans: {
+  //               '1': '${Fan1fHz}',
+  //               '0': '${Fan2fHz}',
+  //             },
+  //           },
+  //         ],
+  //       },
+  //     ],
+  //     list: [],
+  //     chart: [],
+  //     table: [],
+  //     gallery: [],
+  //     complex_list: [],
+  //     gallery_list: [],
+  //     preset: [],
+  //   },
+  //   showStyle: {
+  //     size: 'width:450px;height:280px;',
+  //     version: '新版',
+  //     position: 'top:350px;left:0;',
+  //   },
+  // },
   {
     deviceType: 'fanmain',
     moduleName: '主通风机系统',
@@ -24,16 +172,20 @@ export const testConfigVent: Config[] = [
         },
       },
       background: {
-        show: true,
-        type: 'video',
-        link: '/video/mainFan.mp4',
+        show: false,
+        type: 'image',
+        link: '',
       },
       layout: {
         direction: 'column',
         items: [
           {
             name: 'board',
-            basis: '40%',
+            basis: '33%',
+          },
+          {
+            name: 'qh_curve',
+            basis: '67%',
           },
         ],
       },
@@ -55,10 +207,6 @@ export const testConfigVent: Config[] = [
                 '0': '${Fan1FreqHz}',
               },
             },
-            {
-              label: '频率(Hz)',
-              value: '${DataPa}',
-            },
           ],
         },
       ],
@@ -68,7 +216,11 @@ export const testConfigVent: Config[] = [
       gallery: [],
       complex_list: [],
       gallery_list: [],
-      preset: [],
+      preset: [
+        {
+          readFrom: '',
+        },
+      ],
     },
     showStyle: {
       size: 'width:450px;height:280px;',
@@ -98,46 +250,31 @@ export const testConfigVent: Config[] = [
         },
       },
       background: {
-        show: true,
-        type: 'video',
-        link: '/video/fanLocal.mp4',
+        show: false,
+        type: 'image',
+        link: '',
       },
       layout: {
         direction: 'column',
         items: [
           {
-            name: 'board',
-            basis: '40%',
+            name: 'chart',
+            basis: '100%',
           },
         ],
       },
-      board: [
+      board: [],
+      list: [],
+      chart: [
         {
-          type: 'A',
-          readFrom: 'readData',
-          layout: 'val-top',
-          items: [
-            {
-              label: '吸风量(m³/min)',
-              value: '${windQuantity1}',
-            },
-            {
-              label: '供风量(m³/min)',
-              value: '${windQuantity2}',
-            },
-            {
-              label: '频率(Hz)',
-              value: '${Fan1StartStatus}',
-              trans: {
-                '1': '${Fan1fHz}',
-                '0': '${Fan2fHz}',
-              },
-            },
-          ],
+          type: 'bar_cylinder',
+          readFrom: '',
+          legend: { show: false },
+          xAxis: [{ show: true }],
+          yAxis: [{ show: true, name: '(m³/min)', position: 'left' }],
+          series: [{ readFrom: 'chartData', xprop: 'x', yprop: 'y', label: '风量' }],
         },
       ],
-      list: [],
-      chart: [],
       table: [],
       gallery: [],
       complex_list: [],