Changeset 407 for branches


Ignore:
Timestamp:
2011-08-29T10:06:18+02:00 (13 years ago)
Author:
didier.solyga
Message:

Merge the last revisions of the trunk (388 to 392). The externalized version is now based on the tag 1_9_5_2

Location:
branches/ORCHIDEE_EXT/ORCHIDEE
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/intersurf.f90

    r366 r407  
    27782778    CALL getin_p('LONGPRINT',long_print) 
    27792779    ! 
     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    ! 
    27802788    ! 
    27812789    !Config Key  = ORCHIDEE_WATCHOUT 
     
    29602968    ! DS: activation of sub-models of ORCHIDEE 
    29612969    CALL activate_sub_models(control_flags%ok_sechiba, control_flags%river_routing,control_flags%ok_stomate) 
    2962     ! Vegetation configuration(impose_veg, land_use, lcchnage...previously in slowproc) 
     2970    ! Vegetation configuration(impose_veg, land_use, lcchange...previously in slowproc) 
    29632971    CALL veget_config 
    29642972    ! 
  • branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/routing.f90

    r354 r407  
    538538       CALL ioconf_setatt('LONG_NAME','Time counter for the routing scheme') 
    539539       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 
    541545       CALL setvar (time_counter, val_exp, 'NO_KEYWORD', zero) 
    542546    ENDIF 
  • branches/ORCHIDEE_EXT/ORCHIDEE/src_stomate/stomate_io.f90

    r335 r407  
    343343       date = NINT(date_real) 
    344344    ENDIF 
    345     CALL bcast(date_real) 
     345    CALL bcast(date) 
    346346    !- 
    347347    ! 3 daily meteorological variables 
Note: See TracChangeset for help on using the changeset viewer.