Skip to content

Commit

Permalink
- small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmarten committed Nov 22, 2023
1 parent 172eecf commit 0e4b691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/src/user/interfaces/inloop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ In the following, the functionality that is exported from the QBlade dll or shar


:code:`double getCustomData_at_num(char *str, double pos = 0, int num = 0)`
This function can be used to access the current value from an arbitrary turbine simulation variable in QBlade. Specify the data name as is would appear in any QBlade graph as a *char pointer*. If you are requesting an aerodynamic 'at section' variable, for instance 'Angle of Attack at 0.25c (at section) Blade 1 [deg]' you can specify the normalized position along the blade length using the 'pos' variable. As an example, to get the AoA at 85% blade length from turbine 0, you would call the function the following way: :code:`getCustomData_at_num("Angle of Attack at 0.25c (at section) Blade 1 [deg], 0.85,0)`.
This function can be used to access the current value from an arbitrary turbine simulation variable in QBlade. Specify the data name as is would appear in any QBlade graph as a *char pointer*. If you are requesting an aerodynamic 'at section' variable, for instance 'Angle of Attack at 0.25c (at section) Blade 1 [deg]' you can specify the normalized position along the blade length using the 'pos' variable. As an example, to get the AoA at 85% blade length from turbine 0, you would call the function the following way: :code:`getCustomData_at_num("Angle of Attack at 0.25c (at section) Blade 1 [deg]", 0.85,0)`.

:code:`double getCustomSimulationData(char *str)`
This function can be used to access the current value from an arbitrary *simulation time graph* variable in QBlade.
Expand Down

0 comments on commit 0e4b691

Please sign in to comment.