Deviation.java 821 B

12345678910111213141516171819202122
  1. package com.gyee.runeconomy.service.WindDirection;
  2. public class Deviation {
  3. // 计算风速偏差率
  4. public static double calculateSpeedDeviation(double fanSpeed, double towerSpeed) {
  5. if (towerSpeed == 0) {
  6. towerSpeed = 1;
  7. }
  8. double deviation = Math.abs(towerSpeed - fanSpeed) / towerSpeed * 100;
  9. return Double.parseDouble(String.format("%.2f", deviation)); // 保留两位小数
  10. }
  11. // 计算风向差值
  12. public static double calculateDirectionDeviation(double fanDirection, double towerDirection) {
  13. double difference = Math.abs(towerDirection - fanDirection);
  14. if (difference > 180) {
  15. difference = 360 - difference;
  16. }
  17. return Double.parseDouble(String.format("%.2f", difference)); // 保留两位小数
  18. }
  19. }