Commit d3c7bc0a authored by Matthias Betz's avatar Matthias Betz
Browse files

changing divisor to double

parent 636e41dc
...@@ -229,8 +229,8 @@ public class TreeWaterDemand { ...@@ -229,8 +229,8 @@ public class TreeWaterDemand {
double omegas = Math.acos(-Math.tan(phi) * Math.tan(delta)); double omegas = Math.acos(-Math.tan(phi) * Math.tan(delta));
double ra = 0; double ra = 0;
if (!(omega < -omegas || omega > omegas)) { if (!(omega < -omegas || omega > omegas)) {
double omega1 = omega - Math.PI * 1 / 24; double omega1 = omega - Math.PI * 1 / 24d;
double omega2 = omega + Math.PI * 1 / 24; double omega2 = omega + Math.PI * 1 / 24d;
ra = 12 * 60 / Math.PI * 0.0820 * dr * ((omega2 - omega1) * Math.sin(phi) * Math.sin(delta) ra = 12 * 60 / Math.PI * 0.0820 * dr * ((omega2 - omega1) * Math.sin(phi) * Math.sin(delta)
+ Math.cos(phi) * Math.cos(delta) * (Math.sin(omega2) - Math.sin(omega1))); + Math.cos(phi) * Math.cos(delta) * (Math.sin(omega2) - Math.sin(omega1)));
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment