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

HYCOM forcing: follow HYCOM notation: ewndsp,nwndsp --> wndewd,wndnwd #425

Merged
merged 1 commit into from
Apr 10, 2020
Merged
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
8 changes: 4 additions & 4 deletions cicecore/cicedynB/general/ice_forcing.F90
Original file line number Diff line number Diff line change
Expand Up @@ -4362,8 +4362,8 @@ subroutine hycom_atm_files
fsw_file = trim(atm_data_dir)//'/forcing.shwflx.nc'
flw_file = trim(atm_data_dir)//'/forcing.radflx.nc'
rain_file = trim(atm_data_dir)//'/forcing.precip.nc'
uwind_file = trim(atm_data_dir)//'/forcing.ewndsp.nc' !actually Xward, not Eward
vwind_file = trim(atm_data_dir)//'/forcing.nwndsp.nc' !actually Yward, not Nward
uwind_file = trim(atm_data_dir)//'/forcing.wndewd.nc'
vwind_file = trim(atm_data_dir)//'/forcing.wndnwd.nc'
tair_file = trim(atm_data_dir)//'/forcing.airtmp.nc'
humid_file = trim(atm_data_dir)//'/forcing.vapmix.nc'

Expand Down Expand Up @@ -4469,11 +4469,11 @@ subroutine hycom_atm_data
call read_data_nc_hycom (read6, recnum, &
tair_file, fieldname, Tair_data, &
field_loc_center, field_type_scalar)
fieldname = 'ewndsp'
fieldname = 'wndewd'
call read_data_nc_hycom (read6, recnum, &
uwind_file, fieldname, uatm_data, &
field_loc_center, field_type_vector)
fieldname = 'nwndsp'
fieldname = 'wndnwd'
call read_data_nc_hycom (read6, recnum, &
vwind_file, fieldname, vatm_data, &
field_loc_center, field_type_vector)
Expand Down