Ignore:
Timestamp:
Oct 28, 2024, 4:58:32 PM (9 months ago)
Author:
abarral
Message:

Move academic.h chem.h chem_spla.h to module

File:
1 moved

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/dyn3d_common/academic_mod_h.f90

    r5291 r5292  
    1 !
    2 ! $Id$
    3 !
    4       common/academic/tetarappel,knewt_t,kfrict,knewt_g,clat4
    5       real :: tetarappel(ip1jmp1,llm)
    6       real :: knewt_t(llm)
    7       real :: kfrict(llm)
    8       real :: knewt_g
    9       real :: clat4(ip1jmp1)
     1! Replaces academic.h
     2
     3MODULE academic_mod_h
     4  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
     5  USE paramet_mod_h
     6  IMPLICIT NONE; PRIVATE
     7
     8  PUBLIC tetarappel, knewt_t, kfrict, knewt_g, clat4
     9
     10  REAL :: tetarappel(ip1jmp1, llm)
     11  REAL :: knewt_t(llm)
     12  REAL :: kfrict(llm)
     13  REAL :: knewt_g
     14  REAL :: clat4(ip1jmp1)
     15
     16END MODULE academic_mod_h
Note: See TracChangeset for help on using the changeset viewer.