- Timestamp:
- Jun 18, 2015, 1:53:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/time_phylmdz_mod.f90
r3831 r3835 2 2 3 3 REAL,SAVE :: pdtphys ! physics time step (s) 4 !$OMP THREADPRIVATE(pdtphys) 4 5 INTEGER,SAVE :: day_step ! number of physical steps per day 6 !$OMP THREADPRIVATE(day_step) 5 7 INTEGER,SAVE :: ndays ! number of days to run 8 !$OMP THREADPRIVATE(ndays) 6 9 INTEGER,SAVE :: annee_ref ! reference year from the origin 10 !$OMP THREADPRIVATE(annee_ref) 7 11 INTEGER,SAVE :: day_ref ! reference year of the origin 12 !$OMP THREADPRIVATE(day_ref) 8 13 INTEGER,SAVE :: day_ini ! initial day of the run starting from 1st january of annee_ref 14 !$OMP THREADPRIVATE(day_ini) 9 15 INTEGER,SAVE :: day_end ! final day of the run starting from 1st january of annee_ref 16 !$OMP THREADPRIVATE(day_end) 10 17 REAL,SAVE :: start_time ! starting time from the begining of the initial day 18 !$OMP THREADPRIVATE(start_time) 11 19 INTEGER,SAVE :: raz_date 20 !$OMP THREADPRIVATE(raz_date) 12 21 13 22 INTEGER,SAVE :: itau_phy ! number of physiq iteration from origin 23 !$OMP THREADPRIVATE(itau_phy) 14 24 INTEGER,SAVE :: itaufin ! final iteration 25 !$OMP THREADPRIVATE(itaufin) 15 26 REAL,SAVE :: current_time ! current elapsed time (s) from the begining of the run 16 27 !$OMP THREADPRIVATE(current_time) 17 28 18 29 … … 22 33 USE ioipsl, ONLY : getin 23 34 USE phys_cal_mod, ONLY: phys_cal_init 35 USE mod_phys_lmdz_para 24 36 IMPLICIT NONE 25 37 INCLUDE 'YOMCST.h' … … 42 54 43 55 raz_date = 0 44 CALL getin('raz_date', raz_date) 56 IF (is_master) CALL getin('raz_date', raz_date) 57 CALL bcast(raz_date) 45 58 current_time=0 46 59
Note: See TracChangeset
for help on using the changeset viewer.