-
Notifications
You must be signed in to change notification settings - Fork 254
fix clock argument in TriadIsopycnalSkewSymmetricDiffusivity's explicit_R₃₃_∂z_c function
#4780
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
base: main
Are you sure you want to change the base?
Conversation
clock argument in TriadIsopycnalSkewSymmetricDiffusivity's explicit_R₃₃_∂z_c function
|
Can you add a test that would catch this? |
…igans.jl into xk/fix-clock-triad
…k argument checks
|
another missing method bug was caught during test writing:
(funnily enough I remembered catching this bug a few weeks ago and I thought I placed a fix but I can't find where that fix was) and here are some missing function arguments too in the diffusivity fields: Lines 167 to 175 in f9cba31
@simone-silvestri @glwagner @navidcy what do you think of the tests? I don't have much experience/intuition on what should/shouldn't be in a test so your advice would be great! |
I think you can just take a time-step eg function time_step_without_error(model)
time_step!(model, 1)
return true
end
@test time_step_without_error(model)or some variation thereof |
Closes #4779