Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WW3 cap for 2-way ocean-wave coupling #1348

Open
wants to merge 9 commits into
base: dev/ufs-weather-model
Choose a base branch
from
18 changes: 18 additions & 0 deletions model/src/wav_import_export.F90
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ subroutine import_fields( gcomp, time0, timen, rc )
use wmupdtmd , only: wmupd2
use wmmdatmd , only: wmsetm
use wmmdatmd , only: mdse, mdst, nrgrd, inpmap
use wav_shr_mod , only : casename
#ifdef W3_MPI
use wmmdatmd , only: mpi_comm_grd
#endif
Expand All @@ -308,6 +309,8 @@ subroutine import_fields( gcomp, time0, timen, rc )
character(len=10) :: vwnd
integer :: imod, j, jmod
integer :: mpi_comm_null = -1
integer :: isea
real(r4), parameter :: fillv = 9.99e20
real(r4), allocatable :: wxdata(:) ! only needed if merge_import
real(r4), allocatable :: wydata(:) ! only needed if merge_import
character(len=*), parameter :: subname='(wav_import_export:import_fields)'
Expand Down Expand Up @@ -371,6 +374,14 @@ subroutine import_fields( gcomp, time0, timen, rc )
if (state_fldchk(importState, 'So_u')) then
call SetGlobalInput(importState, 'So_u', vm, global_data, rc)
if (ChkErr(rc,__LINE__,u_FILE_u)) return

if(trim(casename) == 'ufs.hafs') then
do isea = 1,nsea
if(abs(global_data(isea)-fillv).lt.0.01) then
global_data(isea)=0.0
end if
end do
end if
call FillGlobalInput(global_data, CX0)
call FillGlobalInput(global_data, CXN)
end if
Expand All @@ -380,6 +391,13 @@ subroutine import_fields( gcomp, time0, timen, rc )
if (state_fldchk(importState, 'So_v')) then
call SetGlobalInput(importState, 'So_v', vm, global_data, rc)
if (ChkErr(rc,__LINE__,u_FILE_u)) return
if(casename == "ufs.hafs") then
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this need the same update that was done above?

do isea = 1,nsea
if(abs(global_data(isea)-fillv).lt.0.01) then
global_data(isea)=0.0
end if
end do
end if
call FillGlobalInput(global_data, CY0)
call FillGlobalInput(global_data, CYN)
end if
Expand Down
Loading