Ignore:
Timestamp:
Dec 3, 2014 5:42:41 PM (9 years ago)
Author:
maronga
Message:

bugfixes and adjustments in land surface model

File:
1 edited

Legend:

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

    r1497 r1500  
    958958       ENDIF   
    959959
    960 !      Dirichlet boundary conditions are allowed at the moment for testing
    961 !      purposes
    962 !        IF ( bc_pt_b == 'dirichlet' .OR. bc_q_b == 'dirichlet' )  THEN
    963 !           message_string = 'lsm requires setting of'//                         &
    964 !                            'bc_pt_b = "neumann" and '//                        &
    965 !                            'bc_q_b  = "neumann"'
    966 !           CALL message( 'check_parameters', 'PA0399', 1, 2, 0, 6, 0 )
    967 !        ENDIF
     960!
     961!--    Dirichlet boundary conditions are required as the surface fluxes are
     962!--    calculated from the temperature/humidity gradients in the land surface
     963!--    model
     964       IF ( bc_pt_b == 'neumann' .OR. bc_q_b == 'neumann' )  THEN
     965          message_string = 'lsm requires setting of'//                         &
     966                           'bc_pt_b = "dirichlet" and '//                        &
     967                           'bc_q_b  = "dirichlet"'
     968          CALL message( 'check_parameters', 'PA0399', 1, 2, 0, 6, 0 )
     969       ENDIF
    968970
    969971       IF ( .NOT. prandtl_layer )  THEN
Note: See TracChangeset for help on using the changeset viewer.