EnergyLevelsReceiver3D Class

class plask.flow.EnergyLevelsReceiver3D

Receiver of the energy levels for electrons and holes in Cartesian3D geometry (eV).

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

Example

Connect the receiver to a provider from some other solver:

>>> solver.inEnergyLevels = other_solver.outEnergyLevels

See also

Provider of energy levels for electrons and holes: plask.flow.EnergyLevelsProvider3D

Data filter for energy levels for electrons and holes: plask.flow.EnergyLevelsFilter3D

Methods

__call__(...)

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

EnergyLevelsReceiver3D.__call__(mesh, interpolation='DEFAULT')
EnergyLevelsReceiver3D.__call__(n, mesh, interpolation='DEFAULT')

Get value from the connected provider

Get value from the connected provider

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

EnergyLevelsReceiver3D.attach(source)

Attach some provider or constant value to the receiver.

Parameters:

source – source provider or value.

Example

>>> solver.inEnergyLevels.attach(300.)
>>> solver.inEnergyLevels(any_mesh)[0]
300.
>>> solver.inEnergyLevels(any_mesh)[-1]
300.
>>> solver.inEnergyLevels.attach(other_solver.outEnergyLevels)

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.inEnergyLevels = other_solver.outEnergyLevels
EnergyLevelsReceiver3D.reset()

Disconnect any provider of value from the receiver.