Ignore:
Timestamp:
Apr 28, 2022, 12:21:33 PM (2 years ago)
Author:
acozic
Message:

added (and call) a routine for the calculation of mass flux used in offline mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/dyn3dmem/caladvtrac_mod.F90

    r4050 r4139  
    1616
    1717  REAL,POINTER,SAVE :: massem(:,:)
    18  
     18  !Offline
     19  REAL,POINTER,SAVE :: tetac(:,:)
     20  REAL,POINTER,SAVE :: massec(:,:)
     21  REAL,POINTER,SAVE :: phic(:,:)
     22  REAL,POINTER,SAVE :: pbarucc(:,:)
     23  REAL,POINTER,SAVE :: pbarvcc(:,:)
     24  REAL,POINTER,SAVE :: pbarugg(:,:)
     25  REAL,POINTER,SAVE :: pbarvgg(:,:)
     26  REAL,POINTER,SAVE :: wgg(:,:)
    1927CONTAINS
    2028
     
    5058    CALL allocate_v(pbarvg,llm,d)
    5159    CALL allocate_u(wg,llm,d)
     60    ! Offline
     61    CALL allocate_u(tetac,llm,d)
     62    CALL allocate_u(phic,llm,d)
     63    CALL allocate_u(pbarucc,llm,d)
     64    CALL allocate_v(pbarvcc,llm,d)
     65    CALL allocate_u(massec,llm,d)
     66    CALL allocate_u(pbarugg,llm,d)
     67    CALL allocate_v(pbarvgg,llm,d)
     68    CALL allocate_u(wgg,llm,d)
    5269
    5370    CALL groupe_allocate
Note: See TracChangeset for help on using the changeset viewer.