plask.flow.
TemperatureReceiver2D
¶Receiver of the temperature in Cartesian2D geometry [K].
You may connect a provider to this receiver usign either the connect method
or an assignement operator. Then, you can read the provided value by calling
this receiver with arguments identical as the ones of the corresponding
provider TemperatureProvider2D
.
Example
Connect the reveiver to a provider from some other solver:
>>> solver.inTemperature = other_solver.outTemperature
See also
Provider of temperature: plask.flow.TemperatureProvider2D
Data filter for temperature: plask.flow.TemperatureFilter2D
__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. |
TemperatureReceiver2D.
__call__
(mesh, interpolation='DEFAULT')¶Get value from the connected provider
TemperatureReceiver2D.
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.
TemperatureReceiver2D.
attach
(source)¶Attach some provider or constant value to the receiver.
Parameters: | source – source provider or value. |
---|
Example
>>> solver.inTemperature.attach(300.)
>>> solver.inTemperature(any_mesh)[0]
300.
>>> solver.inTemperature(any_mesh)[-1]
300.
>>> solver.inTemperature.attach(other_solver.outTemperature)
Note
You may achieve the same effect by using the asignmnent operator if you put an exisiting provider at the right side of this operator:
>>> solver.inTemperature = other_solver.outTemperature
TemperatureReceiver2D.
reset
()¶Disconnect any provider of value from the receiver.