source: LMDZ6/branches/Amaury_dev/libf/phylmd/lmdz_flux_arp.f90 @ 5159

Last change on this file since 5159 was 5158, checked in by abarral, 7 weeks ago

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 590 bytes
Line 
1! $Id: flux_arp.h 2010-08-04 17:02:56Z lahellec $
2! Replaces flux_arh.h
3! Modif EV, 10/2020
4
5MODULE lmdz_flux_arp
6  IMPLICIT NONE; PRIVATE
7  PUBLIC fsens, flat, betaevap, ust, tg, ok_flux_surf, ok_prescr_ust, ok_prescr_beta, ok_forc_tsurf
8
9  LOGICAL :: ok_flux_surf
10  LOGICAL :: ok_prescr_ust !for prescribed ustar
11  LOGICAL :: ok_prescr_beta
12  LOGICAL :: ok_forc_tsurf
13
14  REAL :: fsens
15  REAL :: flat
16  REAL :: betaevap
17  REAL :: ust
18  REAL :: tg
19
20  !$OMP THREADPRIVATE(fsens,flat,betaevap,ust,tg,ok_flux_surf,ok_prescr_ust,ok_prescr_beta,ok_forc_tsurf)
21END MODULE lmdz_flux_arp
22
23
24     
25
Note: See TracBrowser for help on using the repository browser.