In ana_smflux.h, the relevant line for sustr currently reads:
Code: Select all
IF (time(ng).le.57600.0_r8) THEN
windamp=-0.6_r8*SIN(pi*time(ng)/57600.0_r8)* &
& SIN(2.0_r8*pi/57600.0_r8)/rho0
ELSE
windamp=0.0_r8
END IF
Code: Select all
IF (time(ng).le.57600.0_r8) THEN
windamp=-0.6_r8*SIN(pi*time(ng)/57600.0_r8)* &
& SIN(2.0_r8*pi*time(ng)/57600.0_r8)/rho0
ELSE
windamp=0.0_r8
END IF
This change does not influence the boundary layer depth very much, but it does alter mixed layer velocities to be more similar to those shown in Figure 6 of the Large et al. paper.