Implements output_controller_t  
 | 
| subroutine  | output_controller_init (this, time_end, size) | 
|   | Constructor.  
  | 
|   | 
| subroutine  | output_controller_free (this) | 
|   | Destructor.  
  | 
|   | 
| subroutine  | output_controller_add (this, out, write_par, write_control) | 
|   | Add an output out to the controller.  
  | 
|   | 
| subroutine  | output_controller_execute (this, t, tstep, ifforce) | 
|   | Query each of the controllers whether it is time to write, and if so, do so for the corresponding output.  
  | 
|   | 
| subroutine  | output_controller_set_counter (this, t) | 
|   | Set write counter based on time (after restart)  
  | 
|   | 
| subroutine  | output_controller_set_write_count (this, counter) | 
|   | Set write counter (after restart) explicitly.  
  | 
|   | 
◆ output_controller_add()
- Parameters
 - 
  
    | out | The output to add.  | 
    | write_par | The output frequency value, in accordance with write_control.  | 
    | write_control | Determines the meaning of write_par. Accepts the usual list of control options.  | 
  
   
Definition at line 131 of file output_controller.f90.
 
 
◆ output_controller_execute()
- Parameters
 - 
  
    | t | The time value.  | 
    | tstep | The current time-stepper iteration.  | 
    | ifforce | Whether to force a write. Optional, defaults to 0.  | 
  
   
Definition at line 213 of file output_controller.f90.
 
 
◆ output_controller_free()
◆ output_controller_init()
- Parameters
 - 
  
    | time_end | The end time of thesimulation.  | 
    | size | The number of controllers to allocate for. Optional, defaults to 1.  | 
  
   
Definition at line 81 of file output_controller.f90.
 
 
◆ output_controller_set_counter()
◆ output_controller_set_write_count()