@@ -6,7 +6,7 @@ Main structure for calculating aerodynamic properties of bodies.
66# Fields
77- panels::Vector{Panel}: Vector of Panel structs
88- wings::Vector{AbstractWing}: a vector of wings; a body can have multiple wings
9- - `_va`::Union{Nothing, Vector{Float64}, Tuple{Vector{Float64} , Float64}}: A vector of the apparent wind speed,
9+ - `_va`::Union{Nothing, Vector{Float64}, Tuple{MVec3 , Float64}}: A vector of the apparent wind speed,
1010 or a tuple of the v_a vector and yaw rate (rad/s).
1111- `gamma_distribution`::Union{Nothing, Vector{Float64}}: unclear, please defined
1212- `alpha_uncorrected`::Union{Nothing, Vector{Float64}}: unclear, please define
@@ -16,7 +16,7 @@ Main structure for calculating aerodynamic properties of bodies.
1616mutable struct BodyAerodynamics
1717 panels:: Vector{Panel}
1818 wings:: Vector{AbstractWing} # can be a vector of Wings, or of KiteWings
19- _va:: Union{Nothing, Vector{Float64}, Tuple{Vector{Float64} , Float64}}
19+ _va:: Union{Nothing, Vector{Float64}, Tuple{MVec3 , Float64}}
2020 gamma_distribution:: Union{Nothing, Vector{Float64}}
2121 alpha_uncorrected:: Union{Nothing, Vector{Float64}}
2222 alpha_corrected:: Union{Nothing, Vector{Float64}}
0 commit comments