|
Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
|
The abstract constraint type. More...


Public Member Functions | |
| procedure, pass(this) | init_base (this, name, design_size, mask_name, start_time, end_time) |
| Initializer for the base class. | |
| procedure, pass(this) | free_base (this) |
| Destructor of the base class. | |
| generic | init (this, json, design) |
| Constructor interface. | |
| generic | init (this, json, design, simulation) |
| Constructor interface. | |
| procedure, pass(this) | init_json (this, json, design) |
| Constructor based on json input. | |
| procedure, pass(this) | init_json_sim (this, json, design, simulation) |
| Constructor based on json input and simulation. | |
| procedure(functional_free), deferred, pass | free (this) |
| Destructor. | |
| procedure(functional_update_value), deferred, pass | update_value (this, design) |
| Update the value of the function. | |
| procedure(functional_update_sensitivity), deferred, pass | update_sensitivity (this, design) |
| Update the sensitivity of the function. | |
| procedure, pass(this) | get_value (this) |
| Get the value of the function. | |
| procedure, pass(this) | get_sensitivity (this, sensitivity) |
| Get the sensitivity of the function. | |
| procedure, pass(this) | get_log_size (this) |
| Get number of log entries for this functional. | |
| procedure, pass(this) | get_log_headers (this, headers) |
| Get header labels for this functional's log entries. | |
| procedure, pass(this) | get_log_values (this, values) |
| Get values for this functional's log entries. | |
| procedure, pass(this) | reset_value (this) |
| Set the value to zero. | |
| procedure, pass(this) | reset_sensitivity (this) |
| Set the sensitivity to zero. | |
| procedure, pass(this) | accumulate_value (this, design, time) |
| Accumulate the value. | |
| procedure, pass(this) | accumulate_sensitivity (this, design, time) |
| Accumulate the sensitivity. | |
Public Attributes | |
| character(len=25) | name = "" |
| Name of object in the logfile. | |
| real(kind=rp) | value = 0.0_dp |
| Value of the base_functional. | |
| type(vector_t) | sensitivity |
| Sensitivity field. | |
| logical | has_mask = .false. |
| containing a mask | |
| class(point_zone_t), pointer | mask => null() |
| A mask for where the objective function is evaluated. | |
| real(kind=dp) | start_time = 0.0_dp |
| Time window start for accumulation. | |
| real(kind=dp) | end_time = huge(0.0_dp) |
| Time window end for accumulation. | |
| real(kind=xp) | value_weight = 0.0_xp |
Length of time actually sampled by accumulate_value, used to normalise the running time average. | |
| real(kind=xp) | sensitivity_weight = 0.0_xp |
Length of time actually sampled by accumulate_sensitivity, used to normalise the running time average. | |
This is the base class for constraints, which is a type of base functional.
Definition at line 51 of file constraint.f90.
|
inherited |
Normalised exactly as accumulate_value, so that the sensitivity stays consistent with the value it differentiates.
| this | The functional. |
| design | The design. |
| time | The current time state. |
Definition at line 128 of file base_functional.f90.
|
inherited |
Updates the value in place as the running mean of the function.
The result is the running mean of the function over the part of the functional's own time window that has been simulated so far, normalised by the length of time actually sampled. It is therefore invariant to the length of the run: extending end_time of the simulation past the functional's window leaves the value unchanged, and a windowed functional reports the mean over its window rather than over the run.
| this | The functional. |
| design | The design. |
| time | The current time state. |
Definition at line 126 of file base_functional.f90.
|
pure virtualinherited |
Definition at line 103 of file base_functional.f90.
| procedure, pass(this) constraint::constraint_t::free_base | ( | class(constraint_t), intent(inout), target | this | ) |
Definition at line 57 of file constraint.f90.
|
inherited |
| [in] | this | The functional object. |
| [out] | headers | Header labels for each log entry. |
Definition at line 118 of file base_functional.f90.
|
inherited |
| [in] | this | The functional object. |
Definition at line 116 of file base_functional.f90.
|
inherited |
| [in] | this | The functional object. |
| [out] | values | Values corresponding to the log headers. |
Definition at line 120 of file base_functional.f90.
|
inherited |
Definition at line 114 of file base_functional.f90.
|
inherited |
Definition at line 112 of file base_functional.f90.
|
inherited |
Definition at line 96 of file base_functional.f90.
|
inherited |
Definition at line 96 of file base_functional.f90.
| procedure, pass(this) constraint::constraint_t::init_base | ( | class(constraint_t), intent(inout) | this, |
| character(len=*), intent(in) | name, | ||
| integer, intent(in) | design_size, | ||
| character(len=*), intent(in), optional | mask_name, | ||
| real(kind=rp), intent(in), optional | start_time, | ||
| real(kind=rp), intent(in), optional | end_time | ||
| ) |
| this | The constraint object. |
| name | The name of the constraint. |
| design_size | The number of design variables. |
| mask_name | The name design the mask. [optional] |
| start_time | start of the integration window. [optional] |
| end_time | end of the integration window. [optional] |
Definition at line 55 of file constraint.f90.
|
inherited |
Definition at line 99 of file base_functional.f90.
|
inherited |
Definition at line 101 of file base_functional.f90.
|
inherited |
Definition at line 124 of file base_functional.f90.
|
inherited |
Definition at line 122 of file base_functional.f90.
|
pure virtualinherited |
Definition at line 108 of file base_functional.f90.
|
pure virtualinherited |
Definition at line 106 of file base_functional.f90.
Definition at line 82 of file base_functional.f90.
|
inherited |
Definition at line 71 of file base_functional.f90.
Definition at line 73 of file base_functional.f90.
Definition at line 64 of file base_functional.f90.
|
inherited |
Definition at line 69 of file base_functional.f90.
Definition at line 88 of file base_functional.f90.
Definition at line 80 of file base_functional.f90.
Definition at line 67 of file base_functional.f90.
Definition at line 85 of file base_functional.f90.