Skip to content

Commit

Permalink
no
Browse files Browse the repository at this point in the history
  • Loading branch information
jagoosw committed Dec 26, 2023
1 parent 51ce405 commit 883b8d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wind_stress.jl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ end

= - wind_speed * sind(wind_direction)

return stress_velocity * (uʷ - u)
return - stress_velocity * (uʷ - u)
end

@inline function (wind_stress::WindStress)(x, y, t, u, v, ::Val{:y})
Expand All @@ -198,7 +198,7 @@ end

= - wind_speed * cosd(wind_direction)

return stress_velocity * (vʷ - v)
return - stress_velocity * (vʷ - v)
end

summary(::WindStress) = string("Wind stress model")
Expand Down

0 comments on commit 883b8d7

Please sign in to comment.