Changeset 3341 for trunk/LMDZ.GENERIC


Ignore:
Timestamp:
May 23, 2024, 8:32:15 AM (6 months ago)
Author:
emillour
Message:

Generic PCM:
Follow-up of including surface albedo in restartfi.nc
Ensure initialization of this albedo to bare ground albedo in newstart
EM

Location:
trunk/LMDZ.GENERIC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/changelog.txt

    r3335 r3341  
    19371937Turned "surfini" in a module in the process.
    19381938Unrelated: added missing delarations in kcm1d so it compiles one again.
     1939
     1940== 23/05/2024 == EM
     1941Follow-up of including surface albedo in restartfi.nc
     1942Ensure initialization of this albedo to bare ground albedo in newstart
  • trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F

    r3335 r3341  
    520520          CALL datareadnc(relief,surfacefile,phis,alb,surfith,
    521521     &          zmeaS,zstdS,zsigS,zgamS,ztheS)
     522          ! set surface albedo to bare ground albedo
     523          albedodyn(:,:)=alb(:,:)
    522524        else
    523525        ! specific case when not using a "surface.nc" file
     
    532534          read(*,*) alb(1,1)
    533535          alb(:,:)=alb(1,1)
     536          ! set surface albedo to bare ground albedo
     537          albedodyn(:,:)=alb(:,:)
    534538         
    535539          write(*,*) "Enter value of thermal inertia of soil:"
     
    542546        CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,surfith,surfithfi)
    543547        CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,alb,albfi)
     548        CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,albedodyn,albedofi)
     549        do i=1,L_NSPECTV
     550          spectral_albedofi(:,i)=albedofi(:)
     551        enddo
    544552        CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,zmeaS,zmea)
    545553        CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,zstdS,zstd)
Note: See TracChangeset for help on using the changeset viewer.