Skip to content

Commit

Permalink
Merge pull request #170 from milankl/fix-forcing-none
Browse files Browse the repository at this point in the history
Bugfix 'none' Forcing
  • Loading branch information
maximilian-gelbrecht authored Feb 12, 2024
2 parents 711bb61 + 6d6fd69 commit bafdf52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forcing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Forcing{T}(P::Parameter,G::Grid) where {T<:AbstractFloat}
_,Fy = DoubleGyreWind(T,P,G)
elseif wind_forcing_y == "constant"
_,Fy = ConstantWind(T,P,G)
elseif wind_forcing_x == "none"
elseif wind_forcing_y == "none"
_,Fy = NoWind(T,P,G)
end

Expand Down

0 comments on commit bafdf52

Please sign in to comment.