Quality Factors

Resonant Circuits and Q-factor

Resonant circuits are used extensively in oscillators, tuned amplifiers, filters, etc. At a particular frequency, a resonant frequency \(f_r\) (or \(\omega_r\)), resonators presents a maximum (or a minimum) impedance (ex: open or short circuit)[1]. The quality factor \(Q\), or Q-factor, is a unitless figure of merit of the losses of a resonant passive circuit, defined as [2,3]:

\[Q = 2 \pi \left. \frac{\textrm{Average Energy Stored}}{\textrm{Energy Loss per Second}} \right|_{\omega=\omega_r} = \omega_r \left. \frac{\textrm{Average Energy Stored}}{\textrm{Average Power Loss}} \right|_{\omega=\omega_r}\]

From this definition, lower loss implies a higher \(Q\). Resonators having higher Q-factors resonate with greater amplitudes (at the resonant frequency) but have a smaller range of frequencies \(BW\) around that frequency for which they resonate.

Loaded of Unloaded Q-factors

Actually, there are three Q factors than can be defined depending upon which loss is being considered [2]:

  • Unloaded Q:

    \[Q_0 = \omega_r \left. \frac{\textrm{Energy Stored in the Resonant Circuit}}{\textrm{Power Loss in the Resonant Circuit}} \right|_{\omega=\omega_r}\]
  • External Q:

    \[Q_e = \omega_r \left. \frac{\textrm{Energy Stored in the Resonant Circuit}}{\textrm{Power Loss in the External Circuit}} \right|_{\omega=\omega_r}\]
  • Loaded Q:

    \[Q_L = \omega_r \left. \frac{\textrm{Energy Stored in the Resonant Circuit}}{\textrm{Total Power Loss}} \right|_{\omega=\omega_r}\]

The loaded Q-factor \(Q_L\), describes energy dissipation within the entire resonant system comprising of the resonator itself and the instrument used for observing resonances [3]. The term loading refers to the effect that the external circuit has on measured quantities. Any loss mechanisms due to the external circuitry will have the effect of lowering the \(Q\).

The unloaded Q-factor \(Q_0\) is a characteristic of the resonator itself, in the absence of any loading effects caused by external circuitry (uncoupled). For most applications, the quantity that is desired is the unloaded Q-factor \(Q_0\) which is determined by energy dissipation associated with the resonator only and therefore gives the best description of the resonant mode. Direct measurement of the unloaded Q of a resonator is generally not possible because of the loading effect of the measurement system. However, it is possible to estimate \(Q_0\) from measurements of the frequency response of the loaded resonator.

The energy dissipation in the external circuit is characterized by the external Q-factor \(Q_e\) and these three Q-factors are related by the relationship (deduced from the three expressions above):

\[\frac{1}{Q_L} = \frac{1}{Q_e} + \frac{1}{Q_0}\]

If one defines the coupling factor \(\beta=Q_0/Q_e\) then:

\[Q_0 = (1 + \beta) Q_L\]

Three cases can be distinguished:

  1. \(\beta<1\): The resonator is said to be undercoupled to the feeding circuitry

  2. \(\beta=1\): The resonator is said to be critically coupled

  3. \(\beta>1\): The resonator is said to be overcoupled

While the measurements of the loaded Quality factor \(Q_L\) is straightforward, obtaining uncertainty below 1% (which is considered to be low for Q-factor measurement) requires attention to several aspects of the experimental procedure. In addition, finding the unloaded \(Q_0\) from measured S-parameters consists in first finding the coupling factor \(\beta\), then measure \(Q_L\) from the 3dB bandwidth and using the relationships above.

Fortunately, scikit-rf implements automatic methods for determining loaded and unloaded Q-factors from frequency-domain S-parameters. The implemented methods are described in detail in [4], and can be applied to measurements of transmission or reflection.

Example with a Parallel RLC Circuit

To illustrate the usage of the Qfactor class of scikit-rf, a parallel RLC circuit as illustrated above is used as an canonical example for which analytical formulas are available for benchmarking.

f78122d9d54840cfbdf06ca2f1eb2253

[1]:
import numpy as np
import skrf as rf
import matplotlib.pyplot as plt
rf.stylely()
[2]:
C = 1e-6  # F
L = 1e-9  # H
R = 30  # Ohm
Z0 = 50  # Ohm

freq = rf.Frequency(5, 5.2, npoints=501, unit='MHz')
media = rf.DefinedGammaZ0(frequency=freq, z0=Z0)  # ideal line (no loss)
random_d = np.random.uniform(-np.pi, np.pi)  # a random length for the sake of the example

resonator = media.line(d=random_d, unit='rad') \
                **media.shunt_inductor(L) ** media.shunt_capacitor(C) \
                ** media.shunt(media.resistor(R)**media.short()) ** media.open()

resonator.plot_s_db()
../_images/tutorials_Q-Factor_3_0.png

Analytical formulas for this case are available and given by [2,3]:

\[f_{\mathrm{res}} = \frac{1}{2\pi \sqrt{L C}}\]
\[Q = \omega_r R C = \frac{R C}{\sqrt{L C}}\]
[3]:
def f_res_RLC(L, C):
    return 1/(2*np.pi*np.sqrt(L*C))

def Q_RLC(R, L, C):
    return R * C / np.sqrt(L*C)

The unloaded Q-factor \(Q_0\) is a characteristic of the resonator itself, in the absence of any loading effects caused by the external circuitry. In practice, of course, the resonator is connected and coupled to this circuitry which have the effect to lower the Q-factor of the loaded circuit \(Q_L\).

Hence, when the resonator is connected to the transmission line, it is loaded with the port impedance \(Z_0\) (assuming no loss in the transmission line), which is connected in parallel to the intrinsic resonator resistor. The equivalent resonator load is therefore \(R \parallel Z_0 = (R Z_0) / (R+Z_0)\):

[4]:
print(f'Theoretical Resonant Frequency: {f_res_RLC(L, C)/1e6} MHz')
print(f'Theoretical Loaded Q: Q_L = {Q_RLC((R*Z0)/(R+Z0), L, C)}')  # Req = R//Z0
print(f'Theoretical Unloaded Q: Q_0 = {Q_RLC(R, L, C)}')
Theoretical Resonant Frequency: 5.032921210448704 MHz
Theoretical Loaded Q: Q_L = 592.9270612815711
Theoretical Unloaded Q: Q_0 = 948.6832980505137

First, let’s create a Qfactor object, passing the resonator Network and the type of resonator we are dealing with:

[5]:
Q = rf.Qfactor(resonator, res_type='reflection')

Note that in case of multiple resonances (like in this example), it is recommanded to also pass the estimated resonance frequency and eventually the estimated (order of magnitude) Q-factor.

Then, we use the fit method to fit the loaded Q-factor \(Q_L\) and resonant frequency. The returned results will be usefull to deduce the unloaded Q-factor.

[6]:
res = Q.fit()
print(f'Fitted Resonant Frequency: f_L = {Q.f_L/1e6} MHz')
print(f'Fitted Loaded Q-factor: Q_L = {Q.Q_L}')
Fitted Resonant Frequency: f_L = 5.032919422706885 MHz
Fitted Loaded Q-factor: Q_L = 592.9272283768049

Note that these results are also shown if you print the Qfactor object:

[7]:
Q
[7]:
Q-factor of Network None. (fitted: f_L=5.033MHz, Q_L=592.927)

Finally, the unloaded Q-factor is deduced from the fitting properties:

[8]:
Q0 = Q.Q_unloaded(res)
print(f'Fitted Unloaded Q-factor: Q_0 = {Q0}')
Fitted Unloaded Q-factor: Q_0 = [948.68361276]

Note that passing the result is optional. Calling the .fit() method will store internally the optimized results and use it if a specific optimized result is not passed:

[9]:
Q0 = Q.Q_unloaded()  # will use the latest optimized results performed with .fit()
print(f'Fitted Unloaded Q-factor: Q_0 = {Q0}')
Fitted Unloaded Q-factor: Q_0 = [948.68361276]

Note that the analytical results and the fitted ones match well, the relative error is small:

[10]:
print(f'Relative Error on Q_0:', (Q_RLC(R, L, C) - Q0)/Q_RLC(R, L, C))
Relative Error on Q_0: [-3.31732563e-07]

It is also possible to generate a Network from the fitted results. For example, we can compare the fitted resonator model for more frequency points to the initial RLC resonator:

[11]:
new_freq = rf.Frequency(5, 5.2, npoints=5001, unit='MHz')
fitted_network = Q.fitted_network(res, frequency=new_freq)
[12]:
resonator.plot_s_mag(label='Parallel RLC ', lw=2)
fitted_network.plot_s_mag(label='Fitted Model', lw=2, ls='--')
../_images/tutorials_Q-Factor_22_0.png

Q-Circle

Close to a resonance, a resonator can be represented by an equivalent circuit model [1,4].

The Scattering-parameters (reflection or transmission) of RF circuits including resonator(s) have the form of circles in the complex plane \((\Re(s), \Im(s))\). S-parameters can be expressed as a function of the frequency \(f\), the loaded quality factor \(Q_L\) [1,4]:

\[S(f) = S_D + d \frac{e^{-2 j \delta}}{1 + j Q_L \mathcal{F}}\]

where : - \(S_D\) is the detuned S-parameter measured at frequencies far above or below the resonance - \(Q_L\) is the loaded Q-factor - \(f_L\) is the loaded resonant frequency - \(f_0\) is the unloaded resonant frequency - \(d\) is the diameter of the Q-circle - \(\delta\) is a real valued constant that defines the orientation of the Q-circle - \(\mathcal{F}\) is the fractional offset frequency given by:

\[\mathcal{F} = \frac{f}{f_L} - \frac{f_L}{f}\]

The fractional frequency \(\mathcal{F}\) is a convenient way to express the frequency when dealing with resonant circuits: \(\mathcal{F}=0\) at the resonant frequency and when \(f<f_L\), \(\mathcal{F}\) is negative, while it is positive when \(f>f_L\). If \(\Delta f = f - f_L\) is the frequency deviation from the resonance, then close to the resonance:

\[\mathcal{F} \approx 2 \frac{\Delta f}{f_L}\]

For example, if the source frequency is 10% below the resonant frequency (\(0.9 f/f_L\)), then \(\mathcal{F}\approx -0.2\).

The parameters (diameters and tuned and off-tuned S-parameters) of the Q-circle can eventually be obtained from:

[13]:
diam, S_V, S_T = Q.Q_circle()

Use a polar plane to check the results:

[14]:
fig, ax = plt.subplots(subplot_kw={'projection': 'polar'})
resonator.plot_s_polar(ax=ax, label="RLC Resonator", ls='', marker='x', ms=5)
fitted_network.plot_s_polar(ax=ax, label="Fitted Model", lw=2)
ax.plot(np.angle(S_V), np.abs(S_V), 'ko')
ax.plot(np.angle(S_T), np.abs(S_T), 'ko')
ax.text(np.angle(S_T), 0.8*np.abs(S_T), '$S_T$')
ax.text(np.angle(S_V), 1.1*np.abs(S_V), '$S_V$')
[14]:
Text(2.682804630658263, 1.1000000000000003, '$S_V$')
../_images/tutorials_Q-Factor_27_1.png

Bandwidth

Another definition of the Q-factor is the frequency-to-bandwidth ratio of a transmission resonator [6]:

\[Q_L = \frac{\omega_r}{\Delta \omega} = \frac{f_r}{\Delta f}\]

where \(f_r\) is the resonant frequency, \(\Delta f=BW\) is the resonance width or fractional bandwidth BW. Note that this definition is only an approximation, which can be not accurate when there is significant leakage (see [4] for more information). The definition of the bandwidth also depends on the resonator type:

  • transmission: bandwidth, also known as full width at half maximum (FWHM), is the bandwidth over which the dissipated power is half the maximum value at the resonant frequency (3 dB below the max value).

  • reflection: while it is possible to define the bandwidth as the 3-dB points below the max reflection coefficient [6], a more proper definition of the bandwidth consists in measuring the difference between frequencies \(f_1\) and \(f_2\), which belong to the two points inclined by 45 degrees on each side of the centerline from \(S_T\) to the origin (see [4,8] for additional details).

Using the previous relation, the bandwith BW can also be obtained from the Qfactor class via the .BW parameter.

[15]:
BW = Q.BW
print(f'Bandwidth: {BW} Hz')
Bandwidth: 8488.258224343963 Hz
[16]:
fig, ax = plt.subplots()
resonator.plot_s_db(label='Parallel RLC ', lw=2, ax=ax)
ax.axvspan(xmin=Q.f_L-Q.BW/2, xmax=Q.f_L+Q.BW/2, alpha=0.3, label='Bandwidth')
ax.legend()
[16]:
<matplotlib.legend.Legend at 0x7faf498da2f0>
../_images/tutorials_Q-Factor_30_1.png

References

[ ]: