411 | | IF ( averaging_interval_pr == 0.0 ) THEN |
412 | | dt_dots = MIN( dt_run_control, dt_dopr ) |
413 | | ELSE |
414 | | dt_dots = MIN( dt_run_control, dt_averaging_input_pr ) |
415 | | ENDIF |
416 | | }}} |
417 | | 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 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). |
| 411 | IF ( averaging_interval_pr == 0.0 ) THEN |
| 412 | dt_dots = MIN( dt_run_control, dt_dopr ) |
| 413 | ELSE |
| 414 | dt_dots = MIN( dt_run_control, dt_averaging_input_pr ) |
| 415 | ENDIF |
| 416 | }}} |
| 417 | 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 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).\\\\ |
| 418 | The default value of '''dt_dots''' is calculated as follows:\\\\ |
| 419 | {{{ |
| 420 | IF ( averaging_interval_pr == 0.0 ) THEN |
| 421 | dt_dots = MIN( dt_run_control, dt_dopr ) |
| 422 | ELSE |
| 423 | dt_dots = MIN( dt_run_control, dt_averaging_input_pr ) |
| 424 | ENDIF |
| 425 | }}} |