Ignore:
Timestamp:
Jul 19, 2018, 6:08:17 PM (6 years ago)
Author:
mvals
Message:

Mars GCM:
Cosmetic/practical changes:

  • Addition of the intent in/out characteristics of variables in watercloud_mod and improvedclouds_mod subroutines

MV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/improvedclouds_mod.F

    r1963 r1976  
    4444#include "microphys.h"
    4545c------------------------------------------------------------------
    46 c     Inputs:
    47 
    48       INTEGER ngrid,nlay
    49       integer nq                 ! nombre de traceurs
    50       REAL microtimestep             ! pas de temps physique (s)
    51       REAL pplay(ngrid,nlay)     ! pression au milieu des couches (Pa)
    52            
    53       REAL pteff(ngrid,nlay)        ! temperature at the middle of the
    54                                  !   layers (K)
    55       REAL sum_subpdt(ngrid,nlay)       ! tendance temperature des autres
    56                                  !   param.
    57       REAL pqeff(ngrid,nlay,nq)     ! traceur (kg/kg)
    58       REAL sum_subpdq(ngrid,nlay,nq)    ! tendance avant condensation
    59                                  !   (kg/kg.s-1)
    60       REAL tauscaling(ngrid)     ! Convertion factor for qdust and Ndust
    61 
    62 c     Outputs:
    63       REAL subpdqcloud(ngrid,nlay,nq) ! tendance de la condensation
    64                                    !   H2O(kg/kg.s-1)
    65       REAL subpdtcloud(ngrid,nlay)    ! tendance temperature due
    66                                    !   a la chaleur latente
     46c     Inputs/outputs:
     47
     48      INTEGER, INTENT(IN) :: ngrid,nlay
     49      INTEGER, INTENT(IN) :: nq                 ! nombre de traceurs
     50      REAL, INTENT(IN) :: microtimestep         ! pas de temps physique (s)
     51      REAL, INTENT(IN) :: pplay(ngrid,nlay)     ! pression au milieu des couches (Pa)           
     52      REAL, INTENT(IN) :: pteff(ngrid,nlay)     ! temperature at the middle of the
     53                                                ! layers (K)
     54      REAL, INTENT(IN) :: sum_subpdt(ngrid,nlay)! tendance temperature des autres
     55                                                !   param.
     56      REAL, INTENT(IN) :: pqeff(ngrid,nlay,nq)  ! traceur (kg/kg)
     57      REAL, INTENT(IN) :: sum_subpdq(ngrid,nlay,nq)    ! tendance avant condensation
     58                                                       !   (kg/kg.s-1)
     59      REAL, INTENT(IN) :: tauscaling(ngrid)     ! Convertion factor for qdust and Ndust
     60     
     61      REAL, INTENT(OUT) :: subpdqcloud(ngrid,nlay,nq)  ! tendance de la condensation
     62                                                       !   H2O(kg/kg.s-1)
     63      REAL, INTENT(OUT) :: subpdtcloud(ngrid,nlay)     ! tendance temperature due
     64                                                       !   a la chaleur latente
    6765
    6866c------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.