Changeset 72 for branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters
- Timestamp:
- 2011-01-18T16:27:06+01:00 (14 years ago)
- Location:
- branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters/constantes.f90
r64 r72 45 45 ! One year in seconds 46 46 REAL(r_std),SAVE :: one_year 47 48 ! undef integer for integer arrays 49 INTEGER(i_std), PARAMETER :: undef_integer = 999999999 47 50 48 51 ! Specific value if no restart value -
branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters/pft_parameters.f90
r64 r72 405 405 406 406 ! Initialisation of the correspondance table 407 pft_to_mtc (:) = zero_int407 pft_to_mtc (:) = undef_integer 408 408 409 409 ! Reading of the conrrespondance table in the .def file 410 410 CALL getin('PFT_TO_MTC',pft_to_mtc) 411 412 ! Add the standard configuration 413 IF(nvm .EQ. 13 ) THEN 414 IF(pft_to_mtc(1) .EQ. undef_integer) THEN 415 WRITE(numout,*) 'Note to the user : we will use ORCHIDEE to its standard configuration' 416 pft_to_mtc(:) = (/ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 /) 417 ENDIF 418 ELSE 419 IF(pft_to_mtc(1) .EQ. undef_integer) THEN 420 WRITE(numout,*)' The array PFT_TO_MTC is empty : we stop' 421 ENDIF 422 ENDIF 411 423 412 424 ! What happened if pft_to_mtc(j) > nvmc (if the mtc doesn't exist)?
Note: See TracChangeset
for help on using the changeset viewer.