
Houses abstract object responsible for calculating and determining normalization constants
Get normalization value associated with passed name
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Normalization), | intent(in) | :: | this | |||
| character(len=*), | intent(in) | :: | name |
Get normalization value calculated as the product of normalization values with passed names raised to corresponding powers and optionally multiplied by a constant
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Normalization), | intent(in) | :: | this | |||
| type(StringArray), | intent(in), | dimension(:) | :: | names | ||
| real(kind=rk), | intent(in), | dimension(:) | :: | powers | ||
| real(kind=rk), | intent(in), | optional | :: | multConst |
Set normalization values array of normalization object
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(Normalization), | intent(inout) | :: | this | |||
| type(NamedReal), | intent(in), | dimension(:) | :: | normVals |
Abstract normalization object providing access routines
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| logical, | public | :: | userDefined | = | .false. |
True only if user explicitly sets it to true |
|
| type(NamedReal), | private, | allocatable, dimension(:) | :: | normalizationVals |
| procedure, public :: isDefined => isDefinedObject | |
| procedure, public :: makeDefined => makeDefinedObject | |
| procedure, public :: makeUndefined => makeUndefinedObject | |
| procedure, public :: getNormalizationValue | |
| procedure, public :: getCustomNormalization | |
| procedure, public :: setNormalizationVals |