You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

kiln.ts 490 B

10 months ago
123456789101112131415161718
  1. import utils from '../utils';
  2. function genKilnInfo() {
  3. return {
  4. kilnPressure: utils.rand(0, 100) + 'Kpa',
  5. waterTemp: utils.rand(0, 100) + '℃',
  6. waterFlow: utils.rand(30, 90) + 'm³/h',
  7. waterPressure: utils.rand(10, 50) + 'Kpa',
  8. windPressure: utils.rand(10, 30) + 'Kpa',
  9. gasPressure: utils.rand(10, 30) + 'Kpa',
  10. // 碹顶加权温度
  11. topTemp: utils.rand(30, 60) + '℃',
  12. // 融化加权温度
  13. meltTemp: utils.rand(100, 200) + '℃',
  14. };
  15. }
  16. export default genKilnInfo;