Personal tools

Difference between revisions of "Module Turbine"

From MohidWiki

Jump to: navigation, search
(Coefficient parameterisation)
(Vertical discretisation)
Line 37: Line 37:
  
 
=== Vertical discretisation ===
 
=== Vertical discretisation ===
 +
The vertical discretization is made through the equation
 +
 +
*''A_{T_k}=r^{2}θ/2-rsin(θ/2)d-∑_{k=1}A_{T_k-1}''
 +
 +
Where ''A_{T_k}'' is the area swept by the blades in layer ''k'', ''r'' is the blade length, ''θ'' is the angle between two consecutive blades and ''d'' is the vertical distance between the centre of the blade and the end of the blade.
 +
 +
The force excreted by the turbine is calculated with the velocity of the flow in each layer while for the power, the velocity is an average value between the layers that contain the turbine. So, the fores can be rewritten as follow:
 +
 +
*'''''F_{T_k}'''=(1/2)ρA_{T_k}C_{T}U_{k}'''U_{k}'''''
 +
 +
*''P_{T}=(1/2)ρA_{T}C_{P}U_{AV}^3''
 +
 +
Where '''''U_{k}''''' is the velocity vector of the turbine in an Arakawa C manner, ''U_{k}'' is the velocity modulus and ''U_{AV}'' is the average modulus velocity of the k layers of the cells in the coordinates i,j that contain the turbine calculats as:
 +
 +
''U_{AV}=∑_{k}A_{T_k}U_{k}/∑_{k}A_{T_k}''
  
 
== Limitations of the model ==
 
== Limitations of the model ==

Revision as of 12:52, 16 July 2019

Overview

Module Turbine is in charge of calculating the force exerted by turbines in the water flow as well as the power and energy extraction. This implementation is available for 2D and 3D simulations being, in the 3D model, only discretised in the vertical domain. There is no discretisation of the turbine geometry (and force) in the horizontal domain, the model computes the force as a punctual force in the cell where the turbine is placed.

For the moment, the model is thought for horizontal bidirectional turbines, with pitch control and free rotation in the vertical axis (the perpendicularity between flow and turbine is implicit in the model as the force is introduced into the hydrodynamic model as a punctual force).

Implementation

Forces

Failed to parse (unknown error): \text{F}_{T} = \frac{1}{2}\rho A_{T} C_{T} U^{2}

Failed to parse (unknown error): \text{P}_{T} = \frac{1}{2}\rho A_{T} C_{P} U^{3}

Thrust force produced by the turbine rotor due to the energy extraction

F_{T} = (1/2)ρA_{T}C_{T}U^{2}

The power extracting by the turbine

P_{T}=(1/2)ρA_{T}C_{P}U^{3}

Where ρ is the water density, A_{T} is the area swept by the blades, C_{T} is the thrust coefficient that quantifies the force exerted by the turbine to the flow and C_{P} is the power coefficient that quantifies the amount of power extracted from the flow.

Coefficient parameterisation

C_{T}=

  • 0 if U≤U_{C}
  • C_{T_0} if U_{C}<U≤U_{D}
  • C_{T_0}U_{D}^{3}/U^{3} if U>U_{D}


C_{P}=

  • 0 if U≤U_{C}
  • C_{P_0} if U_{C}<U≤U_{D}
  • C_{P_0}U_{D}^{3}/U^{3} if U>U_{D}

Where C_{T_0} and C_{P_0} are the design values for each coefficient and U_{C} and U_{D} are the cut-in and design speed, respectively

Vertical discretisation

The vertical discretization is made through the equation

  • A_{T_k}=r^{2}θ/2-rsin(θ/2)d-∑_{k=1}A_{T_k-1}

Where A_{T_k} is the area swept by the blades in layer k, r is the blade length, θ is the angle between two consecutive blades and d is the vertical distance between the centre of the blade and the end of the blade.

The force excreted by the turbine is calculated with the velocity of the flow in each layer while for the power, the velocity is an average value between the layers that contain the turbine. So, the fores can be rewritten as follow:

  • F_{T_k}=(1/2)ρA_{T_k}C_{T}U_{k}U_{k}
  • P_{T}=(1/2)ρA_{T}C_{P}U_{AV}^3

Where U_{k} is the velocity vector of the turbine in an Arakawa C manner, U_{k} is the velocity modulus and U_{AV} is the average modulus velocity of the k layers of the cells in the coordinates i,j that contain the turbine calculats as:

U_{AV}=∑_{k}A_{T_k}U_{k}/∑_{k}A_{T_k}

Limitations of the model

Input data format

Configuration files

Thesis link