Advertisement
cornford-michael

Untitled

Jun 9th, 2023 (edited)
830
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export const dataChart = {
  2.   object: {
  3.     schema: [
  4.       { name: "Time", type: "date", format: "%Y-%m-%d %H:%M:%S" },
  5.       { name: "Gross Output", type: "number" },
  6.       { name: "Coal Flow", type: "number" },
  7.       { name: "HP Turbine First Stage Temp.", type: "number" },
  8.       { name: "Main Steam Press.", type: "number" },
  9.       { name: "Main Steam Temp.", type: "number" },
  10.       { name: "ST Speed", type: "number" },
  11.       { name: "Furnace Temperature", type: "number" },
  12.       { name: "ST Metal Temperature", type: "number" },
  13.       { name: "Oil Flow", type: "number" },
  14.       { name: "Condenser Vacuum", type: "number" },
  15.       { name: "Main Steam Temp. (Ref) ", type: "number" },
  16.     ],
  17.     data: [
  18.       [
  19.         "2023-03-01 14:20:00",
  20.         2.83,
  21.         7.25,
  22.         null,
  23.         2.93,
  24.         460.65,
  25.         3010.01,
  26.         890.4,
  27.         183.33,
  28.         2.14,
  29.         -56.55,
  30.         null,
  31.       ],
  32.       [
  33.         "2023-03-01 14:25:00",
  34.         2.68,
  35.         6.85,
  36.         null,
  37.         3.08,
  38.         461.22,
  39.         3011.84,
  40.         886.5,
  41.         190.0,
  42.         2.14,
  43.         -54.63,
  44.         null,
  45.       ],
  46.       [
  47.         "2023-03-01 14:30:00",
  48.         2.7,
  49.         7.36,
  50.         null,
  51.         3.26,
  52.         461.51,
  53.         3007.87,
  54.         886.65,
  55.         196.3,
  56.         0.0,
  57.         -54.23,
  58.         null,
  59.       ],
  60.       [
  61.         "2023-03-01 14:35:00",
  62.         3.37,
  63.         7.43,
  64.         null,
  65.         3.33,
  66.         462.95,
  67.         3009.09,
  68.         904.93,
  69.         202.4,
  70.         1.97,
  71.         -52.83,
  72.         null,
  73.       ],
  74.     ],
  75.     yAxis: [
  76.       {
  77.         title: "Main Steam Press.",
  78.         plot: [
  79.           {
  80.             value: "Main Steam Press.",
  81.             connectnulldata: true,
  82.             style: {
  83.               plot: {
  84.                 "stroke-dasharray": "5 2",
  85.               },
  86.             },
  87.           },
  88.         ],
  89.         referenceLine: [],
  90.         format: { suffix: "MPa", defaultFormat: 0, round: "1" },
  91.         type: "line",
  92.         orientation: "left",
  93.       },
  94.       {
  95.         title: "Gross Output",
  96.         plot: [{ value: "Gross Output", connectnulldata: true }],
  97.         referenceLine: [],
  98.         format: { suffix: "MW", defaultFormat: 0, round: "1" },
  99.         style: {
  100.           title: { "font-size": "10px" },
  101.           "plot.null": {
  102.             "stroke-dasharray": "5",
  103.           },
  104.         },
  105.         type: "line",
  106.         orientation: "left",
  107.       },
  108.       {
  109.         title: "ST Speed",
  110.         plot: [
  111.           {
  112.             value: "ST Speed",
  113.             connectnulldata: true,
  114.             style: {
  115.               plot: {
  116.                 "stroke-dasharray": "5 2",
  117.               },
  118.             },
  119.           },
  120.         ],
  121.         referenceLine: [],
  122.         format: { suffix: "rpm", defaultFormat: 0, round: "1" },
  123.         style: { title: { "font-size": "10px" } },
  124.         type: "line",
  125.         orientation: "left",
  126.       },
  127.       {
  128.         title: "Oil Flow",
  129.         plot: [
  130.           {
  131.             value: "Coal Flow",
  132.             connectnulldata: false,
  133.             style: {
  134.               title: { "font-size": "10px" },
  135.             },
  136.           },
  137.           { value: "Oil Flow", connectnulldata: false },
  138.         ],
  139.         referenceLine: [],
  140.         format: { suffix: "ton/h", defaultFormat: 0, round: "1" },
  141.         style: {
  142.           title: { "font-size": "10px" },
  143.         },
  144.         type: "line",
  145.         orientation: "right",
  146.       },
  147.       {
  148.         title: "Condenser Vacuum",
  149.         plot: [{ value: "Condenser Vacuum", connectnulldata: true }],
  150.         referenceLine: [],
  151.         format: { suffix: "kPa", defaultFormat: 0, round: "1" },
  152.         style: { title: { "font-size": "10px" } },
  153.         type: "line",
  154.         orientation: "right",
  155.       },
  156.       {
  157.         title: "ST Metal Temperature",
  158.         plot: [
  159.           { value: "HP Turbine First Stage Temp.", connectnulldata: true },
  160.           { value: "Main Steam Temp.", connectnulldata: true },
  161.           { value: "Furnace Temperature", connectnulldata: true },
  162.           { value: "ST Metal Temperature", connectnulldata: true },
  163.           { value: "Main Steam Temp. (Ref) ", connectnulldata: true },
  164.         ],
  165.         referenceLine: [],
  166.         format: { suffix: "°C", defaultFormat: 0, round: "1" },
  167.         style: { title: { "font-size": "10px" } },
  168.         type: "line",
  169.         orientation: "right",
  170.       },
  171.     ],
  172.     xAxis: {
  173.       plot: "Time",
  174.       timemarker: [
  175.         {
  176.           start: "2023-03-01 14:20:00",
  177.           startformat: "%Y-%m-%d %H:%M:%S",
  178.           type: "full",
  179.           label: "Start Oil <br> Oil Flow : 2.14 ton/h",
  180.           style: { marker: { fill: "#cf1322" } },
  181.         },
  182.         {
  183.           start: "2023-03-01 14:20:00",
  184.           startformat: "%Y-%m-%d %H:%M:%S",
  185.           type: "full",
  186.           label: "ST Roll <br> ST Speed : 3010.01 rpm",
  187.           style: { marker: { fill: "#d46b08" } },
  188.         },
  189.         {
  190.           start: "2023-03-01 14:20:00",
  191.           startformat: "%Y-%m-%d %H:%M:%S",
  192.           type: "full",
  193.           label: "ST Sync <br> Gross Output : 2.83 MW",
  194.           style: { marker: { fill: "#faad14" } },
  195.         },
  196.         {
  197.           start: "2023-03-01 14:20:00",
  198.           startformat: "%Y-%m-%d %H:%M:%S",
  199.           type: "full",
  200.           label: "Start Coal <br> Coal Flow : 7.25 ton/h",
  201.           style: { marker: { fill: "#7cb305" } },
  202.         },
  203.         {
  204.           start: "2023-03-01 14:35:00",
  205.           startformat: "%Y-%m-%d %H:%M:%S",
  206.           type: "full",
  207.           label: "Stop Oil & Period End <br> Oil Flow : 1.97 ton/h",
  208.           style: { marker: { fill: "#08979c" } },
  209.         },
  210.         {
  211.           start: "2023-03-01 14:35:00",
  212.           startformat: "%Y-%m-%d %H:%M:%S",
  213.           type: "full",
  214.           label: "Power Min Load <br> Gross Output : 3.37 MW",
  215.           style: { marker: { fill: "#096dd9" } },
  216.         },
  217.       ],
  218.     },
  219.     datamarker: [
  220.       {
  221.         value: "Oil Flow",
  222.         time: "2023-03-01 14:20:00",
  223.         timeformat: "%Y-%m-%d %H:%M:%S",
  224.         identifier: "A",
  225.         style: { marker: "#0099ff", text: "#0099ff" },
  226.         tooltext: "Start Oil <br> Oil Flow : 2.14 ton/h",
  227.       },
  228.       {
  229.         value: "ST Speed",
  230.         time: "2023-03-01 14:20:00",
  231.         timeformat: "%Y-%m-%d %H:%M:%S",
  232.         identifier: "B",
  233.         style: { marker: "#ff0000", text: "#ff0000" },
  234.         tooltext: "ST Roll <br> ST Speed : 3010.01 rpm",
  235.       },
  236.       {
  237.         value: "Gross Output",
  238.         time: "2023-03-01 14:20:00",
  239.         timeformat: "%Y-%m-%d %H:%M:%S",
  240.         identifier: "C",
  241.         style: { marker: "#722ed1", text: "#722ed1" },
  242.         tooltext: "ST Sync <br> Gross Output : 2.83 MW",
  243.       },
  244.       {
  245.         value: "Coal Flow",
  246.         time: "2023-03-01 14:20:00",
  247.         timeformat: "%Y-%m-%d %H:%M:%S",
  248.         identifier: "D",
  249.         style: { marker: "#7F9CF5", text: "#7F9CF5" },
  250.         tooltext: "Start Coal <br> Coal Flow : 7.25 ton/h",
  251.       },
  252.       {
  253.         value: "Oil Flow",
  254.         time: "2023-03-01 14:35:00",
  255.         timeformat: "%Y-%m-%d %H:%M:%S",
  256.         identifier: "F",
  257.         style: { marker: "#B794F4", text: "#B794F4" },
  258.         tooltext: "Stop Oil & Period End <br> Oil Flow : 1.97 ton/h",
  259.       },
  260.       {
  261.         value: "Gross Output",
  262.         time: "2023-03-01 14:35:00",
  263.         timeformat: "%Y-%m-%d %H:%M:%S",
  264.         identifier: "G",
  265.         style: { marker: "#F687B3", text: "#F687B3" },
  266.         tooltext: "Power Min Load <br> Gross Output : 3.37 MW",
  267.       },
  268.     ],
  269.   },
  270.   message: "Success",
  271.   total: 1,
  272.   limit: 1,
  273.   page: 0,
  274. };
  275.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement