Input Equation Condition#

class InputEquationCondition(input, equation)[source]#

Bases: ConditionInterface

Condition defined by input data and an equation. This condition can be used in a Physics Informed problems. Based on the type of the input, different condition implementations are available:

Initialize the object by storing the input data and equation object.

Parameters:

Note

If input consists of a list of Graph or Data, all elements must have the same structure (keys and data types)

class InputTensorEquationCondition(input, equation)[source]#

Bases: InputEquationCondition

InputEquationCondition subclass for LabelTensor input data.

Initialize the object by storing the input data and equation object.

Parameters:

Note

If input consists of a list of Graph or Data, all elements must have the same structure (keys and data types)

class InputGraphEquationCondition(input, equation)[source]#

Bases: InputEquationCondition

InputEquationCondition subclass for Graph input data.

Initialize the object by storing the input data and equation object.

Parameters:

Note

If input consists of a list of Graph or Data, all elements must have the same structure (keys and data types)