fdtdx.LorentzPole#
- class fdtdx.LorentzPole(*, resonance_frequency=null, damping=null, delta_epsilon=null)[source]#
Bases:
PoleLorentz pole parameterised by its physical constants.
The contribution to the susceptibility is
\[\chi(\omega) = \frac{\Delta\varepsilon \cdot \omega_0^2}{\omega_0^2 - \omega^2 - i\gamma\omega}.\]Each parameter is either a scalar (isotropic) or a per-axis 3-tuple
(x, y, z)for diagonally anisotropic dispersion. An axis without a resonance is expressed by a zerodelta_epsilonentry on that axis.
Quick Reference#
Attributes
Methods
Attributes#
- LorentzPole.coupling_edot#
Coefficient
bof thedE/dtdriving term (rad/s).Raises
ValueErrorfor per-axis poles; usecoupling_edot_axes.
- LorentzPole.coupling_edot_axes#
Per-axis coefficient
bof thedE/dtdriving term (rad/s).Zero for Lorentz and Drude poles (their susceptibility numerator has no
omegaterm). A non-zero value is what distinguishes a general complex-conjugate pole-residue (CCPR) pole — it corresponds to a non-zero real part of the residue and adds theb E'term to the ADE. Defaults to all-zero so existing pole types need not override it.
- LorentzPole.coupling_sq#
Effective squared coupling frequency
K(rad^2/s^2).Raises
ValueErrorfor per-axis poles; usecoupling_sq_axes.
- LorentzPole.coupling_sq_axes#
-
LorentzPole.damping:
float|tuple[float,float,float]# Damping rate (rad/s). Must be >= 0. Scalar or per-axis 3-tuple.
-
LorentzPole.delta_epsilon:
float|tuple[float,float,float]# Oscillator strength (dimensionless); the zero-frequency contribution to the susceptibility. Scalar or per-axis 3-tuple.
- LorentzPole.gamma#
Damping rate (rad/s).
Raises
ValueErrorfor per-axis poles; usegamma_axes.
- LorentzPole.gamma_axes#
- LorentzPole.is_isotropic#
Whether all pole parameters are identical on the three axes.
- LorentzPole.omega_0#
Resonance angular frequency (rad/s). Zero for pure Drude poles.
Raises
ValueErrorfor per-axis poles; useomega_0_axes.
- LorentzPole.omega_0_axes#
-
LorentzPole.resonance_frequency:
float|tuple[float,float,float]# Resonance angular frequency (rad/s). Must be > 0. Scalar or per-axis 3-tuple.
Methods#
- LorentzPole.aset(attr_name, val, create_new_ok=False)#
Sets an attribute of this class. In contrast to the classical .at[].set(), this method updates the class attribute directly and does not only operate on jax pytree leaf nodes. Instead, replaces the full attribute with the new value.
The attribute can either be the attribute name of this class, or for nested classes it can also be the attribute name of a class, which itself is an attribute of this class. The syntax for this operation could look like this: “a->b->[0]->[‘name’]”. Here, the current class has an attribute a, which has an attribute b, which is a list, which we index at index 0, which is an element of type dictionary, which we index using the dictionary key ‘name’.
Note that dictionary keys cannot contain square brackets or single quotes (even if they are escaped).
- Parameters:
attr_name (str) – Name of attribute to set
val (Any) – Value to set the attribute to
create_new_ok (bool, optional) – If false (default), throw an error if the attribute does not exist. If true, creates a new attribute if the attribute name does not exist yet.
- Returns:
Updated instance with new attribute value
- Return type:
Self
- LorentzPole.get_class_fields()#
- Return type:
list[TreeClassField]
- LorentzPole.get_public_fields()#
- Return type:
list[TreeClassField]
If you find any errors in the documentation, please report them in the Github Issues!