Ignore:
Timestamp:
Feb 19, 2009 4:08:56 PM (15 years ago)
Author:
letzel
Message:
  • Option to predefine a target bulk velocity for conserve_volume_flow
File:
1 edited

Legend:

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

    r240 r241  
    55! -----------------
    66! Output of cluster_size
    7 ! +dp_external, dp_level_b, dp_smooth, dpdxy
    87! +canyon_height, canyon_width_x, canyon_width_y, canyon_wall_left,
    9 ! canyon_wall_south
     8! canyon_wall_south, conserve_volume_flow_mode, dp_external, dp_level_b,
     9! dp_smooth, dpdxy, u_bulk, v_bulk
    1010!
    1111! Former revisions:
     
    290290    IF ( passive_scalar )  WRITE ( io, 134 )
    291291    IF ( conserve_volume_flow )  THEN
    292        WRITE ( io, 150 )
     292       WRITE ( io, 150 )  conserve_volume_flow_mode
     293       IF ( TRIM( conserve_volume_flow_mode ) == 'bulk_velocity' )  THEN
     294          WRITE ( io, 151 )  u_bulk, v_bulk
     295       ENDIF
    293296    ELSEIF ( dp_external )  THEN
    294297       IF ( dp_smooth )  THEN
    295           WRITE ( io, 151 ) dpdxy, dp_level_b, ', vertically smoothed.'
     298          WRITE ( io, 152 ) dpdxy, dp_level_b, ', vertically smoothed.'
    296299       ELSE
    297           WRITE ( io, 151 ) dpdxy, dp_level_b, '.'
     300          WRITE ( io, 152 ) dpdxy, dp_level_b, '.'
    298301       ENDIF
    299302    ENDIF
     
    14061409                  'kinetic energy')
    14071410150 FORMAT (' --> Volume flow at the right and north boundary will be ', &
    1408                   'conserved')
    1409 151 FORMAT (' --> External pressure gradient directly prescribed by the user:'/, &
     1411                  'conserved'/ &
     1412            '     using the ',A,' mode')
     1413151 FORMAT ('     with u_bulk = ',F7.3,' m/s and v_bulk = ',F7.3,' m/s')
     1414152 FORMAT (' --> External pressure gradient directly prescribed by the user:'/, &
    14101415              2(1X,E12.5),'Pa/m', &
    14111416             ' in x/y direction starting from dp_level_b =', F6.3, 'm', &
Note: See TracChangeset for help on using the changeset viewer.