Skip to content

Commit 5ae38fa

Browse files
committed
Remove unused variable
1 parent a972d13 commit 5ae38fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/symbolic_awe_model.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ function reinit!(
438438
!ispath(model_path) && error("$model_path not found. Run init!(s::SymbolicAWEModel) first.")
439439
try
440440
s.serialized_model = deserialize(model_path)
441-
catch e
441+
catch
442442
@warn "Failure to deserialize $model_path !"
443443
return s.integrator, false
444444
end
@@ -852,7 +852,7 @@ end
852852
set_v_wind_ground!(s::SymbolicAWEModel, v_wind_gnd=s.set.v_wind, upwind_dir=-π/2) -> Nothing
853853
854854
Set ground wind speed (m/s) and upwind direction (radians). Direction: 0=north, π/2=east,
855-
π=zouth, -π/2=west (default).
855+
π=south, -π/2=west (default).
856856
"""
857857
function set_v_wind_ground!(s::SymbolicAWEModel, v_wind_gnd=s.set.v_wind, upwind_dir=-pi/2)
858858
s.set_wind(s.integrator, [v_wind_gnd, upwind_dir])

0 commit comments

Comments
 (0)