Ignore:
Timestamp:
2024-06-28T13:44:41+02:00 (11 days ago)
Author:
josefine.ghattas
Message:

Correction on commit [8595]. Unvisible bad caracteres where induced. Ticket #836

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ORCHIDEE_2_2/ORCHIDEE/src_driver/forcing_tools.f90

    r8595 r8606  
    10691069          !Config         assume that the rainfall is uniformely distributed over the forcing interval. 
    10701070          !Config Units = [s] 
    1071           ! 
    1072           ! This is the default should 'SPREAD_PREC' not be present in the run.def 
    1073           ! 
    1074           IF ( forcing_tstep_ave >= one_day/8.0) THEN 
    1075              time_to_spread = forcing_tstep_ave/2.0 
     1071 
     1072          ! Default value of 'SPREAD_PREC_SEC' if not present in the run.def 
     1073          ! if forcing_tstep_ave >= 3 hours: time_to_spread is equal to half of the forcing time step 
     1074          ! otherwise, it is equal to the forcing time step  
     1075          IF ( forcing_tstep_ave >= one_day/8.0) THEN 
     1076             time_to_spread = forcing_tstep_ave/2.0 
    10761077          ELSE 
    1077              time_to_spread = forcing_tstep_ave 
     1078             time_to_spread = forcing_tstep_ave 
    10781079          END IF 
    10791080          ! 
Note: See TracChangeset for help on using the changeset viewer.