Skip to content

Commit 2ada45c

Browse files
committed
Fix warnings
1 parent 831c7fc commit 2ada45c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/ram_air_kite.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PLOT = true
99
PRN = true
1010
USE_TEX = false
1111
DEFORM = true
12-
LINEARIZE = false
12+
const LINEARIZE = false
1313

1414
# Create wing geometry
1515
wing = ObjWing(

src/panel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Represents a panel in a vortex step method simulation. All points and vectors ar
5050
LE_point_2::MVec3 = zeros(MVec3)
5151
chord::Float64 = zero(Float64)
5252
va::MVec3 = zeros(MVec3)
53-
corner_points::MMatrix{3, 4, Float64} = zeros(MMatrix{3, 4, Float64})
53+
corner_points::MMatrix{3, 4, Float64, 12} = zeros(MMatrix{3, 4, Float64, 12})
5454
aero_model::AeroModel = INVISCID
5555
cl_coeffs::Vector{Float64} = zeros(Float64, 3)
5656
cd_coeffs::Vector{Float64} = zeros(Float64, 3)

0 commit comments

Comments
 (0)