Changeset 433 for branches/ORCHIDEE_EXT/ORCHIDEE
- Timestamp:
- 2011-09-01T15:52:59+02:00 (13 years ago)
- Location:
- branches/ORCHIDEE_EXT/ORCHIDEE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters/constantes.f90
r366 r433 203 203 REAL(r_std), PARAMETER :: pi = 4.*ATAN(1.) 204 204 ! e 205 REAL(r_std),PARAMETER :: euler = 2.71828182846 !or euler = EXP(1.)205 REAL(r_std),PARAMETER :: euler = EXP(1.) ! previously euler = 2.71828182846 206 206 !- 207 207 ! Integer constant set to zero … … 417 417 ! 418 418 ! allow agricultural PFTs 419 LOGICAL, SAVE:: agriculture = .TRUE.419 LOGICAL, SAVE :: agriculture = .TRUE. 420 420 LOGICAL, SAVE :: impveg = .FALSE. 421 421 LOGICAL, SAVE :: impsoilt = .FALSE. -
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/hydrol.f90
r311 r433 1895 1895 INTEGER(i_std) :: ji, jv 1896 1896 REAL(r_std), DIMENSION (kjpindex,nvm) :: zqsintvegnew 1897 !!$ LOGICAL, SAVE :: firstcall=.TRUE.1898 !!$1899 !!$ IF ( firstcall ) THEN1900 !!$1901 !!$ throughfall_by_pft = throughfall_by_pft / 100.1902 !!$1903 !!$ firstcall=.FALSE.1904 !!$ ENDIF1905 1906 1897 1907 1898 ! calcul de qsintmax a prevoir a chaque pas de temps -
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/hydrolc.f90
r311 r433 447 447 ENDIF 448 448 449 ! >> july 2011 add initialisation of sneige and throughfall_by_pft449 ! >> DS : july 2011 add initialisation of sneige and throughfall_by_pft 450 450 sneige = snowcri/mille 451 451 throughfall_by_pft = throughfall_by_pft / 100. … … 1450 1450 INTEGER(i_std) :: ji, jv 1451 1451 REAL(r_std), DIMENSION (kjpindex,nvm) :: zqsintvegnew 1452 !!$ LOGICAL, SAVE :: firstcall=.TRUE.1453 !!$1454 !!$ IF ( firstcall ) THEN1455 !!$1456 !!$ throughfall_by_pft = throughfall_by_pft / 100.1457 !!$1458 !!$ firstcall=.FALSE.1459 !!$ ENDIF1460 1452 1461 1453 ! calcul de qsintmax a prevoir a chaque pas de temps -
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/intersurf.f90
r428 r433 66 66 LOGICAL, SAVE :: OFF_LINE_MODE = .FALSE. 67 67 LOGICAL, SAVE :: check_time = .FALSE. 68 PUBLIC check_time, l_first_intersurf 68 !!$ DS : ajout du flag IMPOSE_PARAM 69 ! Flag impos_param : should we read the parameters in the run.def file ? 70 LOGICAL, SAVE :: impose_param = .TRUE. 69 71 ! 70 !!$ DS : ajout du flag IMPOSE_PARAM 71 ! Flag impos_param : it is set to true by default 72 LOGICAL, SAVE :: impose_param = .TRUE. 72 PUBLIC check_time, l_first_intersurf,impose_param 73 73 ! 74 74 CONTAINS … … 2812 2812 WRITE(numout,*) 'WATCHOUT file :', watchout_file 2813 2813 ENDIF 2814 2815 2814 ! 2816 2815 !Config Key = RIVER_ROUTING … … 2824 2823 CALL getin_p('RIVER_ROUTING', control_flags%river_routing) 2825 2824 WRITE(numout,*) "RIVER routing is activated : ",control_flags%river_routing 2826 !2827 2828 2825 ! 2829 2826 !Config key = HYDROL_CWRR … … 2844 2841 ENDIF 2845 2842 ! 2846 2847 !2848 2843 !Config Key = STOMATE_OK_CO2 2849 2844 !Config Desc = Activate CO2? … … 2855 2850 WRITE(numout,*) 'photosynthesis: ', control_flags%ok_co2 2856 2851 ! 2857 2858 !2859 2852 !Config Key = STOMATE_OK_STOMATE 2860 2853 !Config Desc = Activate STOMATE? … … 2865 2858 CALL getin_p('STOMATE_OK_STOMATE',control_flags%ok_stomate) 2866 2859 WRITE(numout,*) 'STOMATE is activated: ',control_flags%ok_stomate 2867 !2868 2869 2860 ! 2870 2861 !Config Key = STOMATE_OK_DGVM
Note: See TracChangeset
for help on using the changeset viewer.