SUBROUTINE SUCT0(KULOUT) 2,1
#if defined (DOC)
C
C* Initialization of the control of the job
C ----------------------------------------
C Author: P. GAUTHIER *ARMA/AES* April 13, 1992
C
C Revision:
C S. Pellerin *ARMA/SMC Oct. 2000
C - default values
* S. Pellerin *ARMA/SMC nov. 2001
* - Introduction of logical l4dvar
* Y. Yang Oct. 2004
* - Added logical flag LCHEM to indicate whether chemical species
* are to be assimilated (if .true., read the namelist namchem
* and namvarstd)
* S. Pellerin ARMA nov. 2008
* - Introduction of CMINMODE variable
*
#endif
IMPLICIT NONE
#include "comct0.cdk"
#include "comlun.cdk"
C
INTEGER KULOUT, IERR
C
C* 1. Set the default values
C
NCONF = 141
NLFFT = 1024
NLATBD = 8
CMINMODE = 'VAR'
LDEBUG = .FALSE.
LTEST = .FALSE.
LSIMOB = .FALSE.
LCHEM = .FALSE.
C
C* 2. Read the NAMELIST to modify these values
C
C
CALL READNML
('NAMCT0',IERR)
C
if (ldebug) nulout=0
C
RETURN
END