File tree Expand file tree Collapse file tree
particle_tracking_manager/models/opendrift Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# What's New
22
3+ ## Unreleased
4+
5+ * Fixed bug so that horizontal diffusivity is now properly applied to model output.
6+
37## 2.5.0 (March 9, 2026)
48
59* Change to NWGOA config to fix issue with wet/dry sims not running with NWGOA.
Original file line number Diff line number Diff line change @@ -144,7 +144,11 @@ class OpenDriftConfig(TheManagerConfig):
144144 # add od_mapping to what should otherwise be in TheManagerConfig
145145 horizontal_diffusivity : float | None = FieldInfo .merge_field_infos (
146146 TheManagerConfig .model_fields ["horizontal_diffusivity" ],
147- Field (json_schema_extra = dict (od_mapping = "drift:horizontal_diffusivity" )),
147+ Field (
148+ json_schema_extra = dict (
149+ od_mapping = "environment:constant:horizontal_diffusivity"
150+ )
151+ ),
148152 )
149153 stokes_drift : bool = FieldInfo .merge_field_infos (
150154 TheManagerConfig .model_fields ["stokes_drift" ],
You can’t perform that action at this time.
0 commit comments