We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bff0fb commit 65ec921Copy full SHA for 65ec921
columnphysics/icepack_fsd.F90
@@ -194,8 +194,11 @@ subroutine icepack_init_fsd_bounds( &
194
floe_rad_c = (floe_rad_h+floe_rad_l)/c2
195
196
floe_area_l = c4*floeshape*floe_rad_l**2
197
- floe_area_c = c4*floeshape*floe_rad_c**2
198
floe_area_h = c4*floeshape*floe_rad_h**2
+! floe_area_c = c4*floeshape*floe_rad_c**2
199
+! This is exactly in the middle of floe_area_h and floe_area_l
200
+! Whereas the above calculation is closer to floe_area_l.
201
+ floe_area_c = (floe_area_h+floe_area_l)/c2
202
203
floe_binwidth = floe_rad_h - floe_rad_l
204
0 commit comments