Ignore:
Timestamp:
Nov 28, 2014, 4:36:29 PM (10 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes -r2070:2158 into testing branch. Compilation problems introduced by revision r2155 have been corrected by hand

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/dyn3d_common/control_mod.F90

    r1999 r2160  
    1010  IMPLICIT NONE
    1111
    12   REAL    :: periodav, starttime
    13   INTEGER :: nday,day_step,iperiod,iapp_tracvl,nsplit_phys
    14   INTEGER :: iconser,iecri,dissip_period,iphysiq,iecrimoy
    15   INTEGER :: dayref,anneeref, raz_date, ip_ebil_dyn
    16   LOGICAL :: offline
    17   CHARACTER (len=4)  :: config_inca
    18   CHARACTER (len=10) :: planet_type ! planet type ('earth','mars',...)
    19   LOGICAL output_grads_dyn ! output dynamics diagnostics in
    20                            ! binary grads file 'dyn.dat' (y/n)
    21   LOGICAL ok_dynzon  ! output zonal transports in dynzon.nc file
    22   LOGICAL ok_dyn_ins ! output instantaneous values of fields
    23                      ! in the dynamics in NetCDF files dyn_hist*nc
    24   LOGICAL ok_dyn_ave ! output averaged values of fields in the dynamics
    25                      ! in NetCDF files dyn_hist*ave.nc
     12  REAL,SAVE :: periodav
     13  REAL,SAVE :: starttime
     14  INTEGER,SAVE :: nday ! # of days to run
     15  INTEGER,SAVE :: day_step ! # of dynamical time steps per day
     16  INTEGER,SAVE :: iperiod ! make a Matsuno step before avery iperiod-1 LF steps
     17  INTEGER,SAVE :: iapp_tracvl ! apply (cumulated) traceur advection every
     18                              ! iapp_tracvl dynamical steps
     19  INTEGER,SAVE :: nsplit_phys ! number of sub-cycle steps in call to physics
     20  INTEGER,SAVE :: iconser
     21  INTEGER,SAVE :: iecri
     22  INTEGER,SAVE :: dissip_period ! apply dissipation every dissip_period
     23                                ! dynamical step
     24  INTEGER,SAVE :: iphysiq ! call physics every iphysiq dynamical steps
     25  INTEGER,SAVE :: iecrimoy
     26  INTEGER,SAVE :: dayref
     27  INTEGER,SAVE :: anneeref ! reference year #
     28  INTEGER,SAVE :: raz_date
     29  INTEGER,SAVE :: ip_ebil_dyn
     30  LOGICAL,SAVE :: offline
     31  CHARACTER(len=4),SAVE :: config_inca
     32  CHARACTER(len=10),SAVE :: planet_type ! planet type ('earth','mars',...)
     33  LOGICAL,SAVE :: output_grads_dyn ! output dynamics diagnostics in
     34                                   ! binary grads file 'dyn.dat' (y/n)
     35  LOGICAL,SAVE :: ok_dynzon  ! output zonal transports in dynzon.nc file
     36  LOGICAL,SAVE ::  ok_dyn_ins ! output instantaneous values of fields
     37                              ! in the dynamics in NetCDF files dyn_hist*nc
     38  LOGICAL,SAVE :: ok_dyn_ave ! output averaged values of fields in the dynamics
     39                             ! in NetCDF files dyn_hist*ave.nc
     40  LOGICAL,SAVE :: resetvarc  ! allows to reset the variables in sortvarc
    2641
    2742END MODULE
Note: See TracChangeset for help on using the changeset viewer.