"For a given wind turbine type and effective wind speed (WSeff), the `WindTurbines` object provides the power and thrust coefficient (CT), as well as the wind turbine hub height (H) and diameter (D)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Setting up Windturbine objects"
]
},
{
"cell_type": "markdown",
"metadata": {},
...
...
@@ -102,7 +109,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Multitype Wind Turbines\n",
"## Multi-type Wind Turbines\n",
"You can collect a list of different turbine types into a single WindTurbines object"
]
},
...
...
@@ -119,26 +126,6 @@
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'MyWT'"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"wts.name(type=3)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
...
...
@@ -166,16 +153,16 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.legend.Legend at 0x25a6d4fc160>"
"<matplotlib.legend.Legend at 0x25fce538a30>"
]
},
"execution_count": 8,
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
},
...
...
@@ -210,16 +197,16 @@
},
{
"cell_type": "code",
"execution_count": 9,
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.legend.Legend at 0x25a6e953d60>"
"<matplotlib.legend.Legend at 0x25fce8b3070>"
]
},
"execution_count": 9,
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
},
...
...
@@ -248,13 +235,310 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Plot"
"## Multidimensional Power/Ct curves"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Some WAsP wtg files defines multiple wind turbine modes. E.g. the `Vestas V112-3.0 MW.wtg` which has 12 modes representing different levels of air density. In this case, the mode defaults to 0."
"WindTurbines can be defined using a `PowerCtFunctionList`. In fact this is the approach used by multi-mode WAsP wind turbines and also when creating multi-type wind turbine (in which case the key is `type`)"
"It is also possible to setup a wind turbine using a multidimensional power and ct tabular array. In this case the power can ct values will be calculated usign multidimensional linear interpolation"
"`PowerCtTabular` takes a `method` argument which can be \n",
"\n",
"- `linear`: Linear interpolation (default)\n",
"- `pchip`: Piecewise Cubic Hermite Interpolating Polynomial. Smooth interpolation with continous first order derivatives and not overshoots\n",
"- `spline`: Smooth interpolation with continous first and second order derivatives. Closer to original piecewise linear curve, but may have overshoots"
For a given wind turbine type and effective wind speed (WSeff), the `WindTurbines` object provides the power and thrust coefficient (CT), as well as the wind turbine hub height (H) and diameter (D).
%% Cell type:markdown id: tags:
## Setting up Windturbine objects
%% Cell type:markdown id: tags:
### Predefined example WindTurbines
PyWake contains a few predefined turbines, e.g. the V80 from Hornsrev1, the 3.35MW from IEA task 37 and the DTU10MW.
Some WAsP wtg files defines multiple wind turbine modes. E.g. the `Vestas V112-3.0 MW.wtg` which has 12 modes representing different levels of air density. In this case, the mode defaults to 0.
WindTurbines can be defined using a `PowerCtFunctionList`. In fact this is the approach used by multi-mode WAsP wind turbines and also when creating multi-type wind turbine (in which case the key is `type`)
It is also possible to setup a wind turbine using a multidimensional power and ct tabular array. In this case the power can ct values will be calculated usign multidimensional linear interpolation