- Timestamp:
- Jun 18, 2015, 1:53:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/phys_cal_mod.F90
r3831 r3835 3 3 ! This module contains information on the calendar at the actual time step 4 4 5 SAVE 6 7 INTEGER :: year_cur ! current year 8 INTEGER :: mth_cur ! current month 9 INTEGER :: day_cur ! current day 10 INTEGER :: days_elapsed ! number of whole days since start of the simulation 11 INTEGER :: mth_len ! number of days in the current month 12 INTEGER :: year_len ! number of days in the current year 13 REAL :: hour 14 REAL :: jD_1jan 15 REAL :: jH_1jan 16 REAL :: xjour 17 REAL :: jD_cur ! jour courant a l'appel de la physique (jour julien) 18 REAL :: jH_cur ! heure courante a l'appel de la physique (jour julien) 19 REAL :: jD_ref ! jour du demarage de la simulation (jour julien) 5 INTEGER,SAVE :: year_cur ! current year 6 !$OMP THREADPRIVATE(year_cur) 7 INTEGER,SAVE :: mth_cur ! current month 8 !$OMP THREADPRIVATE(mth_cur) 9 INTEGER,SAVE :: day_cur ! current day 10 !$OMP THREADPRIVATE(day_cur) 11 INTEGER,SAVE :: days_elapsed ! number of whole days since start of the simulation 12 !$OMP THREADPRIVATE(days_elapsed) 13 INTEGER,SAVE :: mth_len ! number of days in the current month 14 !$OMP THREADPRIVATE(mth_len) 15 INTEGER,SAVE :: year_len ! number of days in the current year 16 !$OMP THREADPRIVATE(year_len) 17 REAL,SAVE :: hour 18 !$OMP THREADPRIVATE(hour) 19 REAL,SAVE :: jD_1jan 20 !$OMP THREADPRIVATE(jD_1jan) 21 REAL,SAVE :: jH_1jan 22 !$OMP THREADPRIVATE(jH_1jan) 23 REAL,SAVE :: xjour 24 !$OMP THREADPRIVATE(xjour) 25 REAL,SAVE :: jD_cur ! jour courant a l'appel de la physique (jour julien) 26 !$OMP THREADPRIVATE(jD_cur) 27 REAL,SAVE :: jH_cur ! heure courante a l'appel de la physique (jour julien) 28 !$OMP THREADPRIVATE(jH_cur) 29 REAL,SAVE :: jD_ref ! jour du demarage de la simulation (jour julien) 30 !$OMP THREADPRIVATE(jD_ref) 20 31 21 32
Note: See TracChangeset
for help on using the changeset viewer.