COBALT diagnostics for PAR, MLD, euphotic depth (Zeu) #80
-
Hi all, I'm new to COBALT and trying to implement a diagnostic seawater dimethylsulfide (DMS) parameterisation algorithm, for which I need a few input variables. Can anyone please suggest the best diagnostics for MLD, PAR, and Zeu (1% penetration of PAR) in COBALT? Here's what I'm thinking: PAR: output sfc_irrad (i,j) as a diagnostic? Or use cobalt%irr_inst(i,j,1) or cobalt%f_irr_aclm_sfc(i,j,1)? I'd be grateful if anyone could point me in the right direction. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @gmanville, I believe @charliestock and others can provide more details and additional insights, but here I just wanted to clarify the differences among
And I think the calculation of I hope this clarifies some of your questions and assists you in designing your DMS parameterization algorithm. |
Beta Was this translation helpful? Give feedback.
-
@gmanville, I'm glad you found that helpful. Currently, |
Beta Was this translation helpful? Give feedback.
@gmanville, I'm glad you found that helpful. Currently,
cobalt%mld_aclm(i,j)
is not exactly the same as MOM6'sMLD_003
, though the difference is minimal. This value is calculated within COBALT, using a default criterion based on de Boyer Montegut et al. (2004). The mixed layer depth is determined relative to a reference depth of 10m, with a potential density difference of 0.03 kg m-3. We have a PR under review to incorporate the MLD directly from MOM6. For now, I think it's fine to continue usingcobalt%mld_aclm(i,j)
for your development.