Skip to content

Commit b3f526b

Browse files
committed
one more MVec3
1 parent 03e20e7 commit b3f526b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/body_aerodynamics.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
1616
mutable 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

Comments
 (0)