Changeset 8606 for branches/ORCHIDEE_2_2
- Timestamp:
- 2024-06-28T13:44:41+02:00 (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_2_2/ORCHIDEE/src_driver/forcing_tools.f90
r8595 r8606 1069 1069 !Config assume that the rainfall is uniformely distributed over the forcing interval. 1070 1070 !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 1076 1077 ELSE 1077 time_to_spread  =Âforcing_tstep_ave1078 time_to_spread = forcing_tstep_ave 1078 1079 END IF 1079 1080 !
Note: See TracChangeset
for help on using the changeset viewer.