We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Need to have option to switch on/off vertical interpolation i.e. keep boundary conditions on the native grid or interpolate onto the destination grid
The text was updated successfully, but these errors were encountered:
@anwiseNOCL looks like I opened this 4 years ago!
Sorry, something went wrong.
# TODO: put conditional here as we may want to keep data on paren # vertical grid DstCoord.depths = {"t": {}, "u": {}, "v": {}} for grd in ["t", "u", "v"]: DstCoord.depths[grd]["bdy_H"] = np.nanmax(z.zpoints["w" + grd], axis=0) DstCoord.depths[grd]["bdy_dz"] = np.diff(z.zpoints["w" + grd], axis=0) DstCoord.depths[grd]["bdy_dz"] = np.vstack( [DstCoord.depths[grd]["bdy_dz"], np.zeros((1, nbdy[grd]))] ) DstCoord.depths[grd]["bdy_z"] = z.zpoints[grd] logger.info("Depths defined")
see profiler.py
profiler.py
A conditional can be placed here to pass the parent vertical gird to the child if interpolation isn't required.
NB in NEMO 4.2 deptht -> gdept likewise for u and v
deptht
gdept
e3[t/u/v] also need to be output into the BDY files
jdha
Successfully merging a pull request may close this issue.
Need to have option to switch on/off vertical interpolation i.e. keep boundary conditions on the native grid or interpolate onto the destination grid
The text was updated successfully, but these errors were encountered: