-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Daily wind cycling error in MOM6 ocean-only idealized model #631
Comments
For reasons I will not defend, the netcdf data needs certain attributes (not standard). I'm not sure where the documentation is (somewhere on the FMS pages) but an example of a file that does work is in
|
Sorry, just reread and saw that you had already sorted out the attributes, and found a fix. The 365 days is a good gotcha - another oddity we didn't know about! |
Hi! I found something interesting in the MOM6 source code: (directory: MOM6/config_src/drivers/solo_driver/MOM_surface_forcing.F90) This is within subroutine wind_forcing_from_file(sfc_state, forces, day, G, US, CS): ... if (time_lev_daily < 31) then ; time_lev_monthly = 0 time_lev_daily = time_lev_daily+1 select case (CS%wind_nlev) I marked the vital component boldly, you could see there is no case of other time levels except daily cycling and monthly cycling. |
Hi! I want to set wind stress with 3 months of variability as input data in the MOM6 ocean-only idealized model, but I found it is constant without varying... could anyone help me with this issue? Thanks!
The tau_mag output (show as constant):
My input data showed below:
Also, my configuration setting:
Recent finding: The input data could only be read with 365 days, less or more days will make the MOM6 ocean-only model read wind stress as a constant defaultly. To derive wind stress variability with 3 months effect, I chose to save model output every 360 days, then it worked well.
The text was updated successfully, but these errors were encountered: