Changeset 3482


Ignore:
Timestamp:
Oct 24, 2024, 1:10:51 PM (4 weeks ago)
Author:
afalco
Message:

Pluto PCM: renamed soil.F to soil.F90.
AF

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/libf/phypluto/soil.F90

    r3481 r3482  
    1616!
    1717!  Purpose: Compute soil temperature using an implict 1st order scheme
    18 ! 
    19 !  Note: depths of layers and mid-layers, soil thermal inertia and 
     18!
     19!  Note: depths of layers and mid-layers, soil thermal inertia and
    2020!        heat capacity are commons in comsoil.h
    2121!-----------------------------------------------------------------------
     
    2525!  ---------
    2626!  inputs:
    27       integer,intent(in) :: ngrid       ! number of (horizontal) grid-points 
    28       integer,intent(in) :: nsoil       ! number of soil layers 
    29       logical,intent(in) :: firstcall ! identifier for initialization call 
     27      integer,intent(in) :: ngrid       ! number of (horizontal) grid-points
     28      integer,intent(in) :: nsoil       ! number of soil layers
     29      logical,intent(in) :: firstcall ! identifier for initialization call
    3030      logical,intent(in) :: lastcall
    3131      real,intent(in) :: therm_i(ngrid,nsoil) ! thermal inertia
     
    4646      real,save :: mu
    4747!$OMP THREADPRIVATE(mthermdiff,thermdiff,coefq,coefd,alph,beta,mu)
    48            
     48
    4949! local variables:
    5050      integer ig,ik
     
    5656      if (firstcall) then
    5757      ! note: firstcall is set to .true. or .false. by the caller
    58       !       and not changed by soil.F 
     58      !       and not changed by soil.F
    5959
    6060      ALLOCATE(mthermdiff(ngrid,0:nsoil-1)) ! mid-layer thermal diffusivity
     
    100100          coefd(ig,ik)=thermdiff(ig,ik)/(mlayer(ik)-mlayer(ik-1))
    101101        enddo
    102        
     102
    103103        ! alph_{N-1}
    104104        alph(ig,nsoil-1)=coefd(ig,nsoil-1)/
     
    120120      !write(*,*)'soil: ig=',ig,' capcal(ig)=',capcal(ig)
    121121      enddo ! of do ig=1,ngrid
    122      
     122
    123123      ! Additional checks: is the vertical discretization sufficient
    124124      ! to resolve diurnal and annual waves?
     
    153153        endif
    154154      enddo ! of do ig=1,ngrid
    155      
     155
    156156      else ! of if (firstcall)
    157157
     
    171171        enddo
    172172      enddo
    173      
     173
    174174      endif! of if (firstcall)
    175175
Note: See TracChangeset for help on using the changeset viewer.