- Timestamp:
- Oct 30, 2024, 2:26:24 PM (4 weeks ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 9 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3d_common/diverg.f90
r5285 r5298 19 19 ! div est un argument de sortie pour le s-prog 20 20 ! 21 !22 ! ---------------------------------------------------------------------23 !24 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ .25 !26 ! ---------------------------------------------------------------------27 21 28 22 -
LMDZ6/trunk/libf/dyn3d_common/diverg_gam.f90
r5285 r5298 21 21 ! 22 22 ! 23 ! --------------------------------------------------------------------- 24 ! 25 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ . 26 ! 27 ! --------------------------------------------------------------------- 23 28 24 29 25 -
LMDZ6/trunk/libf/dyn3d_common/divergf.f90
r5285 r5298 20 20 ! 21 21 ! 22 ! --------------------------------------------------------------------- 23 ! 24 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ . 25 ! 26 ! --------------------------------------------------------------------- 22 27 23 28 24 -
LMDZ6/trunk/libf/dyn3dmem/diverg_gam_loc.f90
r5285 r5298 19 19 ! 20 20 ! 21 ! --------------------------------------------------------------------- 22 ! 23 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ . 24 ! 25 ! --------------------------------------------------------------------- 21 26 22 27 23 -
LMDZ6/trunk/libf/dyn3dmem/diverg_p.f90
r5285 r5298 18 18 ! 19 19 ! 20 ! --------------------------------------------------------------------- 21 ! 22 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ . 23 ! 24 ! --------------------------------------------------------------------- 20 25 21 26 22 -
LMDZ6/trunk/libf/dyn3dmem/divergf_loc.f90
r5285 r5298 19 19 ! 20 20 ! 21 ! --------------------------------------------------------------------- 22 ! 23 ! ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/ . 24 ! 25 ! --------------------------------------------------------------------- 21 26 22 27 23 -
LMDZ6/trunk/libf/phylmd/comsoil_mod_h.f90
r5297 r5298 1 ! 2 ! $Header$ 3 ! 1 ! Replaces comsoil.h 4 2 5 common /comsoil/inertie_sol,inertie_sno,inertie_sic,inertie_lic, & 6 & iflag_sic,iflag_inertie 7 real inertie_sol,inertie_sno,inertie_sic,inertie_lic 8 integer iflag_sic,iflag_inertie 9 !$OMP THREADPRIVATE(/comsoil/) 3 MODULE comsoil_mod_h 4 IMPLICIT NONE; PRIVATE 5 PUBLIC inertie_sol, inertie_sno, inertie_sic, inertie_lic, iflag_sic, iflag_inertie 6 7 REAL inertie_sol, inertie_sno, inertie_sic, inertie_lic 8 INTEGER iflag_sic, iflag_inertie 9 !$OMP THREADPRIVATE(inertie_sol,inertie_sno,inertie_sic,inertie_lic, iflag_sic,iflag_inertie) 10 END MODULE comsoil_mod_h -
LMDZ6/trunk/libf/phylmd/conf_phys_m.f90
r5296 r5298 24 24 alp_offset) 25 25 26 USE compbl_mod_h26 USE compbl_mod_h 27 27 USE alpale_mod 28 28 USE conema3_mod_h 29 30 USE IOIPSL29 USE yomcst_mod_h 30 USE IOIPSL 31 31 USE surface_data 32 32 USE phys_cal_mod … … 41 41 USE infotrac_phy, ONLY: type_trac 42 42 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_STRATAER 43 USE comsoil_mod_h 43 44 44 45 INCLUDE "nuage.h" … … 46 47 INCLUDE "YOMCST2.h" 47 48 48 !IM : on inclut/initialise les taux de CH4, N2O, CFC11 et CFC1249 INCLUDE "comsoil.h"50 49 INCLUDE "YOEGWD.h" 51 50 ! -
LMDZ6/trunk/libf/phylmd/inlandsis/sisvat_ts2.f90
r5285 r5298 58 58 ! |________________________________________________________________________| 59 59 60 USE yoethf_mod_h61 60 USE yoethf_mod_h 61 USE VAR_SV 62 62 USE VARdSV 63 64 63 USE VARySV 65 64 USE VARtSV … … 67 66 USE VARphy 68 67 USE indice_sol_mod 69 70 71 68 USE yomcst_mod_h 69 USE comsoil_mod_h 72 70 IMPLICIT NONE 73 71 … … 75 73 ! +--Global Variables 76 74 ! + ================ 77 78 79 75 INCLUDE "FCTTRE.h" 80 ! INCLUDE "indicesol.h"81 INCLUDE "comsoil.h"82 ! include "LMDZphy.inc"83 76 84 77 ! +--OUTPUT for Stand Alone NetCDF File -
LMDZ6/trunk/libf/phylmd/planete_mod_h.f90
r5297 r5298 1 !----------------------------------------------------------------------- 2 ! INCLUDE planet.h 1 MODULE planete_mod_h 2 IMPLICIT NONE; PRIVATE 3 PUBLIC aphelie, periheli, year_day, peri_day, obliquit, timeperi, e_elips, p_elips, unitastr 3 4 4 COMMON/planet/aphelie,periheli,year_day,peri_day, obliquit, timeperi,&5 e_elips,p_elips,unitastr5 REAL aphelie, periheli, year_day, peri_day, obliquit, timeperi, e_elips, & 6 p_elips, unitastr 6 7 7 REAL aphelie,periheli,year_day,peri_day, obliquit, timeperi,e_elips, & 8 p_elips,unitastr 9 10 !----------------------------------------------------------------------- 11 !$OMP THREADPRIVATE(/planet/) 8 !$OMP THREADPRIVATE(aphelie, periheli, year_day, peri_day, obliquit, timeperi, e_elips, p_elips, unitastr) 9 END MODULE planete_mod_h -
LMDZ6/trunk/libf/phylmd/soil.f90
r5285 r5298 11 11 USE print_control_mod, ONLY: lunout 12 12 USE dimsoil_mod_h, ONLY: nsoilmx 13 13 USE comsoil_mod_h 14 14 IMPLICIT NONE 15 15 … … 62 62 ! 63 63 !======================================================================= 64 INCLUDE "comsoil.h"65 !-----------------------------------------------------------------------66 64 ! Arguments 67 65 ! --------- -
LMDZ6/trunk/libf/phylmdiso/comsoil_mod_h.f90
r5297 r5298 1 link ../phylmd/comsoil .h1 link ../phylmd/comsoil_mod_h.f90 -
LMDZ6/trunk/libf/phylmdiso/planete_mod_h.f90
r5297 r5298 1 link ../phylmd/planete .h1 link ../phylmd/planete_mod_h.f90
Note: See TracChangeset
for help on using the changeset viewer.