-
Hi, everyone~~ I am tring to couple ERSEM-FABM-FVCOM to simulate the phytoplankton distribution. I want to add a atmospheric deposition to the couppled model. I add the precipitation file to the fvcom and add biological parameters in that nc file. but I found the coupled model wont read the nutrients in the precipitation nc file. What should I do? How can I add the N3_n amd N1_p to the coupled model. for the L4 example, the yaml file has the content like: are they about atmospheric deposition? and what is the mean " flux: Q17/p_sms_tot" ? give the parameter name for n1p in atmospheric deposition nc file ? where can I put the atmospheric deposition nc file name for the couppled model to recognize the dynamic forcing file? what is the paramter names for n1p or n3n in atmospheric deposition file? usually the unit should be umol /m2/s , am I right? thank you so much for your help and time in addvance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, these questions are quite specific to the FVCOM-FABM coupler and ERSEM and you may therefore want to follow up with the people behind those. But for what it's worth: the yaml snippet you show creates surface fluxes for If you want to add atmospheric deposition from file, the typical way to do this is to omit the
That would leave You can also prescribe a constant surface flux (constant in both time and space) via
|
Beta Was this translation helpful? Give feedback.
Hi, these questions are quite specific to the FVCOM-FABM coupler and ERSEM and you may therefore want to follow up with the people behind those. But for what it's worth: the yaml snippet you show creates surface fluxes for
N3/n
(nitrate, 2x) and forN1/p
(phosphate). But instead of speciyfing them externally, the surface fluxes are instead set equal to the few non-conservative fluxes in the model, namely the denitrification rate (ben_nit/G4n_sms_tot
) and burial rates of nitrogen and phosphorus (Q17/n_sms_tot
,Q17/p_sms_tot
). This is done to ensure the total bioavailable amounts of nitrogen and phosphorus in the system stay constant over time.If you want to add atmospheric deposition from…