Skip to content

Commit 3af0c01

Browse files
committed
update doc strings
1 parent 16c4f54 commit 3af0c01

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/body_aerodynamics.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,13 +642,13 @@ end
642642

643643

644644
"""
645-
set_va!(body_aero::BodyAerodynamics, va, omega=zeros(3))
645+
set_va!(body_aero::BodyAerodynamics, va, omega=zeros(MVec3))
646646
647647
Set velocity array and update wake filaments.
648648
649649
# Arguments
650650
- body_aero::BodyAerodynamics: The [BodyAerodynamics](@ref) struct to modify
651-
- `va`: Either a velocity vector or a list of velocity vectors
651+
- `va`: Either a velocity vector or a vector of velocity vectors per panel
652652
- `omega`: Turn rate around x y and z axis
653653
"""
654654
function set_va!(body_aero::BodyAerodynamics, va, omega=zeros(MVec3))

src/wing_geometry.jl

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,15 @@ end
5656
5757
Add a new section to the wing.
5858
59-
See also: [Wing](@ref), [PosVector](@ref)
60-
6159
# Arguments:
62-
- LE_point::PosVector: position of the point on the side of the leading edge
63-
- TE_point::PosVector: position of the point on the side of the leading edge
60+
- wing::Wing: The [Wing](@ref) to which a section shall be added
61+
- LE_point::PosVector: [PosVector](@ref) of the point on the side of the leading edge
62+
- TE_point::PosVector: [PosVector](@ref) of the point on the side of the trailing edge
6463
- aero_input: Can be:
6564
- :inviscid
6665
- :`lei_airfoil_breukels`
67-
- (:polar_data, (`alpha_range`, `cl_vector`, `cd_vector`, `cm_vector`))
68-
- (:polar_data, (`alpha_range`, `beta_range`, `cl_matrix`, `cd_matrix`, `cm_matrix`))
66+
- (:`polar_data`, (`alpha_range`, `cl_vector`, `cd_vector`, `cm_vector`))
67+
- (:`polar_data`, (`alpha_range`, `beta_range`, `cl_matrix`, `cd_matrix`, `cm_matrix`))
6968
"""
7069
function add_section!(wing::Wing, LE_point::Vector{Float64},
7170
TE_point::Vector{Float64}, aero_input)

0 commit comments

Comments
 (0)