Skip to content

Commit 4802685

Browse files
committed
Improve PanelProperties
1 parent 5282480 commit 4802685

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/body_aerodynamics.jl

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,18 @@ Structure to hold calculated panel properties.
112112
- `control_points`::Vector{MVec3}
113113
- `bound_points_1`::Vector{MVec3}
114114
- `bound_points_2`::Vector{MVec3}
115-
- `x_airf`::Vector{Vector{Float64}}: unclear, please define
116-
- `y_airf`::Vector{Vector{Float64}}: unclear, please define
117-
- `z_airf`::Vector{Vector{Float64}}: unclear, please define
118-
115+
- `x_airf`::Vector{MVec3}: Vector of unit vectors perpendicular to chord line
116+
- `y_airf`::Vector{MVec3}: Vector of unit vectors parallel to chord line
117+
- `z_airf`::Vector{MVec3}: Vector of unit vectors in spanwise direction
119118
"""
120119
struct PanelProperties
121120
aero_centers::Vector{MVec3}
122121
control_points::Vector{MVec3}
123122
bound_points_1::Vector{MVec3}
124123
bound_points_2::Vector{MVec3}
125-
x_airf::Vector{Vector{Float64}}
126-
y_airf::Vector{Vector{Float64}}
127-
z_airf::Vector{Vector{Float64}}
124+
x_airf::Vector{MVec3}
125+
y_airf::Vector{MVec3}
126+
z_airf::Vector{MVec3}
128127
end
129128

130129
"""

0 commit comments

Comments
 (0)