ThermalConductivityReceiver2D Class

class plask.flow.ThermalConductivityReceiver2D

Receiver of the thermal conductivity in Cartesian2D geometry (W/(m×K)).

You may connect a provider to this receiver using either the connect method or an assignment operator. Then, you can read the provided value by calling this receiver with arguments identical as the ones of the corresponding provider ThermalConductivityProvider2D.

Example

Connect the receiver to a provider from some other solver:

>>> solver.inThermalConductivity = other_solver.outThermalConductivity

See also

Provider of thermal conductivity: plask.flow.ThermalConductivityProvider2D

Data filter for thermal conductivity: plask.flow.ThermalConductivityFilter2D

Methods

__call__(mesh[, interpolation])

Get value from the connected provider

add_watch(callable)

Connect callable to watch receiver changes.

attach(source)

Attach some provider or constant value to the receiver.

reset()

Disconnect any provider of value from the receiver.

Descriptions

Method Details

ThermalConductivityReceiver2D.__call__(mesh, interpolation='DEFAULT')

Get value from the connected provider

ThermalConductivityReceiver2D.add_watch(callable)

Connect callable to watch receiver changes.

The callable will be called each time the value received by this receiver changes.

The callable should accept two arguments: the first one will be the receiver and the second one gives information what is changed.

ThermalConductivityReceiver2D.attach(source)

Attach some provider or constant value to the receiver.

Parameters:

source – source provider or value.

Example

>>> solver.inThermalConductivity.attach(300.)
>>> solver.inThermalConductivity(any_mesh)[0]
300.
>>> solver.inThermalConductivity(any_mesh)[-1]
300.
>>> solver.inThermalConductivity.attach(other_solver.outThermalConductivity)

Note

You may achieve the same effect by using the asignmnent operator if you put an existing provider at the right side of this operator:

>>> solver.inThermalConductivity = other_solver.outThermalConductivity
ThermalConductivityReceiver2D.reset()

Disconnect any provider of value from the receiver.