You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (d_cf >= d_cf_min * rkilo) thenif (lon(i_n) > lon(i_s) .and. theta_d_cf <= pi_thirds) thencall quadric_fit(one(1:one_num, 1:2), one_num, a, b, c, k, r2)
if(r2 >=0.8.and. k <=0.1) then
mtype_part=1endifelseif (theta_d_cf <= pi_ninths) thencall quadric_fit(one(1:one_num, 1:2), one_num, a, b, c, k, r2)
if(r2 >=0.8.and. k<=0.1) then
mtype_part=1endifendifendif
It seems like the routine checks if the angle, theta_d_cf, is positive and below 60 degree. if this is not the case the routine checks if the angle is below 20 degree.
Is this routine detecting angles between -20 and 60 degree? Shouldn't it satisfy two (both) conditions instead of "elseif"?
The text was updated successfully, but these errors were encountered:
L95 in cf_synop_check.f90 are as follows:
It seems like the routine checks if the angle,
theta_d_cf
, is positive and below 60 degree. if this is not the case the routine checks if the angle is below 20 degree.Is this routine detecting angles between -20 and 60 degree? Shouldn't it satisfy two (both) conditions instead of "elseif"?
The text was updated successfully, but these errors were encountered: