30 use params_mod,
only: small
31 use ctlblk_mod,
only: jsta, jend, spval, ista, iend
37 integer,
intent(in) :: IMO,JMO
38 REAL,
intent(in) :: SCALE
39 REAL,
dimension(ista:iend,jsta:jend),
intent(inout) :: FLD
51 IF(abs(fld(i,j)-spval)>small) fld(i,j)=scale*fld(i,j)
subroutine sclfld(fld, scale, imo, jmo)
This routine multiples (scales) the first IMO*JMO elements of array fld by the real scalar scale.