Ignore:
Timestamp:
Sep 12, 2018 3:02:00 PM (6 years ago)
Author:
raasch
Message:

various changes to avoid compiler warnings (mainly removal of unused variables)

File:
1 edited

Legend:

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

    r3176 r3241  
    2525! -----------------
    2626! $Id$
     27! unused variables removed
     28!
     29! 3176 2018-07-26 17:12:48Z suehring
    2730! Remove output of latent heat flux at urban-surfaces and set fill values
    2831! instead
     
    232235    USE arrays_3d,                                                             &
    233236        ONLY:  dzw, e, heatflux_output_conversion, nc, nr, p, pt,              &
    234                precipitation_amount, prr, q, qc, ql, ql_c, ql_v, ql_vp, qr,    &
     237               precipitation_amount, prr, q, qc, ql, ql_c, ql_v, qr,           &
    235238               rho_ocean, s, sa, tend, u, v, vpt, w, zu, zw,                   &
    236239               waterflux_output_conversion
     
    249252               ibc_uv_b, io_blocks, io_group, land_surface, message_string,    &
    250253               ntdim_2d_xy, ntdim_2d_xz, ntdim_2d_yz,                          &
    251                psolver, section, simulated_time, simulated_time_chr,           &
     254               psolver, section, simulated_time,                               &
    252255               time_since_reference_point, uv_exposure
    253256       
     
    255258        ONLY:  cpu_log, log_point
    256259       
    257     USE grid_variables,                                                        &
    258         ONLY:  dx, dy
    259 
    260260    USE gust_mod,                                                              &
    261261        ONLY:  gust_data_output_2d, gust_module_enabled
    262262       
    263263    USE indices,                                                               &
    264         ONLY:  nbgp, nx, nxl, nxlg, nxr, nxrg, ny, nyn, nyng, nys, nysg, nz,   &
     264        ONLY:  nbgp, nx, nxl, nxlg, nxr, nxrg, ny, nyn, nyng, nys, nysg,       &
    265265               nzb, nzt, wall_flags_0
    266266               
     
    304304    CHARACTER (LEN=2)  ::  mode         !<
    305305    CHARACTER (LEN=4)  ::  grid         !<
    306     CHARACTER (LEN=25) ::  section_chr  !<
    307306    CHARACTER (LEN=50) ::  rtext        !<
    308307   
     
    325324    INTEGER(iwp) ::  nzb_do    !< lower limit of the data field (usually nzb)
    326325    INTEGER(iwp) ::  nzt_do    !< upper limit of the data field (usually nzt+1)
    327     INTEGER(iwp) ::  psi       !<
    328326    INTEGER(iwp) ::  s_ind     !<
    329327    INTEGER(iwp) ::  sender    !<
     
    13991397                IF ( .NOT. found )  THEN
    14001398                   CALL tcm_data_output_2d( av, do2d(av,if), found, grid, mode,&
    1401                                              local_pf, two_d, nzb_do, nzt_do )
     1399                                             local_pf, nzb_do, nzt_do )
    14021400                ENDIF
    14031401
     
    14201418!--             UV exposure model quantity
    14211419                IF ( uv_exposure )  THEN
    1422                    CALL uvem_data_output_2d( av, do2d(av,if), found, grid, mode,&
     1420                   CALL uvem_data_output_2d( av, do2d(av,if), found, grid,     &
    14231421                                             local_pf, two_d, nzb_do, nzt_do )
    14241422                ENDIF
Note: See TracChangeset for help on using the changeset viewer.