Dear Klein,
Thanks for replying! I have read about that threshold in the literature, but I have compared them in the same way in both the COSP outputs and the observations. And I also exclude the first bin with tau < 0.3 as following in NCL:
high_lev_idx = ind(f->plev_bnds(:,0) .ge. 0.0 .and. \
f->plev_bnds(:,0) .lt. 44000.0)
mid_lev_idx = ind(f->plev_bnds(:,0) .ge. 44000.0 .and. \
f->plev_bnds(:,0) .lt. 68000.0)
low_lev_idx = ind(f->plev_bnds(:,0) .ge. 68000.0 .and. \
f->plev_bnds(:,0) .le. 100000.0)
opt_idx = ind(f->tau .gt. 0.3)
clhisccp = dim_sum_n_Wrap(f->clisccp(:,opt_idx,high_lev_idx,:,:), (/1,2/))
clmisccp = dim_sum_n_Wrap(f->clisccp(:,opt_idx,mid_lev_idx,:,:), (/1,2/))
cllisccp = dim_sum_n_Wrap(f->clisccp(:,opt_idx,low_lev_idx,:,:), (/1,2/))
tmp = dim_avg_n_Wrap(cltisccp, 0)- \
dim_avg_n_Wrap(clhisccp, 0)- \
dim_avg_n_Wrap(clmisccp, 0)- \
dim_avg_n_Wrap(cllisccp, 0)
print(min(tmp))
print(max(tmp))
where clisccp, cltisccp with units % are the mean annual cycle (12 months) of the 30-year AMIP results. The result is:
(0) -43.32574
(0) 38.15734
The MODIS outputs show the equality of "cltmodis = clhmodis+clmmodis+cllmodis".
Best regards,
Li Dong