You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 2D: U and V nodes are on the cell vertices and interpolated bilinearly as a A-grid.
708
+
T node is at the cell centre and interpolated constant per cell as a C-grid.
709
+
In 3D: U and V nodes are at the midlle of the cell vertical edges,
710
+
They are interpolated bilinearly (independently of z) in the cell.
711
+
W nodes are at the centre of the horizontal interfaces, but below the U and V.
712
+
They are interpolated linearly (as a function of z) in the cell.
713
+
Note that W is normally directed upward in MOM5, but Parcels requires W
714
+
in the positive z-direction (downward) so W is multiplied by -1.
715
+
T node is at the cell centre, and constant per cell.
716
+
:param indices: Optional dictionary of indices for each dimension
717
+
to read from file(s), to allow for reading of subset of data.
718
+
Default is to read the full extent of each dimension.
719
+
Note that negative indices are not allowed.
720
+
:param fieldtype: Optional dictionary mapping fields to fieldtypes to be used for UnitConverter.
721
+
(either 'U', 'V', 'Kh_zonal', 'Kh_meridional' or None)
722
+
:param mesh: String indicating the type of mesh coordinates and
723
+
units used during velocity interpolation, see also https://nbviewer.jupyter.org/github/OceanParcels/parcels/blob/master/parcels/examples/tutorial_unitconverters.ipynb:
724
+
725
+
1. spherical (default): Lat and lon in degree, with a
726
+
correction for zonal velocity U near the poles.
727
+
2. flat: No conversion, lat/lon are assumed to be in m.
728
+
:param allow_time_extrapolation: boolean whether to allow for extrapolation
729
+
(i.e. beyond the last available time snapshot)
730
+
Default is False if dimensions includes time, else True
731
+
:param time_periodic: To loop periodically over the time component of the Field. It is set to either False or the length of the period (either float in seconds or datetime.timedelta object). (Default: False)
732
+
This flag overrides the allow_time_interpolation and sets it to False
733
+
:param tracer_interp_method: Method for interpolation of tracer fields. It is recommended to use 'bgrid_tracer' (default)
734
+
Note that in the case of from_mom5() and from_bgrid(), the velocity fields are default to 'bgrid_velocity'
735
+
:param field_chunksize: size of the chunks in dask loading
0 commit comments