Blade Coordinate Systems
The blades in Bladed are defined as a series of 2D sections, distributed along the blade's span. These 2D planes are defined using the blade root coordinate system and at each of the 2D sections, it is possible to define property systems that describe the structural and aerodynamic properties of the blade. The underlying theory that Bladed implements for coordinate transformations is outlined in the blade coordinate systems theory article.
This article summarises how the blade section planes are defined and how the reference coordinate systems are created.
The Blade Root Coordinate System
The blade root coordinate system is the cartesian coordinate system in which the blade sections are positioned, as illustrated in Figure 1 and summarised in Table 1.
Axis | Alignment |
---|---|
\(X_{root}\) | When the MountingPoints cone angle, Mounting cone angle, and the blade pitch angle are zero, the blade \(X_{root}\) axis is parallel to the rotor rotational axis. |
\(Y_{root}\) | The \(Z_{root}\) axis follows from the [right-hand rule convention]. |
\(Z_{root}\) | The \(Z_{root}\) axis points along the blade towards the blade tip. This is equal to the pitch axis of the blade if there is no sweep or cone outboard of the pitch bearing. |
The origin of the blade root system is the distal node of the hub. This is often also referred to as the body-fixed coordinate system of the blade . The orientation of the body-fixed coordinate system can be altered by a set of inboard and outboard mounting properties. As illustrated in Figure 2, the inboard properties change the pitch axis, whereas the outboard properties do not. The inboard mounting properties are defined by the MountingPoints
properties of the hub, whereas the Mounting
properties of the Blade
component define the outboard properties.
Note
The \(z_{root}\) axis is not necessarily the same as the pitch axis as the Mounting
cone and sweep is applied outboard of the pitch bearing.
The Mounting
properties, applied outboard of the pitch bearing:
ConingAngle
: The blade cone angle in radians, has the effect of adding a contribution to the prebend deflection which increases linearly with distance along the blade. A positive cone angle means that the blade tip is coned away from the nacelle as shown in Figure 2.SweepAngle
: The blade sweep angle in radians, a positive sweep angle means that the blade tip is swept back from the pitch axis, away from the direction of rotation.
An example of some arbitrary values for the Mounting
property, note that these are not required:
"Mounting": {
"ConingAngle": 0.05,
"SweepAngle": 0.05
},
Note
Origin
's Z
coordinate or DistanceAlongSpan
at the first sections must be set to 0.
Only the Origin
's Z
(\(Z_{ref_0}\)) coordinate or as an alternative theDistanceAlongSpan
are an absolute requirement to define the section plane. All section reference planes in the same blade should be defined using the same options, whereas the code does not prevent the user from mixing both options, the outcomes might not be what the user expects. In the same way the sections will always be represented in the blade geometry as monotonically increasing in distance from the root.
Property | Units | Default Behaviour |
---|---|---|
Origin.X |
meters | Defaults to \(0.0\) |
Origin.Y |
meters | Defaults to \(0.0\) |
Origin.Z or DistanceAlongSpan |
meters | Required user input |
ZAxis |
[ - ] | Defaults to the average direction from the last section's Origin to the next section's |
YAxis 1 |
[ - ] | [Defaults to the projection of the blade Y-axis axis onto the section plane] |
RotationAboutReferenceZ 2 |
radians | If not supplied YAxis or its default value will be used |
The default orientation of the reference section plane's axis depend of the values set to the Origin
point of that section and the location and orientation of the previous (closest on the root direction) defined section. For more details see the Default Orientation of Section Planes section.
-
The reference system's \(X_{ref}\) axis is not an input, but is calculated by a cross product of the \(Y_{ref}\) and \(Z_{ref}\) vectors to produce a vector normal to both. The \(Z_{ref}\) and \(X_{ref}\) are then crossed with each other once more to produce a rectified \(Y_{ref}\) such that the axis set obeys the [right-hand rule convention].↩
-
The options
RotationAboutReferenceZ
andYAxis
are mutually exclusive. If neither are specified Bladed will default theYAxis
property. Details about howRotationAboutReferenceZ
is implemented by Bladed can be found calculation of the reference frame article.↩