modelbound_data_extractor_class Module

Houses ModelboundDataExtractor class, a Manipulator that extract data contained in a specific model's modelbound data object



Interfaces

interface

  • private pure module subroutine initExtractor(this, resultVarIndex, modelIndex, modelboundDataName)

    ModelboundDataExtractor initialization routine

    Arguments

    Type IntentOptional Attributes Name
    class(ModelboundDataExtractor), intent(inout) :: this
    integer(kind=ik), intent(in) :: resultVarIndex

    Index of variable to write the result in

    integer(kind=ik), intent(in) :: modelIndex

    Index of model housing required modelbound data

    character(len=*), intent(in) :: modelboundDataName

    Name of data to extract

interface

  • private module subroutine extract(this, manipulatedModeller, outputVars, inputVars)

    Implementation of abstract manipulate routine for the evaluator

    Arguments

    Type IntentOptional Attributes Name
    class(ModelboundDataExtractor), intent(inout) :: this
    class(ModellerSurrogate), intent(inout) :: manipulatedModeller

    Modeller to be used in callbacks during manipulation

    class(VariableContainer), intent(inout) :: outputVars

    VariableContainer object to store the manipulation output

    class(VariableContainer), intent(in) :: inputVars

    VariableContainer object housing input data for the manipulation routine


Derived Types

type, public, extends(Manipulator) ::  ModelboundDataExtractor

Manipulator that extracts a (rank 1!) modelbound data variable from a model into a variable

Components

Type Visibility Attributes Name Initial
logical, public :: userDefined = .false.

True only if user explicitly sets it to true

integer(kind=ik), private :: resultVarIndex

Variable index where the data should be copied into (must be compatible with the data)

integer(kind=ik), private :: modelIndex

Index of the model whose modelbound data should be copied

character(len=:), private, allocatable :: modelboundDataName

Name of the (rank 1) data requested from modelbound data

Type-Bound Procedures

procedure, public :: isDefined => isDefinedObject
procedure, public :: makeDefined => makeDefinedObject
procedure, public :: makeUndefined => makeUndefinedObject
procedure, public :: init => initExtractor
procedure, public :: affect => extract