tidy3d.SteadyEnergyBandData#
- class SteadyEnergyBandData[source]#
Bases:
HeatChargeMonitorDataStores energy bands in charge simulations.
- Parameters:
attrs (dict = {}) β Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields,
attrsare mutable. For example, the following is allowed for setting anattrobj.attrs['foo'] = bar. Also note that Tidy3D will raise aTypeErrorifattrscontain objects that can not be serialized. One can check ifattrsare serializable by callingobj.json().monitor (SteadyEnergyBandMonitor) β Energy bands data associated with a Charge simulation.
symmetry (Tuple[Literal[0, 1], Literal[0, 1], Literal[0, 1]] = (0, 0, 0)) β Symmetry of the original simulation in x, y, and z.
symmetry_center (Tuple[float, float, float] = (0, 0, 0)) β [units = um]. Symmetry center of the original simulation in x, y, and z.
Ec (Union[TriangularGridDataset, TetrahedralGridDataset] = None) β Contains the computed energy of the bottom of the conduction band \(E_c\).
Ev (Union[TriangularGridDataset, TetrahedralGridDataset] = None) β Contains the computed energy of the top of the valence band \(E_v\).
Ei (Union[TriangularGridDataset, TetrahedralGridDataset] = None) β Contains the computed intrinsic Fermi level for the material \(E_i\).
Efn (Union[TriangularGridDataset, TetrahedralGridDataset] = None) β Contains the computed quasi-Fermi level for electrons \(E_{fn}\).
Efp (Union[TriangularGridDataset, TetrahedralGridDataset] = None) β Contains the computed quasi-Fermi level for holes \(E_{fp}\).
Notes
This data contains the energy bands data [eV]:
Symbol
Parameter Name
Description
\(E_c\)
EcEnergy of the bottom of the conduction band
\(E_v\)
EvEnergy of the top of the valence band
\(E_i\)
EiIntrinsic Fermi level
\(E_{fn}\)
EfnQuasi-Fermi level for electrons
\(E_{fp}\)
EfpQuasi-Fermi level for holes
as defined in the
monitor.Attributes
Maps the field components to their associated data.
Methods
check_correct_data_type(values)Issue error if incorrect data type is used
plot([ax])Plot the 1D cross-section of the energy bandgap diagram.
Inherited Common Usage
- monitor#
- Ec#
- Ev#
- Ei#
- Efn#
- Efp#
- property field_components#
Maps the field components to their associated data.
- plot(ax=None, **sel_kwargs)[source]#
Plot the 1D cross-section of the energy bandgap diagram.
- Parameters:
ax (matplotlib.axes._subplots.Axes = None) β matplotlib axes to plot on, if not specified, one is created.
sel_kwargs (keyword arguments used to perform
.sel()selection in the monitor data.) β These kwargs can select over the spatial dimensions (x,y, orz) and the bias voltage (voltage). For the plotting to work appropriately, the resulting data after selection must contain only one coordinate with len > 1. Furthermore, these should be spatial coordinates (x,y, orz).
- Returns:
The supplied or created matplotlib axes.
- Return type:
matplotlib.axes._subplots.Axes
- __hash__()#
Hash method.