@idm-plugin/meteo2 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2462,7 +2462,7 @@ class T {
|
|
|
2462
2462
|
p = 51.6 * Math.exp(-0.0223 * M + 0.0281 * c) * Math.pow(Math.max(W, 10) / 100, 0.155);
|
|
2463
2463
|
} else
|
|
2464
2464
|
p = 46.4 * Math.exp(-0.0155 * M + 0.0169 * c);
|
|
2465
|
-
return Math.max(
|
|
2465
|
+
return Math.max(90 / 1.852, Math.min(150 / 1.852, p));
|
|
2466
2466
|
}
|
|
2467
2467
|
/**
|
|
2468
2468
|
* 基于台风强度推算风圈基础半径的经验公式
|