Ignore:
Timestamp:
Nov 2, 2015 7:43:04 AM (8 years ago)
Author:
maronga
Message:

minor bugfixes for radiation model. bugfix in subjob

File:
1 edited

Legend:

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

    r1692 r1701  
    1919! Current revisions:
    2020! -----------------
    21 !
     21! Bugfix: definition of rad_net timeseries was missing
    2222!
    2323! Former revisions:
     
    31163116             ENDIF
    31173117
     3118          CASE ( 'rad_net' )
     3119             IF ( (.NOT. radiation) .OR. radiation_scheme == 'constant' )  THEN
     3120                message_string = 'data_output_pr = ' //                        &
     3121                                 TRIM( data_output_pr(i) ) // ' is not ava' // &
     3122                                 'lable for radiation = .FALSE. or ' //        &
     3123                                 'radiation_scheme = "constant"'
     3124                CALL message( 'check_parameters', 'PA0408', 1, 2, 0, 6, 0 )
     3125             ELSE
     3126                dopr_index(i) = 101
     3127                dopr_unit(i)  = 'W/m2'
     3128                hom(:,2,101,:)  = SPREAD( zw, 2, statistic_regions+1 )
     3129             ENDIF
     3130
    31183131          CASE ( 'rad_lw_in' )
    31193132             IF ( (.NOT. radiation) .OR. radiation_scheme == 'constant' )  THEN
Note: See TracChangeset for help on using the changeset viewer.