Ignore:
Timestamp:
Mar 29, 2016, 11:45:49 AM (9 years ago)
Author:
emillour
Message:

All GCMS:
More updates to enforce dynamics/physics separation:

get rid of references to "temps_mod" from physics packages;
make a "time_phylmdz_mod.F90" module to store that
information and fill it via "iniphysiq".

EM

Location:
trunk/LMDZ.COMMON/libf/dynlonlat_phylonlat
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/dynlonlat_phylonlat/phytitan/iniphysiq_mod.F90

    r1523 r1524  
    2222                        rlond, & ! longitudes
    2323                        rlatd ! latitudes
     24  USE temps_mod, ONLY: annee_ref, day_ref, day_ini, day_end
     25  USE time_phylmdz_mod, ONLY: init_time
    2426  USE regular_lonlat_mod, ONLY : init_regular_lonlat, &
    2527                                 east, west, north, south, &
     
    172174  call suphec
    173175
     176  ! Initialize some "temporal and calendar" related variables
     177  CALL init_time(annee_ref,day_ref,day_ini,day_end,ptimestep)
     178
    174179!$OMP END PARALLEL
    175180
  • trunk/LMDZ.COMMON/libf/dynlonlat_phylonlat/phyvenus/iniphysiq_mod.F90

    r1523 r1524  
    2222                        rlond, & ! longitudes
    2323                        rlatd ! latitudes
     24  USE temps_mod, ONLY: annee_ref, day_ref, day_ini, day_end
     25  USE time_phylmdz_mod, ONLY: init_time
    2426  USE regular_lonlat_mod, ONLY : init_regular_lonlat, &
    2527                                 east, west, north, south, &
     
    172174  call suphec
    173175
     176  ! Initialize some "temporal and calendar" related variables
     177  CALL init_time(annee_ref,day_ref,day_ini,day_end,ptimestep)
     178
    174179!$OMP END PARALLEL
    175180
Note: See TracChangeset for help on using the changeset viewer.