! source file: /Users/jfidler/work/UVic_ESCM/2.9/source/embm/gvsbc.F subroutine gvsbc !======================================================================= ! calculates albedo and dalton numbers over vegetation ! may read and interpolate cropland data !======================================================================= implicit none character(120) :: fname, name, new_file_name, text integer i, iou, j, n, ln, ib(10), ic(10) logical first_time, intrp real data_time, wt3, wt1, z0, yrv(3), iyr(3) real, allocatable :: time(:) save time, ln, yrv, first_time include "size.h" include "param.h" include "pconst.h" include "stdunits.h" include "calendar.h" include "csbc.h" include "cembm.h" include "atm.h" include "veg.h" include "levind.h" include "tmngr.h" real tmpij(imtm2,jmtm2) fname = "L_cropfra.nc" if (.not. allocated (time)) then fname = new_file_name (fname) call openfile (fname, iou) call getdimlen ('time', iou, ln) allocate ( time(ln) ) ib(:) = 1 ic(:) = ln call getvara ('time', iou, ln, ib, ic, time, c1, c0) text = 'years' call getatttext (iou, 'time', 'units', text) if (trim(text) .eq. "days since 1-1-1") & time(:) = time(:)/yrlen - 1. if (trim(text) .eq. "days since 0-1-1") & time(:) = time(:)/yrlen if (trim(text) .eq. "years since 1-1-1") & time(:) = time(:) - 1. first_time = .true. iyr(:) = 0 yrv(:) = 0. else first_time = .false. endif intrp = .false. yrv(2) = min(time(ln), max(time(1), crops_yr)) if (yrv(2) .gt. time(1) .and. yrv(2) .lt. time(ln)) intrp = .true. if (first_time .or. yrv(2) .gt. yrv(3)) then ! read data fname = new_file_name (fname) ib(:) = 1 ic(:) = 1 ic(1) = imtm2 ic(2) = jmtm2 if (intrp) then do n=2,ln if (time(n-1) .le. yrv(2) .and. time(n) .ge. yrv(2)) then yrv(1) = time(n-1) iyr(1) = n-1 yrv(3) = time(n) iyr(3) = n endif enddo call openfile (fname, iou) ib(3) = iyr(1) call getvara ('L_cropfra', iou, imtm2*jmtm2, ib, ic, tmpij &, c1, c0) crops(2:imtm1,2:jmtm1,1) = tmpij(1:imtm2,1:jmtm2) call embmbc (crops(:,:,1)) call openfile (fname, iou) ib(3) = iyr(3) call getvara ('L_cropfra', iou, imtm2*jmtm2, ib, ic, tmpij &, c1, c0) crops(2:imtm1,2:jmtm1,3) = tmpij(1:imtm2,1:jmtm2) call embmbc (crops(1,1,3)) else if (yrv(2) .le. time(1)) then n = 1 yrv(1) = time(1) yrv(3) = time(1) iyr(n) = 1 else n = 3 yrv(1) = time(ln) yrv(3) = time(ln) iyr(n) = ln endif call openfile (fname, iou) ib(3) = iyr(n) print*, "=> reading crop data for year:",yrv(n) call getvara ('L_cropfra', iou, imtm2*jmtm2, ib, ic, tmpij &, c1, c0) crops(2:imtm1,2:jmtm1,2) = tmpij(1:imtm2,1:jmtm2) call embmbc (crops(1,1,2)) crops(:,:,1) = crops(:,:,2) crops(:,:,3) = crops(:,:,2) endif endif if (intrp) then ! interpolate data wt1 = 1. if (yrv(3) .ne. yrv(1)) wt1 = (yrv(3)-yrv(2))/(yrv(3)-yrv(1)) wt1 = max(0., min(1., wt1)) wt3 = 1. - wt1 do j=1,jmt do i=1,imt crops(i,j,2) = crops(i,j,1)*wt1 + crops(i,j,3)*wt3 enddo enddo call embmbc (crops(1,1,2)) endif !----------------------------------------------------------------------- ! calculate surface coalbedo and Dalton number for land !----------------------------------------------------------------------- if (intrp .or. first_time) then do j=1,jmt do i=1,imt if (iveg(i,j) .gt. 0 .and. land_map(i,j) .eq. 0 .and. & tmsk(i,j) .lt. 0.5) then sbc(i,j,isca) = 1. - (crops(i,j,2)*veg_alb(icrops) & + veg_alb(iveg(i,j))*(1. - crops(i,j,2))) z0 = veg_rl(iveg(i,j))*(1.-crops(i,j,2)) & + veg_rl(icrops)*crops(i,j,2) ! Dalt = (k**2)/(log(z/z0)*log(z/z0q)) ! where k=0.4, z=10 meters and z0q=z0*e**(-2) veg_dalt(i,j) = 0.16/(log(10./z0)*log(73.89/z0)) endif enddo enddo endif return end