@@ -372,16 +372,18 @@ Represents a curved wing that inherits from Wing with additional geometric prope
372372 - `spanwise_distribution`::PanelDistribution: see: [PanelDistribution](@ref)
373373 - `spanwise_direction::MVec3`: Wing span direction vector
374374 - `sections::Vector{Section}`: List of wing sections, see: [Section](@ref)
375- - refined_sections::Vector{Section}
375+ - ` refined_sections::Vector{Section}`
376376 - `remove_nan::Bool`: Wether to remove the NaNs from interpolations or not
377377- Additional fields:
378- - `circle_center_z`: Center of circle coordinates
379- - gamma_tip::Float64: Angle between the body frame z axis and the vector going from the kite circular shape center to the wing tip.
380- - `inertia_tensor`::Matrix{Float64}: see: [`calculate_inertia_tensor`](@ref)
381- - radius::Float64: Radius of curvature
382- - le_interp::NTuple{3, Extrapolation}: see: [Extrapolation](https://juliamath.github.io/Interpolations.jl/stable/extrapolation/)
383- - te_interp::NTuple{3, Extrapolation}
384- - area_interp::Extrapolation
378+ - `circle_center_z::MVec3`: Center of circle coordinates
379+ - `gamma_tip::Float64`: Angle between the body frame z axis and the vector going from the kite circular shape center to the wing tip.
380+ - `inertia_tensor::Matrix{Float64}`: see: [`calculate_inertia_tensor`](@ref)
381+ - `radius::Float64`: Radius of curvature
382+ - `le_interp::NTuple{3, Extrapolation}`: see: [Extrapolation](https://juliamath.github.io/Interpolations.jl/stable/extrapolation/)
383+ - `te_interp::NTuple{3, Extrapolation}`
384+ - `area_interp::Extrapolation`
385+ - `theta_dist::Vector{Float64}`
386+ - `delta_dist::Vector{Float64}`
385387
386388"""
387389mutable struct RamAirWing <: AbstractWing
@@ -398,13 +400,13 @@ mutable struct RamAirWing <: AbstractWing
398400 mass:: Float64
399401 gamma_tip:: Float64
400402 inertia_tensor:: Matrix{Float64}
401- center_of_mass
403+ center_of_mass:: MVec3
402404 radius:: Float64
403405 le_interp:: NTuple{3, Extrapolation}
404406 te_interp:: NTuple{3, Extrapolation}
405407 area_interp:: Extrapolation
406- theta_dist
407- delta_dist
408+ theta_dist:: Vector{Float64}
409+ delta_dist:: Vector{Float64}
408410end
409411
410412"""
0 commit comments