Changeset 407
- Timestamp:
- 2011-08-29T10:06:18+02:00 (13 years ago)
- Location:
- branches/ORCHIDEE_EXT/ORCHIDEE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/intersurf.f90
r366 r407 2778 2778 CALL getin_p('LONGPRINT',long_print) 2779 2779 ! 2780 !Config Key = CHECKTIME 2781 !Config Desc = ORCHIDEE will print messages on time 2782 !Config Def = n 2783 !Config Help = This flag permits to print debug messages on the time. 2784 ! 2785 check_time = .FALSE. 2786 CALL getin_p('CHECKTIME',check_time) 2787 ! 2780 2788 ! 2781 2789 !Config Key = ORCHIDEE_WATCHOUT … … 2960 2968 ! DS: activation of sub-models of ORCHIDEE 2961 2969 CALL activate_sub_models(control_flags%ok_sechiba, control_flags%river_routing,control_flags%ok_stomate) 2962 ! Vegetation configuration(impose_veg, land_use, lcch nage...previously in slowproc)2970 ! Vegetation configuration(impose_veg, land_use, lcchange...previously in slowproc) 2963 2971 CALL veget_config 2964 2972 ! -
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/routing.f90
r354 r407 538 538 CALL ioconf_setatt('LONG_NAME','Time counter for the routing scheme') 539 539 CALL restget (rest_id, var_name, 1, 1, 1, kjit, .TRUE., tmp_day) 540 time_counter = tmp_day(1) 540 IF (tmp_day(1) == val_exp) THEN 541 time_counter = zero 542 ELSE 543 time_counter = tmp_day(1) 544 ENDIF 541 545 CALL setvar (time_counter, val_exp, 'NO_KEYWORD', zero) 542 546 ENDIF -
branches/ORCHIDEE_EXT/ORCHIDEE/src_stomate/stomate_io.f90
r335 r407 343 343 date = NINT(date_real) 344 344 ENDIF 345 CALL bcast(date _real)345 CALL bcast(date) 346 346 !- 347 347 ! 3 daily meteorological variables
Note: See TracChangeset
for help on using the changeset viewer.