Changes between Version 269 and Version 270 of doc/app/runtime_parameters


Ignore:
Timestamp:
Feb 23, 2017 6:38:05 PM (8 years ago)
Author:
scharf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/runtime_parameters

    v269 v270  
    507507}}}
    508508{{{#!td
    509 Temporal interval at which time series data shall be output (in s).\\\\
    510 The default interval for the output of time series is calculated as shown below (this tries to minimize the number of calls of {{{flow_statistics}}})
    511 {{{
    512 IF ( averaging_interval_pr == 0.0 )  THEN
    513    dt_dots = MIN( dt_run_control, dt_dopr )
    514 ELSE
    515    dt_dots = MIN( dt_run_control, dt_averaging_input_pr )
    516 ENDIF
    517 }}}
    518 This parameter can be used to assign the temporal interval at which data points shall be output. The reference time is the beginning of  the simulation, i.e. output takes place at times t = '''dt_dots''', 2*'''dt_dots''', 3*'''dt_dots''', etc. The actual output times can deviate from these theoretical values (see [#dt_dopr dt_dopr]). Is '''dt_dots''' < [#dt dt], then data of the time series are written after each time step (if this is requested, it should be '''dt_dots''' = 0).\\\\
     509Temporal interval at which time series data shall be output (in s).\\\\
     510The reference time is the beginning of the simulation, i.e. output takes place at times t = '''dt_dots''', 2*'''dt_dots''', 3*'''dt_dots''', etc. The actual output times can deviate from these theoretical values (see [#dt_dopr dt_dopr]). Is '''dt_dots''' < [#dt dt], then data of the time series are written after each time step (if this is requested, it should be '''dt_dots''' = 0).\\\\
    519511The default value of '''dt_dots''' is calculated as follows:\\\\
    520512{{{