Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (4 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmdiso/phys_output_var_mod.F90

    r5116 r5117  
    142142  LOGICAL, SAVE :: vars_defined = .FALSE. ! ug PAS THREADPRIVATE ET C'EST NORMAL
    143143
    144   REAL, allocatable:: zustr_gwd_hines(:), zvstr_gwd_hines(:) ! (klon)
    145   REAL, allocatable:: zustr_gwd_front(:), zvstr_gwd_front(:) ! (klon)
    146   REAL, allocatable:: zustr_gwd_rando(:), zvstr_gwd_rando(:) ! (klon)
     144  REAL, ALLOCATABLE:: zustr_gwd_hines(:), zvstr_gwd_hines(:) ! (klon)
     145  REAL, ALLOCATABLE:: zustr_gwd_front(:), zvstr_gwd_front(:) ! (klon)
     146  REAL, ALLOCATABLE:: zustr_gwd_rando(:), zvstr_gwd_rando(:) ! (klon)
    147147  !$OMP THREADPRIVATE(zustr_gwd_hines, zvstr_gwd_hines)
    148148  !$OMP THREADPRIVATE(zustr_gwd_front, zvstr_gwd_front)
     
    185185  !======================================================================
    186186  SUBROUTINE phys_output_var_init
    187     use dimphy
    188     use config_ocean_skin_m, ONLY: activate_ocean_skin
     187    USE dimphy
     188    USE config_ocean_skin_m, ONLY: activate_ocean_skin
    189189
    190190    IMPLICIT NONE
     
    236236
    237237    IF (ok_hines) allocate(zustr_gwd_hines(klon), zvstr_gwd_hines(klon))
    238     IF (.not.ok_hines.and.ok_gwd_rando) &
     238    IF (.NOT.ok_hines.AND.ok_gwd_rando) &
    239239                  allocate(zustr_gwd_front(klon), zvstr_gwd_front(klon))
    240240    IF (ok_gwd_rando) allocate(zustr_gwd_rando(klon), zvstr_gwd_rando(klon))
    241241
    242     if (activate_ocean_skin >= 1) allocate(tkt(klon), tks(klon), taur(klon), &
     242    IF (activate_ocean_skin >= 1) allocate(tkt(klon), tks(klon), taur(klon), &
    243243         sss(klon))
    244244
Note: See TracChangeset for help on using the changeset viewer.