From 883b8d72e282d7103dae7022f875f0eab1b89dbd Mon Sep 17 00:00:00 2001 From: Jago Stong-Wright Date: Tue, 26 Dec 2023 22:40:08 +0000 Subject: [PATCH] no --- src/wind_stress.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wind_stress.jl b/src/wind_stress.jl index ff0b33b..0e36e2a 100644 --- a/src/wind_stress.jl +++ b/src/wind_stress.jl @@ -179,7 +179,7 @@ end uʷ = - 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}) @@ -198,7 +198,7 @@ end vʷ = - wind_speed * cosd(wind_direction) - return stress_velocity * (vʷ - v) + return - stress_velocity * (vʷ - v) end summary(::WindStress) = string("Wind stress model")