Ignore:
Timestamp:
Feb 10, 2020 8:32:41 PM (4 years ago)
Author:
suehring
Message:

Revision of the virtual-measurement module: data input from NetCDF file; removed binary output - instead parallel NetCDF output using the new data-output module; variable attributes added; further variables added that can be sampled, file connections added; Functions for coordinate transformation moved to basic_constants_and_equations; netcdf_data_input_mod: unused routines netcdf_data_input_att and netcdf_data_input_var removed; new routines to inquire fill values added; Preprocessing script (palm_cvd) to setup virtual-measurement input files provided; postprocessor combine_virtual_measurements deleted

File:
1 edited

Legend:

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

    r4392 r4400  
    2828! -----------------
    2929! $Id$
     30! Initialize radiation arrays with zero
     31!
     32! 4392 2020-01-31 16:14:57Z pavelkrc
    3033! - Add debug tracing of large radiative fluxes (option trace_fluxes_above)
    3134! - Print exact counts of SVF and CSF if debut_output is enabled
     
    17821785          IF ( .NOT. ALLOCATED ( rad_sw_in ) )  THEN
    17831786             ALLOCATE ( rad_sw_in(0:0,nysg:nyng,nxlg:nxrg) )
     1787             rad_sw_in = 0.0_wp
    17841788          ENDIF
    17851789          IF ( .NOT. ALLOCATED ( rad_sw_out ) )  THEN
    17861790             ALLOCATE ( rad_sw_out(0:0,nysg:nyng,nxlg:nxrg) )
     1791             rad_sw_out = 0.0_wp
    17871792          ENDIF
    17881793
    17891794          IF ( .NOT. ALLOCATED ( rad_lw_in ) )  THEN
    17901795             ALLOCATE ( rad_lw_in(0:0,nysg:nyng,nxlg:nxrg) )
     1796             rad_lw_in = 0.0_wp
    17911797          ENDIF
    17921798          IF ( .NOT. ALLOCATED ( rad_lw_out ) )  THEN
    17931799             ALLOCATE ( rad_lw_out(0:0,nysg:nyng,nxlg:nxrg) )
     1800             rad_lw_out = 0.0_wp
    17941801          ENDIF
    17951802
Note: See TracChangeset for help on using the changeset viewer.