Changeset 103
- Timestamp:
- 2011-02-11T15:17:23+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_EXT/ORCHIDEE/src_sechiba/intersurf.f90
r64 r103 63 63 LOGICAL, SAVE :: OFF_LINE_MODE = .FALSE. 64 64 ! 65 !!$ DS : ajout du flag IMPOS _PARAM65 !!$ DS : ajout du flag IMPOSE_PARAM 66 66 ! Flag impos_param : it is set to true by default 67 LOGICAL, SAVE :: impos _param = .TRUE.67 LOGICAL, SAVE :: impose_param = .TRUE. 68 68 ! 69 69 CONTAINS … … 182 182 CALL ipslnlf(new_number=numout,old_number=old_fileout) 183 183 184 ! Number of PFTs defined by the user185 CALL getin('NVM',nvm)184 !!$ ! Number of PFTs defined by the user 185 !!$ CALL getin('NVM',nvm) 186 186 ! 187 187 IF (l_first_intersurf) THEN … … 2689 2689 TYPE(control_type), INTENT(out) :: control_flags !! Flags that (de)activate parts of the model 2690 2690 2691 2692 ! 2693 !Config Key = NVM 2694 !Config Desc = number of PFTs 2695 CALL getin_p('NVM',nvm) 2696 WRITE(numout,*)'the number of pfts is : ', nvm 2697 !!$DS Debug 28/01/2011 2691 2698 ! 2692 2699 !Config Key = LONGPRINT … … 2734 2741 WRITE(numout,*) 'WATCHOUT file :', watchout_file 2735 2742 ENDIF 2743 2744 2745 !!$ DS : reading of IMPOSE_PARAM 2746 ! Option : do you want to change the values of the parameters 2747 CALL getin_p('IMPOSE_PARAM',impose_param) 2748 ! Calling pft_parameters 2749 CALL pft_main 2736 2750 ! 2737 2751 !Config Key = RIVER_ROUTING … … 2792 2806 2793 2807 !!$ DS : reading of IMPOSE_PARAM 2794 ! Option : do you want to change the values of the parameters2795 CALL getin_p('IMPOS_PARAM',impos_param)2796 ! Calling pft_parameters2797 CALL pft_main2808 !!$ ! Option : do you want to change the values of the parameters 2809 !!$ CALL getin_p('IMPOS_PARAM',impos_param) 2810 !!$ ! Calling pft_parameters 2811 !!$ CALL pft_main 2798 2812 2799 2813 ! … … 2810 2824 IF ( control_flags%ok_stomate ) THEN 2811 2825 CALL getin_stomate_parameters 2812 IF ( impos _param ) THEN2826 IF ( impose_param ) THEN 2813 2827 CALL getin_stomate_pft_parameters 2814 2828 WRITE(numout,*)' some stomate_pft_parameters have been imposed ' … … 2850 2864 IF ( control_flags%ok_sechiba ) THEN 2851 2865 CALL getin_sechiba_parameters 2852 IF ( impos _param ) THEN2866 IF ( impose_param ) THEN 2853 2867 CALL getin_sechiba_pft_parameters 2854 2868 WRITE(numout,*)' some sechiba_pft_parameters have been imposed '
Note: See TracChangeset
for help on using the changeset viewer.