subroutine scam_use_iop_srf( cam_in ) 1,4 !----------------------------------------------------------------------- use ppgrid, only: begchunk, endchunk use camsrfexch_types, only: srfflx_state use physconst, only: stebol, latvap use scamMod implicit none save type(srfflx_state), intent(INOUT) :: cam_in(begchunk:endchunk) ! local integer :: c ! Chunk index integer :: ncol ! Number of columns ! ! Replace surface fluxes with observed values for IOP forcing if ! requested by switch settings in the GUI ! if (scm_iop_srf_prop) then do c=begchunk,endchunk ncol = cam_in(c)%ncol if(have_lhflx) then cam_in(c)%lhf(1) = lhflxobs(1) cam_in(c)%cflx(1,1) = lhflxobs(1)/latvap endif if(have_shflx) cam_in(c)%shf(1) = shflxobs(1) if(have_tg) then cam_in(c)%ts(1) = tground(1) cam_in(c)%lwup(1) = stebol * tground(1)**4 endif end do endif end subroutine scam_use_iop_srf