|
Neko 1.99.7
A portable framework for high-order spectral element flow simulations
|
Implements boundary_operation_t.
Data Types | |
| type | boundary_operation_t |
| A simulation component for boundary reductions on labelled zones. More... | |
Functions/Subroutines | |
| subroutine | boundary_operation_init_from_json (this, json, case) |
| Construct from JSON. | |
| subroutine | boundary_operation_init_common (this, name, coef, zone_indices, field_name, operations, log, output_filename) |
| Common constructor shared by all public constructors. | |
| subroutine | boundary_operation_init_from_controllers (this, name, case, order, preprocess_controller, compute_controller, output_controller, zone_indices, field_name, operations, log, output_filename) |
| Construct from explicit time-based controllers. | |
| subroutine | boundary_operation_init_from_controllers_properties (this, name, case, order, preprocess_control, preprocess_value, compute_control, compute_value, output_control, output_value, zone_indices, field_name, operations, log, output_filename) |
| Construct from time-based controller properties. | |
| subroutine | boundary_operation_free (this) |
| Free all resources owned by the component. | |
| subroutine | boundary_operation_compute (this, time) |
| Compute and optionally output the requested boundary operations. | |
| pure character(len=:) function, allocatable | left_pad (text, width) |
| Left-pad a string to a fixed width. | |
|
private |
| time | Current simulation time state. |
Definition at line 390 of file boundary_operation.f90.

|
private |
Definition at line 370 of file boundary_operation.f90.
|
private |
| name | Unique simcomp name. |
| coef | SEM coefficients. |
| zone_indices | Labelled zones to include. |
| field_name | Name of the registered field to process. |
| operations | Requested operations in output order. |
| log | Whether to emit tabular log output. |
| output_filename | Optional CSV output filename. |
Definition at line 164 of file boundary_operation.f90.

|
private |
| name | Unique simcomp name. |
| case | Simulation case owning the simcomp. |
| order | Execution priority. |
| preprocess_controller | Controller for preprocessing. |
| compute_controller | Controller for computation. |
| output_controller | Controller for output. |
| zone_indices | Labelled zones to include. |
| field_name | Name of the registered field to process. |
| operations | Requested operations in output order. |
| log | Optional flag controlling log output. |
| output_filename | Optional CSV output filename. |
Definition at line 281 of file boundary_operation.f90.
|
private |
| name | Unique simcomp name. |
| case | Simulation case owning the simcomp. |
| order | Execution priority. |
| preprocess_control | Control mode for preprocessing. |
| preprocess_value | Control value for preprocessing. |
| compute_control | Control mode for computation. |
| compute_value | Control value for computation. |
| output_control | Control mode for output. |
| output_value | Control value for output. |
| zone_indices | Labelled zones to include. |
| field_name | Name of the registered field to process. |
| operations | Requested operations in output order. |
| log | Optional flag controlling log output. |
| output_filename | Optional CSV output filename. |
Definition at line 330 of file boundary_operation.f90.
| subroutine boundary_operation::boundary_operation_init_from_json | ( | class(boundary_operation_t), intent(inout), target | this, |
| type(json_file), intent(inout) | json, | ||
| class(case_t), intent(inout), target | case | ||
| ) |
| json | JSON object describing the simcomp. |
| case | Simulation case. |
Definition at line 125 of file boundary_operation.f90.
|
private |
| text | Input string. |
| width | Width of the padded result. |
Definition at line 495 of file boundary_operation.f90.
