Ignore:
Timestamp:
Apr 7, 2016 12:01:39 PM (8 years ago)
Author:
maronga
Message:

further modularization of radiation model and plant canopy model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/init_3d_model.f90

    r1823 r1826  
    1919! Current revisions:
    2020! ------------------
    21 !
     21! Renamed radiation calls.
     22! Renamed canopy model calls.
    2223!
    2324! Former revisions:
     
    288289   
    289290    USE plant_canopy_model_mod,                                                &
    290         ONLY:  init_plant_canopy, plant_canopy
     291        ONLY:  pcm_init, plant_canopy
    291292
    292293    USE radiation_model_mod,                                                   &
    293         ONLY:  init_radiation, radiation
     294        ONLY:  radiation_init, radiation
    294295   
    295296    USE random_function_mod
     
    16311632!
    16321633!-- If required, initialize quantities needed for the plant canopy model
    1633     IF ( plant_canopy )  CALL init_plant_canopy
     1634    CALL location_message( 'initializing plant canopy model', .FALSE. )
     1635    IF ( plant_canopy )  CALL pcm_init
     1636    CALL location_message( 'finished', .TRUE. )
    16341637
    16351638!
     
    16761679    IF ( radiation )  THEN
    16771680       CALL location_message( 'initializing radiation model', .FALSE. )
    1678        CALL init_radiation
     1681       CALL radiation_init
    16791682       CALL location_message( 'finished', .TRUE. )
    16801683    ENDIF
Note: See TracChangeset for help on using the changeset viewer.