Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/cpl_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module cpl_driver

#if defined (__oifs)
integer :: nsend = 7
integer :: nrecv = 13
integer :: nrecv = 15
#else
integer :: nsend = 4
integer :: nrecv = 12
Expand Down Expand Up @@ -696,6 +696,8 @@ subroutine cpl_oasis3mct_define_unstr(partit, mesh)
cpl_recv(11) = 'heat_swo'
cpl_recv(12) = 'hydr_oce'
cpl_recv(13) = 'calv_oce'
cpl_recv(14) = 'u10w_oce'
cpl_recv(15) = 'v10w_oce'
#else
cpl_recv(1) = 'taux_oce'
cpl_recv(2) = 'tauy_oce'
Expand Down
8 changes: 8 additions & 0 deletions src/gen_forcing_couple.F90
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,14 @@ subroutine update_atm_forcing(istep, ice, tracers, dynamics, partit, mesh)
mask=1.
call force_flux_consv(enthalpyoffuse, mask, i, 0, action, partit, mesh)
end if
elseif (i.eq.14) then
if (action) then
u_wind(:) = exchange(:) ! zonal wind
end if
elseif (i.eq.15) then
if (action) then
v_wind(:) = exchange(:) ! meridional wind
end if
#else ! oifs
elseif (i.eq.13) then
if (action) then
Expand Down