From d379633c56b5fc1e92834a96216c0aceba390b86 Mon Sep 17 00:00:00 2001 From: mmpe <mmpe@dtu.dk> Date: Tue, 14 Dec 2021 12:08:34 +0100 Subject: [PATCH] add that input order of xarray site dimensions must follow the listed order --- docs/notebooks/Site.ipynb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/notebooks/Site.ipynb b/docs/notebooks/Site.ipynb index cc8eb4c9e..45d853918 100644 --- a/docs/notebooks/Site.ipynb +++ b/docs/notebooks/Site.ipynb @@ -138,15 +138,14 @@ " - `TI`: Turbulence intensity\n", " - xxx: Custom variables needed by the wind turbines to compute power, ct or loads\n", "\n", - " - Each data variable may be constant or depend on any combination of:\n", + " - Each data variable may be constant or depend on a combination of the following inputs (Note, the input variables must be ordered according to the list, i.e. `P(wd,ws)` is ok, while `P(ws,wd)` is not):\n", "\n", - " - `ws` : Reference wind speed\n", - " - `wd`: Refernce wind direction\n", " - `i`: Wind turbine position (one position per wind turbine)\n", " - `x`,`y`: Gridded 2d position\n", " - `x`,`y`,`h`: Gridded 3d position\n", " - `time`: Time\n", - "\n", + " - `wd`: Refernce wind direction\n", + " - `ws` : Reference wind speed\n", " \n", " \n", "- `initial_position`, array_like, shape=(#wt, 2), optional\n", -- GitLab