Changeset 5367 for LMDZ6/trunk/libf/phylmd/StratAer
- Timestamp:
- Dec 3, 2024, 10:40:13 AM (6 weeks ago)
- Location:
- LMDZ6/trunk/libf/phylmd/StratAer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/StratAer/strataer_emiss_mod.f90
r5285 r5367 1 1 MODULE strataer_emiss_mod 2 2 ! This module contains information about strato microphysic model emission parameters 3 3 IMPLICIT NONE; PRIVATE 4 PUBLIC strataer_emiss_init 4 5 CONTAINS 5 6 6 7 SUBROUTINE strataer_emiss_init() 7 8 8 USE strataer_local_var_mod 9 USE ioipsl_getin_p_mod, ONLY 10 USE print_control_mod, ONLY 9 USE ioipsl_getin_p_mod, ONLY: getin_p 10 USE print_control_mod, ONLY: lunout 11 11 USE mod_phys_lmdz_para, ONLY : is_master 12 12 13 13 ! Local variables 14 14 INTEGER :: ispec 15 INTEGER :: klon ! Amaury 12/24: cette déclaration était avant implicite (depuis longtemps !), mais c'est probablement un bug !? On devrait avoir `USE dimphy, ONLY: klon`. A corriger ultérieurement.. ? 15 16 16 17 WRITE(lunout,*) 'IN STRATAER_EMISS INIT WELCOME!' … … 215 216 216 217 USE yomcst_mod_h 217 USE regular_lonlat_mod, ONLY: lon_reg, lat_reg218 USE regular_lonlat_mod, ONLY: lon_reg, lat_reg 218 219 USE dimphy, ONLY: klon 219 220 USE mod_grid_phy_lmdz, ONLY: nbp_lat, nbp_lon -
LMDZ6/trunk/libf/phylmd/StratAer/traccoag_mod.f90
r5268 r5367 4 4 ! considering coagulation and sedimentation. 5 5 ! 6 IMPLICIT NONE; PRIVATE 7 PUBLIC traccoag 6 8 CONTAINS 7 9
Note: See TracChangeset
for help on using the changeset viewer.