AcCurrentDensityReceiverCyl Class

class plask.flow.AcCurrentDensityReceiverCyl

Receiver of the AC current density amplitude in Cylindrical geometry (kA/cm²).

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 AcCurrentDensityProviderCyl.

Example

Connect the receiver to a provider from some other solver:

>>> solver.inAcCurrentDensity = other_solver.outAcCurrentDensity

See also

Provider of AC current density amplitude: plask.flow.AcCurrentDensityProviderCyl

Data filter for AC current density amplitude: plask.flow.AcCurrentDensityFilterCyl

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

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

Get value from the connected provider

AcCurrentDensityReceiverCyl.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.

AcCurrentDensityReceiverCyl.attach(source)

Attach some provider or constant value to the receiver.

Parameters:source – source provider or value.

Example

>>> solver.inAcCurrentDensity.attach(300.)
>>> solver.inAcCurrentDensity(any_mesh)[0]
300.
>>> solver.inAcCurrentDensity(any_mesh)[-1]
300.
>>> solver.inAcCurrentDensity.attach(other_solver.outAcCurrentDensity)

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.inAcCurrentDensity = other_solver.outAcCurrentDensity
AcCurrentDensityReceiverCyl.reset()

Disconnect any provider of value from the receiver.