Changeset 3875
- Timestamp:
- Aug 1, 2025, 4:33:06 PM (3 days ago)
- Location:
- trunk/LMDZ.VENUS/libf/phyvenus
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/dyn1d/rcm1d.F
r3857 r3875 21 21 USE clesphys_mod 22 22 USE comcstfi_mod 23 USE tabcontrol_mod, ONLY: dtime, radpas 23 24 IMPLICIT NONE 24 25 … … 44 45 #include "dimensions.h" 45 46 #include "dimsoil.h" 46 c#include "comcstfi.h"47 47 #include "netcdf.inc" 48 c#include "clesphys.h"49 48 #include "iniprint.h" 50 #include "tabcontrol.h"51 49 52 50 c -------------------------------------------------------------- -
trunk/LMDZ.VENUS/libf/phyvenus/phyetat0.F90
r3835 r3875 21 21 use nonoro_gwd_ran_mod, only: du_nonoro_gwd, dv_nonoro_gwd, & 22 22 east_gwstress, west_gwstress 23 use tabcontrol_mod, only: dtime, radpas, length, tabcntr0 23 24 use clesphys_mod 24 25 … … 26 27 !====================================================================== 27 28 include "dimsoil.h" 28 !include "clesphys.h"29 include "tabcontrol.h"30 29 !====================================================================== 31 30 -
trunk/LMDZ.VENUS/libf/phyvenus/phyredem.F90
r3841 r3875 16 16 east_gwstress, west_gwstress 17 17 use age_of_air_mod, only: ok_aoa 18 use tabcontrol_mod, only: dtime, radpas, length 18 19 use clesphys_mod 19 20 … … 25 26 !include "netcdf.inc" 26 27 include "dimsoil.h" 27 !include "clesphys.h"28 include "tabcontrol.h"29 28 !====================================================================== 30 29 -
trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F
r3841 r3875 84 84 use sed_and_prod_mad, only: aer_sedimentation, drop_sedimentation 85 85 use iono_h, only: temp_elect, temp_ion 86 use tabcontrol_mod, only: radpas, dtime 86 87 use clesphys_mod 87 88 #ifdef CPP_XIOS … … 115 116 c====================================================================== 116 117 #include "dimsoil.h" 117 c#include "clesphys.h"118 118 #include "iniprint.h" 119 119 #include "timerad.h" 120 #include "tabcontrol.h"121 120 #include "nirdata.h" 122 121 #include "hedin.h" -
trunk/LMDZ.VENUS/libf/phyvenus/printflag.F
r3835 r3875 8 8 c Auteur : P. Le Van 9 9 10 USE tabcontrol_mod 10 11 USE clesphys_mod 11 12 … … 17 18 INTEGER radpas0 18 19 c 19 c#include "clesphys.h"20 #include "tabcontrol.h"21 20 #include "YOMCST.h" 22 21 c -
trunk/LMDZ.VENUS/libf/phyvenus/tabcontrol.F90
r3874 r3875 1 !------------------------------------------------------------------- 2 ! INCLUDE tabcontrol.h 3 !------------------------------------------------------------------- 1 MODULE tabcontrol_mod 4 2 5 INTEGER radpas,chimpas ! frequences d'appel rayonnement, chimie 6 REAL dtime ! pas temporel de la physique 3 ! stores some formation about run parameters 7 4 8 ! tableau de controle 9 INTEGER length 10 PARAMETER ( length = 100 ) 11 REAL tabcntr0( length ) 5 IMPLICIT NONE 12 6 7 INTEGER,SAVE :: radpas ! rate of computation of radiative transfert, in physics steps 8 !$OMP THREADPRIVATE(radpas) 13 9 14 COMMON/ctltab_i/radpas,chimpas 15 COMMON/ctltab_r/dtime 16 COMMON/ctltab/tabcntr0 10 INTEGER,SAVE :: chimpas ! rate of computation of chemistry, in physics steps 11 !$OMP THREADPRIVATE(chimpas) 17 12 18 !$OMP THREADPRIVATE(/ctltab_i/,/ctltab_r/,/ctltab/) 13 REAL,SAVE :: dtime ! time step of the physics (s) 14 !$OMP THREADPRIVATE(dtime) 15 16 ! the "controle" array, used to store information in the restartphy file 17 INTEGER,PARAMETER :: length=100 18 REAL,SAVE :: tabcntr0(length) 19 !$OMP THREADPRIVATE(tabcntr0) 20 21 END MODULE tabcontrol_mod
Note: See TracChangeset
for help on using the changeset viewer.