forked from OpenFAST/openfast
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from andrew-platt/f/Linear
f/Linear -- documentation updates for nodal outputs
- Loading branch information
Showing
18 changed files
with
955 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.. _AD-Nodal-Outputs: | ||
|
||
Nodal Outputs | ||
~~~~~~~~~~~~~ | ||
|
||
In addition to the named outputs in :numref:`AD-Outputs` above, AeroDyn allows | ||
for outputting the full set blade node motions and loads (tower nodes | ||
unavailable at present). Please refer to the AeroDyn_Nodes tab in the | ||
Excel file :download:`OutListParameters.xlsx <../../../OtherSupporting/OutListParameters.xlsx>` | ||
for a complete list of possible output parameters. | ||
|
||
This section follows the `END` statement from normal Outputs section described | ||
above, and includes a separator description line followed by the following | ||
optinos. | ||
|
||
**BldNd_BladesOut** specifies the number of blades to output. Possible values | ||
are 0 through the number of blades AeroDyn is modeling. If the value is set to | ||
1, only blade 1 will be output, and if the value is 2, blades 1 and 2 will be | ||
output. | ||
|
||
**BldNd_BlOutNd** specifies which nodes to output. This is currently unused. | ||
|
||
The **OutList** section controls the nodal output quantities generated by | ||
AeroDyn. In this section, the user specifies the name of the channel family to | ||
output. The output name for each channel is then created internally by AeroDyn | ||
by combining the blade number, node number, and channel family name. For | ||
example, if the user specifies **AxInd** as the channel family name, the output | ||
channels will be named with the convention of **B**\ :math:`\mathbf{\beta}`\ | ||
**N###AxInd** where :math:`\mathbf{\beta}` is the blade number, and **###** is | ||
the three digit node number. | ||
|
||
|
||
Sample Nodal Outputs section | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
This sample includes the ``END`` statement from the regular outputs section. | ||
|
||
.. container:: | ||
:name: File:ADNodalOutputs | ||
|
||
.. literalinclude:: examples/NodalOutputs.txt | ||
:linenos: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
END of input file (the word "END" must appear in the first 3 columns of this last OutList line) | ||
---------------------- NODE OUTPUTS -------------------------------------------- | ||
3 BldNd_BladesOut - Blades to output | ||
99 BldNd_BlOutNd - Blade nodes on each blade (currently unused) | ||
OutList - The next line(s) contains a list of output parameters. See OutListParameters.xlsx, ElastoDyn_Nodes tab for a listing of available output channels, (-) | ||
"VUndx" - x-component of undisturbed wind velocity at each node | ||
"VUndy" - y-component of undisturbed wind velocity at each node | ||
"VUndz" - z-component of undisturbed wind velocity at each node | ||
"VDisx" - x-component of disturbed wind velocity at each node | ||
"VDisy" - y-component of disturbed wind velocity at each node | ||
"VDisz" - z-component of disturbed wind velocity at each node | ||
"STVx" - x-component of structural translational velocity at each node | ||
"STVy" - y-component of structural translational velocity at each node | ||
"STVz" - z-component of structural translational velocity at each node | ||
"VRel" - Relvative wind speed at each node | ||
"DynP" - Dynamic pressure at each node | ||
"Re" - Reynolds number (in millions) at each node | ||
"M" - Mach number at each node | ||
"Vindx" - Axial induced wind velocity at each node | ||
"Vindy" - Tangential induced wind velocity at each node | ||
"AxInd" - Axial induction factor at each node | ||
"TnInd" - Tangential induction factor at each node | ||
"Alpha" - Angle of attack at each node | ||
"Theta" - Pitch+Twist angle at each node | ||
"Phi" - Inflow angle at each node | ||
"Curve" - Curvature angle at each node | ||
"Cl" - Lift force coefficient at each node | ||
"Cd" - Drag force coefficient at each node | ||
"Cm" - Pitching moment coefficient at each node | ||
"Cx" - Normal force (to plane) coefficient at each node | ||
"Cy" - Tangential force (to plane) coefficient at each node | ||
"Cn" - Normal force (to chord) coefficient at each node | ||
"Ct" - Tangential force (to chord) coefficient at each node | ||
"Fl" - Lift force per unit length at each node | ||
"Fd" - Drag force per unit length at each node | ||
"Mm" - Pitching moment per unit length at each node | ||
"Fx" - Normal force (to plane) per unit length at each node | ||
"Fy" - Tangential force (to plane) per unit length at each node | ||
"Fn" - Normal force (to chord) per unit length at each node | ||
"Ft" - Tangential force (to chord) per unit length at each node | ||
"Clrnc" - Tower clearance at each node (based on the absolute distance to the nearest point in the tower from blade node B#N# minus the local tower radius, in the deflected configuration); please note that this clearance is only approximate because the calculation assumes that the blade is a line with no volume (however, the calculation does use the local tower radius); when blade node B#N# is above the tower top (or below the tower base), the absolute distance to the tower top (or base) minus the local tower radius, in the deflected configuration, is output | ||
"Vx" - Local axial velocity | ||
"Vy" - Local tangential velocity | ||
"GeomPhi" - Geometric phi? If phi was solved using normal BEMT equations, GeomPhi = 1; otherwise, if it was solved geometrically, GeomPhi = 0. | ||
"Chi" - Skew angle (used in skewed wake correction) | ||
"UA_Flag" - Flag indicating if UA is turned on for this node. | ||
END of input file (the word "END" must appear in the first 3 columns of this last OutList line) | ||
--------------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.. _BD-Nodal-Outputs: | ||
|
||
Nodal Outputs | ||
~~~~~~~~~~~~~ | ||
|
||
In addition to the named outputs in :numref:`BD-Outputs` above, BeamDyn allows | ||
for outputting the full set blade node motions and loads (tower nodes | ||
unavailable at present). Please refer to the BeamDyn_Nodes tab in the | ||
Excel file :download:`OutListParameters.xlsx <../../../OtherSupporting/OutListParameters.xlsx>` | ||
for a complete list of possible output parameters. | ||
|
||
This section follows the `END` statement from normal Outputs section described | ||
above, and includes a separator description line followed by the following | ||
optinos. | ||
|
||
**BldNd_BlOutNd** specifies which nodes to output. This is currently unused. | ||
|
||
The **OutList** section controls the nodal output quantities generated by | ||
BeamDyn. In this section, the user specifies the name of the channel family to | ||
output. The output name for each channel is then created internally by BeamDyn | ||
by combining the blade number, node number, and channel family name. For | ||
example, if the user specifies **TDxr** as the channel family name, the output | ||
channels will be named with the convention of **B**\ :math:`\mathbf{\beta}`\ | ||
**N###TDxr** where :math:`\mathbf{\beta}` is the blade number, and **###** is the | ||
three digit node number. | ||
|
||
|
||
|
||
Sample Nodal Outputs section | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
This sample includes the ``END`` statement from the regular outputs section. | ||
|
||
.. container:: | ||
:name: File:BDNodalOutputs | ||
|
||
.. literalinclude:: examples/NodalOutputs.txt | ||
:linenos: | ||
|
||
|
Oops, something went wrong.