Ignore:
Timestamp:
Jan 26, 2019 5:03:42 PM (5 years ago)
Author:
knoop
Message:

Moved user_define_netdf_grid into user_module.f90
Added module interface for the definition of additional timeseries

File:
1 edited

Legend:

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

    r3668 r3700  
    780780    USE module_interface,                                                      &
    781781        ONLY:  module_interface_check_parameters,                              &
     782               module_interface_check_data_output_ts,                          &
    782783               module_interface_check_data_output_pr,                          &
    783784               module_interface_check_data_output
     
    790791        ONLY:  dopr_unit, do2d_unit, do3d_unit, netcdf_data_format,            &
    791792               netcdf_data_format_string, dots_unit, heatflux_output_unit,     &
    792                waterflux_output_unit, momentumflux_output_unit
     793               waterflux_output_unit, momentumflux_output_unit,                &
     794               dots_max, dots_num, dots_label
    793795
    794796    USE particle_attributes
     
    12531255    dots_unit(21)    = waterflux_output_unit
    12541256    dots_unit(19:20) = momentumflux_output_unit
     1257
     1258!
     1259!-- Add other module specific timeseries
     1260    CALL module_interface_check_data_output_ts( dots_max, dots_num, dots_label, dots_unit )
     1261
     1262!
     1263!-- Check if maximum number of allowed timeseries is exceeded
     1264    IF ( dots_num > dots_max )  THEN
     1265       WRITE( message_string, * ) 'number of time series quantities exceeds',  &
     1266                                  ' its maximum of dots_max = ', dots_max,     &
     1267                                  '&Please increase dots_max in modules.f90.'
     1268       CALL message( 'init_3d_model', 'PA0194', 1, 2, 0, 6, 0 )   
     1269    ENDIF
    12551270
    12561271!
Note: See TracChangeset for help on using the changeset viewer.