|
Neko 1.99.2
A portable framework for high-order spectral element flow simulations
|
Implements the force_torque_t type.
Data Types | |
| type | force_torque_t |
| A simulation component that computes the force and torque on a given boundary zone. More... | |
Functions/Subroutines | |
| subroutine | force_torque_init_from_json (this, json, case) |
| Constructor from json. | |
| subroutine | force_torque_init_from_controllers (this, name, case, order, preprocess_controller, compute_controller, output_controller, fluid_name, zone_id, zone_name, center, scale, coef, long_print) |
| Constructor from components, passing controllers. | |
| subroutine | force_torque_init_from_controllers_properties (this, name, case, order, preprocess_control, preprocess_value, compute_control, compute_value, output_control, output_value, fluid_name, zone_name, zone_id, center, scale, coef, long_print) |
| Constructor from components, passing properties to the time_based_controller` components in the base type. | |
| subroutine | force_torque_init_common (this, name, fluid_name, zone_id, zone_name, center, scale, coef, long_print) |
| Common part of constructors. | |
| subroutine | force_torque_free (this) |
| Destructor. | |
| subroutine | force_torque_compute (this, time) |
| Compute the force_torque field. | |
|
private |
| time | The current time state. |
Definition at line 392 of file force_torque.f90.

|
private |
Definition at line 353 of file force_torque.f90.
|
private |
| name | The unique name of the simcomp. |
| fluid_name | The name of the fluid solver. |
| zone_id | The id of the boundary zone. |
| zone_name | The name of the boundary zone, to use in the log. |
| center | The center of the torque calculation. |
| scale | Normalization factor. |
| coef | The SEM coefficients. |
| long_print | If true, use a more precise print format. |
Definition at line 241 of file force_torque.f90.

|
private |
| name | The unique name of the simcomp. |
| case | The simulation case object. |
| order | The execution oder priority of the simcomp. |
| preprocess_controller | The controller for running preprocessing. |
| compute_controller | The controller for running compute. |
| output_controller | The controller for producing output. |
| fluid_name | The name of the fluid solver. |
| zone_id | The id of the boundary zone. |
| zone_name | The name of the boundary zone, to use in the log. |
| center | The center of the torque calculation. |
| scale | Normalization factor. |
| coef | The SEM coefficients. |
| long_print | If true, use a more precise print format. |
Definition at line 159 of file force_torque.f90.
|
private |
| name | The unique name of the simcomp. |
| case | The simulation case object. |
| order | The execution oder priority of the simcomp. |
| preprocess_controller | Control mode for preprocessing. |
| preprocess_value | Value parameter for preprocessing. |
| compute_controller | Control mode for computing. |
| compute_value | Value parameter for computing. |
| output_controller | Control mode for output. |
| output_value | Value parameter for output. |
| fluid_name | The name of the fluid solver. |
| zone_id | The id of the boundary zone. |
| zone_name | The name of the boundary zone, to use in the log. |
| center | The center of the torque calculation. |
| scale | Normalization factor. |
| coef | The SEM coefficients. |
| long_print | If true, use a more precise print format. |
Definition at line 202 of file force_torque.f90.
| subroutine force_torque::force_torque_init_from_json | ( | class(force_torque_t), intent(inout), target | this, |
| type(json_file), intent(inout) | json, | ||
| class(case_t), intent(inout), target | case | ||
| ) |
Definition at line 121 of file force_torque.f90.