Implements boundary_operation_t.
|
| 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.
|
| |
◆ boundary_operation_compute()
◆ boundary_operation_free()
◆ boundary_operation_init_common()
| subroutine boundary_operation::boundary_operation_init_common |
( |
class(boundary_operation_t), intent(inout) |
this, |
|
|
character(len=*), intent(in) |
name, |
|
|
type(coef_t), intent(inout), target |
coef, |
|
|
integer, dimension(:), intent(in) |
zone_indices, |
|
|
character(len=*), intent(in) |
field_name, |
|
|
character(len=*), dimension(:), intent(in) |
operations, |
|
|
logical, intent(in) |
log, |
|
|
character(len=*), intent(in), optional |
output_filename |
|
) |
| |
|
private |
- Parameters
-
| 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.
◆ boundary_operation_init_from_controllers()
| subroutine boundary_operation::boundary_operation_init_from_controllers |
( |
class(boundary_operation_t), intent(inout) |
this, |
|
|
character(len=*), intent(in) |
name, |
|
|
class(case_t), intent(inout), target |
case, |
|
|
integer, intent(in) |
order, |
|
|
type(time_based_controller_t), intent(in) |
preprocess_controller, |
|
|
type(time_based_controller_t), intent(in) |
compute_controller, |
|
|
type(time_based_controller_t), intent(in) |
output_controller, |
|
|
integer, dimension(:), intent(in) |
zone_indices, |
|
|
character(len=*), intent(in) |
field_name, |
|
|
character(len=*), dimension(:), intent(in) |
operations, |
|
|
logical, intent(in), optional |
log, |
|
|
character(len=*), intent(in), optional |
output_filename |
|
) |
| |
|
private |
- Parameters
-
| 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.
◆ boundary_operation_init_from_controllers_properties()
| subroutine boundary_operation::boundary_operation_init_from_controllers_properties |
( |
class(boundary_operation_t), intent(inout) |
this, |
|
|
character(len=*), intent(in) |
name, |
|
|
class(case_t), intent(inout), target |
case, |
|
|
integer, intent(in) |
order, |
|
|
character(len=*), intent(in) |
preprocess_control, |
|
|
real(kind=rp), intent(in) |
preprocess_value, |
|
|
character(len=*), intent(in) |
compute_control, |
|
|
real(kind=rp), intent(in) |
compute_value, |
|
|
character(len=*), intent(in) |
output_control, |
|
|
real(kind=rp), intent(in) |
output_value, |
|
|
integer, dimension(:), intent(in) |
zone_indices, |
|
|
character(len=*), intent(in) |
field_name, |
|
|
character(len=*), dimension(:), intent(in) |
operations, |
|
|
logical, intent(in), optional |
log, |
|
|
character(len=*), intent(in), optional |
output_filename |
|
) |
| |
|
private |
- Parameters
-
| 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.
◆ boundary_operation_init_from_json()
- Parameters
-
| json | JSON object describing the simcomp. |
| case | Simulation case. |
Definition at line 125 of file boundary_operation.f90.
◆ left_pad()