Ignore:
Timestamp:
Apr 30, 2020 4:29:59 PM (4 years ago)
Author:
suehring
Message:

Bugfix in plant-canopy model for output of averaged transpiration rate after a restart; Revise check for output for plant heating rate and rename error message number; Surface-data output: enable output of mixing ratio and passive scalar concentration at the surface; Surface-data input: Add possibility to prescribe surface sensible and latent heat fluxes via static input file

File:
1 edited

Legend:

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

    r4509 r4514  
    2424! -----------------
    2525! $Id$
     26! Enable output of qsurf and ssurf
     27!
     28! 4509 2020-04-26 15:57:55Z raasch
    2629! file re-formatted to follow the PALM coding standard
    2730!
     
    284287             ENDIF
    285288
     289         CASE ( 'qsurf*' )
     290             IF ( ALLOCATED( qsurf_av ) )  THEN
     291                DO  i = nxlg, nxrg
     292                   DO  j = nysg, nyng
     293                      qsurf_av(j,i) = qsurf_av(j,i) / REAL( average_count_3d, KIND=wp )
     294                   ENDDO
     295                ENDDO
     296                CALL exchange_horiz_2d( qsurf_av )
     297             ENDIF
     298
    286299         CASE ( 'r_a*' )
    287300             IF ( ALLOCATED( r_a_av ) )  THEN
     
    315328             ENDIF
    316329
     330          CASE ( 'ssurf*' )
     331             IF ( ALLOCATED( ssurf_av ) )  THEN
     332                DO  i = nxlg, nxrg
     333                   DO  j = nysg, nyng
     334                      ssurf_av(j,i) = ssurf_av(j,i) / REAL( average_count_3d, KIND=wp )
     335                   ENDDO
     336                ENDDO
     337                CALL exchange_horiz_2d( ssurf_av )
     338             ENDIF
     339
    317340          CASE ( 'ssws*' )
    318341             IF ( ALLOCATED( ssws_av ) )  THEN
Note: See TracChangeset for help on using the changeset viewer.