Skip to content

Commit 1c805c3

Browse files
committed
Fix docstring
1 parent 801c411 commit 1c805c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/body_aerodynamics.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""
2-
@with_kw mutable struct BodyAerodynamics{P}
2+
@with_kw mutable struct BodyAerodynamics{P,W<:AbstractWing}
33
44
Main structure for calculating aerodynamic properties of bodies. Use the constructor to initialize.
55
66
# Fields
77
- panels::Vector{Panel}: Vector of refined [Panel](@ref) structs
8-
- wings::Vector{Wing}: A vector of wings; a body can have multiple wings
8+
- wings::Vector{W}: A vector of wings of type `W <: AbstractWing`; a body can have multiple wings
99
- `va::MVec3` = zeros(MVec3): A vector of the apparent wind speed, see: [MVec3](@ref)
1010
- `omega`::MVec3 = zeros(MVec3): A vector of the turn rates around the kite body axes
1111
- `gamma_distribution`=zeros(Float64, P): A vector of the circulation

0 commit comments

Comments
 (0)