marbl-ecosys / MARBL

Marine Biogeochemistry Library
https://marbl-ecosys.github.io
Other
13 stars 21 forks source link

loosen theshold for DOP_loss_P_bal warning messages #397

Open klindsay28 opened 2 years ago

klindsay28 commented 2 years ago

In CESM runs, we get many DOP_loss_P_bal warning messages. Users have asked about these on the DiscussCESM forum. We should reduce the volume of these warning messages. One possible approach is to replace

(domain%delta_z(k) * DOP_loss_P_bal .gt. Jint_Ptot_thres)

in subroutine compute_large_detritus_prod in marbl_interior_tendency_mod.F90 with

(domain%delta_z(k) * DOP_loss_P_bal .gt. 1.0e3_r8 * Jint_Ptot_thres)