Changes between Version 80 and Version 81 of doc/app/runtime_parameters
- Timestamp:
- Sep 14, 2010 12:15:06 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/runtime_parameters
v80 v81 409 409 Temporal interval at which time series data shall be output (in s).\\\\ 410 410 The default interval for the output of timeseries is calculated as shown below (this tries to minimize the number of calls of {{{flow_statistics}}}) 411 {{{ {IF ( averaging_interval_pr == 0.0 ) THEN}}}411 {{{IF ( averaging_interval_pr == 0.0 ) THEN}}} 412 412 {{{dt_dots = MIN( dt_run_control, dt_dopr )}}} 413 413 {{{ELSE}}} 414 414 {{{dt_dots = MIN( dt_run_control, dt_averaging_input_pr )}}} 415 415 {{{ENDIF}}}} 416 This parameter can be used to assign the temporal interval at which data points shall be output. 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). Is dt_dots < dt, then data of the time series are written after each time step (if this is requested it should be dt_dots = 0). 416 417 }}} 417 418 |----------------