Changeset 2345 for LMDZ5/trunk/libf/phylmd/tracinca_mod.F90
- Timestamp:
- Aug 21, 2015, 11:57:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/tracinca_mod.F90
r2320 r2345 5 5 ! This module prepares and calls the INCA main subroutines. 6 6 ! 7 7 IMPLICIT NONE 8 9 CHARACTER(len=4),SAVE :: config_inca 10 !$OMP THREADPRIVATE(config_inca) 11 ! config_inca='none' => without INCA 12 ! config_inca='chem' => INCA with chemistry 13 ! config_inca='aero' => INCA with aerosols 8 14 CONTAINS 9 15 … … 12 18 13 19 USE infotrac_phy, ONLY: nbtr 20 USE ioipsl_getin_p_mod, ONLY: getin_p 14 21 IMPLICIT NONE 15 22 … … 22 29 lessivage =.FALSE. 23 30 aerosol(:) = .FALSE. 31 32 config_inca='none' ! default 33 CALL getin_p('config_inca',config_inca) 24 34 25 35 END SUBROUTINE tracinca_init … … 45 55 USE vampir 46 56 USE comgeomphy 47 USE control_mod48 57 USE indice_sol_mod 49 58 … … 51 60 IMPLICIT NONE 52 61 53 INCLUDE "dimensions.h"54 INCLUDE "paramet.h"55 56 62 !========================================================================== 57 63 ! -- DESCRIPTION DES ARGUMENTS --
Note: See TracChangeset
for help on using the changeset viewer.