OpenDrift / opendrift

Open source framework for ocean trajectory modelling
https://opendrift.github.io
GNU General Public License v2.0
249 stars 120 forks source link

The trajectories of different objects are not same under the same water_uv? #471

Closed limaolin1981611 closed 3 years ago

limaolin1981611 commented 3 years ago

I have set the parameters as follows: objectType to 26 and 16, x_wind and y_wind both to 0, reader_water_uv both from norkyst800_subset_16Nov2015.nc. I thought the results were same, but they were different. Why?

leeway_point_run1

leeway_point_run2

knutfrode commented 3 years ago

This is because the Leeway model contains coefficients with both mean and perturbations/standard-deviations to the windage. to include variability/uncertainty. So even with zero wind, the model add some perturbations.

This is the same reason as discussed in #397

limaolin1981611 commented 3 years ago

OK, Thanks

limaolin1981611 commented 3 years ago

If I only want to take wate_uv into account, How ? I have set the 3rd, 6th and 9th parameters of drift properties of an object to 0, It not works.

knutfrode commented 3 years ago

I believe you will get only current if you choose category "SLDMB".

However, for this case you should rather use OceanDrift instead of Leeway model.

On Mon, Dec 21, 2020, 15:16 limaolin1981611 notifications@github.com wrote:

If I only want to take wate_uv into account, How ? I have set the 3rd, 6th and 9th parameters of drift properties of an object to 0, It not works.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/OpenDrift/opendrift/issues/471#issuecomment-748995408, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABH25I77YLIDSSEZ3MSLRBDSV5KDLANCNFSM4U2ENVEA .

limaolin1981611 commented 3 years ago

Can you tell me the differences and relationships among leeway, oceandrift and shipdrift? And how can I choose the right model from them?

knutfrode commented 3 years ago

Leeway is for objects floating at the surface, of any of the following categories: https://github.com/OpenDrift/opendrift/blob/master/opendrift/models/OBJECTPROP.DAT This includes various types of ships and boats, up to length of about 30m.

TheShipDrift model is not based on categories, but on four adjustable parameters, the length, width and height (below and above water) of the ship. This should be used for ships larger than about 30m

The OceanDrift model is a general 3D model where particles can also move vertically due to vertical current component (if provided by a reader) or vertical mixing (if vertical diffusivity is larger than zero). But this may also be used as a 2D model (zero vertical velocity and mixing), where a "wind_drift_factor" may be specified to move objects with wind in addition to surface current.

knutfrode commented 3 years ago

Closing this issue. Please re-open if still relevant.