PHYS 3330

Lab 7 - Transistors

Contents


1 Goals

Transistors are 3 terminal devices that control the flow of current as a function of small electrical signals (voltage or current). The vacuum tube predecessor for transistors were called triodes. Transistors are incredibly useful devices that are involved in almost every electronic technology made today. For example, the op-amps you have been using the past few weeks are made of several transistors, and whatever device you’re using to read this has billions of transistors in it.

There are two general categories of transistors: bipolar and field-effect. Bipolar transistors control the flow of current as a function of small currents, and field-effect transistors control the flow of current as a function of applied voltage. In this lab, you will learn how to model, analyze, and simulate simple circuits containing both kinds of transistors.

The physics of transistors is very interesting, and we could easily spend an entire semester learning about them. In this class, we will focus on how they are used at a basic level.

2 SPICE Activities

2.1 Intro to Bipolar Junction Transistors (BJT)

The kind of bipolar transistor we will use this week and next are bipolar junction transistors (BJT). BJTs have two PN-junctions; this can be done by sandwiching a p-type region with two n-type regions (NPN) or by sandwiching a n-type region with two p-type regions (PNP).

Figure 1: There are two types of BJTs: NPNs and PNPs. Note these diagrams do not represent the physical shape of the BJTs

The symbols for NPNs and PNPs are shown above. The BJT is similar to two diodes pointing in opposite directions; however, the doping of the emitter and the collector are not symmetrical. This video does a nice job of describing this.

The arrow in the diagram (as seen in Figure 1) for each the NPN and the PNP describes the direction current will flow and which junction you should think of as “diode-like.” Notice that the arrow is between the emitter and the base for both kinds.

We will consider the NPN in the following discussion:

The “control current” for a BJT is the current that goes into the base. The base current \(I_B\) will cause a much larger current to flow through into the collector \(I_C\). This is typically represented by a current gain \(h_{FE}\) (sometimes written \(\beta\)):

\[I_C = h_{FE} I_B\]

With current flowing into the base and collector, all of this current will have to flow out of the emitter, such that

\[I_E = I_C + I_B = \bigg(\frac{1}{h_{FE}}+1\bigg)I_C\]

In many use cases, the current gain is quite large, such that it is safe to assume

\[I_E\approx I_C\]

There are a lot of great resources for learning more about how BJTs work. Here is a video discussing more of the physics.

2.1.1 Question

The current gain for a BJT depends on a lot of factors. Look for the datasheet for the 2N3904 BJT and find the section for current gain under “On Characteristics” in the tables. Notice that it gives current gains for different conditions.

  1. What parameters does the current gain depend on?

  2. What is the maximum possible current gain for this transistor?

  3. On the first page, there are some “Absolute Maximum Ratings.” The “Collector Current - Continuous” represents the maximum current that the transistor can have continuously running through it. What is this value for the 2N3904?

2.2 Basic BJT Operation

In order to push current into the base of an NPN, it must be biased with voltages. The two important voltages to consider are (1) the voltage measured at the base relative to the emitter (base-emitter voltage) \(V_{BE}\) and (2) the voltage measured at the collector relative to the emitter (collector-emitter voltage) voltage \(V_{CE}\).

Figure 2: The two important voltages to consider are the base-emitter voltage V_{BE} and the collector-emitter voltage V_{CE}.

Typically the \(V_{CE}\) is some power source that is powering your circuit, and \(V_{BE}\) could be some signal that controls the collector current. However, due to the diode like nature of the base-emitter junction, in order to get current to flow into the base, this junction needs to be forward biased. This means that \(I_B>0\) only if \(V_{BE} > V_{th}\) where \(V_{th}\) is a threshold voltage. For silicon BJTs, \(V_{th}\approx 0.6\text{ V}\) (just like for silicon diodes).

2.2.1 Question

Consider the following circuit

Figure 3: Simple BJT circuit (with an NPN) with resistors connected to the base and the collector (R_B and R_C respectively). A supply voltage V_\text{supply} powers the circuit (this is similar to the supply voltages we apply to op-amps) and a signal voltage V_\text{in} provides a base current I_B to control the collector voltage I_C.

When \(V_\text{in}=0\text{ V}\), clearly, there won’t be a voltage across \(R_B\) and \(I_B\) will be zero. However, if \(V_\text{in} > V_{th}\), it should be expected that current flows, so \(V_{BE}=V_{th}\).

For the following, assume \(V_\text{in} > V_{th}\):

  1. What is the voltage at the base relative to ground?

  2. What is the voltage across the resistor \(R_B\)? Consider the voltage at one side of the resistor \((V_\text{in})\) and the other side of the resistor (the voltage at the base).

  3. Use Ohm’s law to determine the current through \(R_B\). This will be the current going into the base.

  4. If the current gain is \(h_{FE}\), write \(I_C\) with respect to \(V_\text{in}\), \(V_{th}\), \(R_B\), and \(h_{FE}\)?

  5. Since \(I_C\) flows through \(R_C\), what will be the voltage drop across \(R_C\)? Considering this drop in voltage, what will the voltage be at the collector relative to ground?

  6. Write \(V_{CE}\) as a function of \(R_C\), \(R_B\), \(V_\text{in}\), \(V_{th}\), and \(V_\text{supply}\).

2.2.2 Question

Make the circuit above in LTspice with \(V_\text{supply}=9\text{ V}\), \(R_B=1\text{ k}\Omega\), and \(R_C=8\ \Omega\). We can consider this circuit being used to control the current through an \(8\ \Omega\) load as a function of \(V_\text{in}\). To create a BJT, in the components menu, search “NPN” (or “PNP” if that’s the kind of BJT you want).

We will do a new kind of simulation: a “DC sweep”. In the Configure Analysis menu, select the “DC sweep” tab and under “1st Source” enter:

  • “Name of 1st source:” The name of your \(V_\text{in}\) voltage; if you haven’t explicitly named it, it will likely be V1 or V2 (depending on what order you placed the two voltages).

  • “Type of sweep:” Linear.

  • “Start Value:” 0

  • “Stop Value:” 5

  • “Increment:” 0.1

This will configure a voltage sweep from \(0\text{ V}\) to \(5\text{ V}\) for the input voltage. Run the simulation.

  1. Click to measure the \(V_\text{in}\) voltage. You should see a y=x plot from \(0\text{ V}\) to \(5\text{ V}\). The \(x\)-axis of a DC sweep will be the sweep of voltages you configured. Since you are measuring this voltage, you should expect to see this relationship.

  2. Now measure the voltage at the base. Approximately what is the threshold voltage of this transistor?

  3. Measure the base current. You can do this by measuring the current through \(R_B\) or by clicking on the base of the transistor. If the current measurement is wanting ot measure the current in the wrong direction (such that it’s saying the current is negative), you can use the “move” tool to select the resistor, and rotate it with Ctrl+R (twice to rotate 180 degrees) and the current will now read in the direction you want (you’ll have to re-run the simulation after the rotation). Use this measurement to determine the minimum \(V_\text{in}\) needed to start to drive any current.

  4. Come up with a method to determine the current gain of this transistor. You can do this in any way you wish, and may configure a new simulation to do so. Please record your methodology and results.

2.2.3 Question

In the same simulation, remove the \(8\ \Omega\) resistor so that the \(9\text{ V}\) is directly applied to the collector. Fix the input voltage to \(1\text{ V}\) and change the DC sweep to sweep the supply voltage \(V_\text{supply}\) from \(0\text{ V}\) to \(9\text{ V}\) in \(0.005\text{ V}\) increments.

  1. Run the simulation and measure the collector current (the current that would have gone through the \(8\ \Omega\) load) by clicking on the corner of the collector.

  2. Right click the graph “File > Export Data as text” and save the data in a data directory where you have your Jupyter Notebook.

  3. Repeat with:

    • \(V_\text{ in} = 2\text{ V}\)

    • \(V_\text{ in} = 3\text{ V}\)

    • \(V_\text{ in} = 4\text{ V}\)

    • \(V_\text{ in} = 5\text{ V}\)

  4. You can load the data into python with the following code (assuming your files are in a directory called “simulated_data” and the file names are such. You can name your data the same as below or modify the code to accomadate your naming scheme)

import numpy as np
from pathlib import Path

data_dir = Path("simulated_data")

data_1V = np.loadtxt(data_dir / "ICvsVCE-data-1V.txt", skiprows=1)

data_2V = np.loadtxt(data_dir / "ICvsVCE-data-2V.txt", skiprows=1)

data_3V = np.loadtxt(data_dir / "ICvsVCE-data-3V.txt", skiprows=1)

data_4V = np.loadtxt(data_dir / "ICvsVCE-data-4V.txt", skiprows=1)

data_5V = np.loadtxt(data_dir / "ICvsVCE-data-5V.txt", skiprows=1)

The data_xV values will be numpy arrays with as many rows as data points in your data and 2 columns (the input voltage, and the corresponding collector currents). You can “slice” the collector voltages for each array with data_xV[:, 0] and you can “slice” the collector currents with data_xV[:, 1]. Plot all 5 of these on the same \(I_C\) vs \(V_{CE}\) plot with a legend labeling the \(V_\text{in}\) of each curve.

The plot you just created is the classic way people represent the \(IV\)-characteristics of a BJT.

2.2.4 Question

Now re-consider the \(8\ \Omega\) load (\(R_C\) in the circuit). When a collector current flows through the resistor, voltage will drop across it and \(V_{CE}\) will then be less than the supply voltage \(V_\text{supply}\). The voltage drop across \(R_C\) is

\[\Delta V = V_\text{supply}-V_{CE}= I_C R_C\]

This can be rearranged to be a function \(I_C(V_{CE})\) that we can plot on your graph from the previous question.

  1. Write the function \(I_C(V_{CE})\) and make a Python function that calculates \(I_C\) using \(V_{CE}\), \(R_C\), and \(V_\text{supply}\) as inputs.

  2. Use this Python function to plot this \(I_C(V_{CE})\) on the same graph you made above using \(R_C=8\ \Omega\) and \(V_\text{supply}=5\text{ V}\). This line is referred to as a load line and represents a constraint on the \(IV\)-characteristics.

  3. One way to predict the behavior of a BJT in this configuration is to pick the correct curve on the plot corresponding to the input voltage, then find where it intersects the load line. This intersection will represent the collector current and collector-emitter voltage for this particular choice of \(V_\text{supply}\) and \(R_C\). Use your plot to record \(I_C\) for each choice of \(V_\text{in}\).

  4. Compare the \(I_C\) vs \(V_\text{in}\) from the graph to the equations you derived in Question 2.2.1 (you should use these equations to calculate \(I_C\) for each \(V_\text{in}\)).

2.3 BJT Switch

A common application for a transistor is as a voltage controlled switch. Consider the circuit in 3 where \(R_C\) is some device, like an electromagnet (that is used to move the bolt of a lock), that can be turned on with some large current. Often in electronic systems that control things (like the magnetic lock we’re considering), the control voltages/currents are small, but the things they control may need much more power to operate. We will use Arduino microcontrollers for this purpose in Lab 10.

The BJT switch is a classic way to operate the on/off state of a device that requires more power than the control voltages or currents that can be provided by a controller. Often these switches are designed in a way so that the collector current \(I_C\) saturates at the desired operating current for running the device.

2.3.1 Question

In the following steps, you will design a BJT switch to operate an electromagnet with a series resistance of \(600\ \Omega\) (this is \(R_C\)). The recommended operating voltage for the electromagnet is \(12\text{ V}\).

  1. What is the current in the electromagnet when the operating voltage is applied (consider applying this voltage directly to the electromagnet)?

  2. How much base current is needed to get this much collector current (use \(h_{FE}=100\)).

  3. As we saw in the data sheet, \(h_{FE}\) is not a constant value in real BJTs, so we don’t want to design the switch to rely on a particular value of the current gain. This can be done by selecting \(V_\text{supply}\) such that it can’t possibly supply more current than desired. When a BJT has a saturated collector current (i.e. \(V_\text{supply}\) can’t supply any more current), \(V_{CE}\approx 0\). If \(V_{CE}=0\), and one side of the electromagnet is at \(V_\text{supply}\), what is the voltage across the electromagnet? What choice of \(V_\text{supply}\) will result in \(12\text{ V}\) across the electromagnet when \(V_{CE}=0\) (i.e. when the collector current is saturated)?

  4. Assuming the worst possible current gain is \(h_{FE}=30\) for this transistor, how much base current is needed to saturate \(I_C\)?

  5. If the controller supplies a \(5\text{ V}\) signal, what choice of \(R_B\) will result in this current (don’t forget to consider \(V_{th}=0.9\text{ V}\))?

This design no longer depends on \(h_{FE}\) as long as it is above 30. When \(h_{FE}\) does exceed 30, it is impossible for the BJT to supply more collector current because it is limited by the supply voltage \(V_\text{supply}\).

2.4 PNPs

We have been looking at NPN BJTs where a positive current into the base controls a positive current into the collector (such that all the current leaves the emitter). A PNP operates almost identically to the NPN, except for the fact that a negative current (current flowing out of the base) controls a current out of the collector (such that all the current enters through the emitter).

Each kind of BJT only works with current in one direction, so to amplify both positive and negative currents, an NPN and a PNP are needed in what’s referred to as a push-pull configuration

Figure 4: A push pull amplifier uses both an NPN and a PNP to access positive and negative voltages.

The circuit above is an example of a push-pull amplifier. When \(V_\text{in}>V_{th}\), current will flow into the base of the NPN and “push” current into the load \(R_L\), and \(V_\text{out}\) will be \(V_\text{in}-V_{th}\). When \(V_\text{in}<-V_{th}\), current will flow out of the PNP and “pull” current from the load, and \(V_\text{out}\) will be \(V_\text{in}+V_{th}\). However, when \(-V_{th}<V_\text{in}<V_{th}\), no current will flow and \(V_\text{out}=0\). This means that the output voltage won’t follow exactly the input voltage, and there will be what’s called crossover distortion. In the following questions, you will explore this crossover distortion and a solution to it.

2.4.1 Question

Build the circuit shown in 4 in LTspice with

  • \(V_{S,+}=15\text{ V}\)

  • \(V_{S,-}=-15\text{ V}\)

  • \(R_L=8\ \Omega\)

Make \(V_\text{in}\) a sine wave with

  • \(f=1\text{ kHz}\)

  • an amplitude of \(5\text{ V}\)

  • an output impedance of \(50\ \Omega\) (to emulate the function generator)

Configure a transient analysis with a stop time of \(5\text{ ms}\).

  1. Measure \(V_\text{in}\) and \(V_\text{out}\) and save the plot.

  2. Describe the crossover distortion you are seeing and why it occurs.

2.5 Improving the Push-Pull Amplifier

The push-pull amplifier in Figure 4 may seem relatively useless since it just attempts to reproduce a voltage, but distorts it. However, this amplifier can be incredibly useful in overcoming current limits of op-amps. Recall, in lab 4, when you built a buffer (a.k.a. follower) and a non-inverting amplifier. You found that the buffer was useful as an output stage because it’s able to drive the voltage with a near zero output impedance; however, the LF356 is limited in that it can only output about \(27\text{ mA}\) (which isn’t a lot). The push-pull amplifier is capable of driving lots of current (remember, the output current of the op-amp will have the current gain of the active BJT applied to it). There are even current limitations here, and there are further solutions to get more and more current (with Darlington pairs: this can all be found in chapter 2 of Horowitz and Hill). However, there are also heat management considerations that need to be made with large current applications.

Figure 5: A non-inverting amplifier with an output stage.

Consider the circuit above (it may look complicated, but we’ll break it down). Starting left to right, you’ll notice an op-amp with negative feedback. The input is going into the \(V_+\) input, so this is a non-inverting amplifier. The voltage gain of the amplifier, as you know, is

\[G = 1 + \frac{R_F}{R}\]

The rest of the circuit is a push-pull amplifier that uses an op-amp with negative feedback to mitigate crossover distortion. The output of the push-pull amplifier is fed back into the \(V_-\) input of the op-amp, and the output of the op-amp feeds into the input of the push-pull amplifier. Having the op-amp in the circuit in this way helps make \(V_\text{out}=V_\text{in}\) instead of \(V_\text{out}=V_\text{in}\pm V_{th}\) because the feedback of the op-amp will drive the system toward \(V_+=V_-\); since \(V_\text{out}=V_-\), the output voltage will now be \(V_\text{in}\).

Since the push-pull amplifier (with the second op-amp) has a voltage gain of 1, the total voltage gain of the circuit will be the voltage gain of the non-inverting amplifier. The advantage of this circuit over a non-inverting amplifier followed by just an op-amp buffer, is that the amount of current the BJTs can supply is much greater than the LF356.

2.5.1 Question

Build the circuit shown in Figure 5 in LTspice with

  • OP113 op-amps

  • \(R_F=100\text{ k}\Omega\)

  • \(R=1\text{ k}\Omega\)

  • \(V_{S,+}=15\text{ V}\)

  • \(V_{S,-}=-15\text{ V}\)

  • \(R_L=8\ \Omega\)

Make \(V_\text{in}\) a sine wave with

  • \(f=1\text{ kHz}\)

  • an amplitude of \(50\text{ mV}\)

  • an output impedance of \(50\ \Omega\) (to emulate the function generator)

Configure a transient analysis with a stop time of \(5\text{ ms}\).

  1. Before running the simulation, calculate the predicted voltage gain and \(V_\text{out}\).

  2. Run the simulation and measure the input voltage and the voltage at the output of the non-inverting amplifier. Is the voltage gain what you predicted?

  3. Measure the voltage at the output of the circuit, compare this to the output of the non-inverting amplifier. Is there any crossover distortion?

  4. Measure the current in the load, what is the maximum current? Would the LF356 be able to supply this current without the BJTs?

2.6 FET Basics

Field effect transistors (FET) differ from bipolar transistors in that they are controlled by an applied voltage instead of an applied current. Since voltage and current are often related, functionally they are very similar and often can be exchanged in various applications. Instead of having a base, collector, and emitter, a FET has a gate, source, and drain. This video describes how FETs work.

A commonly used FET is a metal-oxide semiconductor FET (MOSFET), where a small insulating layer separates the gate terminal from the semiconductor. This creates a capacitor-like structure that insulates DC currents, and when the gate terminal is charged, it will generate electric fields across the insulator and influence the behavior of the doped semiconductor on the other side. In integrated digital circuits, small MOSFETs are ubiquitous and are used in everything from simple logic circuits to the billions of transistors found in Intel and AMD central processor chips (CPUs). Small MOSFETs are also used in some op-amps, particularly when very low supply current is needed, as in portable battery-powered circuits. Small discrete (single) MOSFETs are not normally used because they are extremely fragile. Large discrete MOSFETs are used in all sorts of high power applications, including commercial radio transmitters. The primary advantages of MOSFETs are that they are extremely simple to manufacture at scale (in a process called CMOS), and because the active state involves essentially charging a capacitor, there is no passive power consumption (for a BJT, to keep it on, you have to continue to sink current into the base which costs energy). A disadvantage of MOSFETs is in high frequency applications where the capacitive coupling in the metal-oxide starts to act like a short circuit.

Junction FETs (JFETs) are also very common. JFETs add very little intrinsic noise to a circuit and have very large input impedance. Op-amps that use JFETs for the input stage are often the first choice for low-noise amplification (such as the LF356). Discrete JFETs are commonly seen in scientific instruments. Consider using a JFET when low-noise is critical. We will not cover JFETs in this activity, but you can read about them in Chapter 3 of Horowitz and Hill (either edition) and they may be useful in your final project.

Figure 6: Two common types of FETs are MOSFETs and JFETs. These are the circuit diagrams for the N-channel and the P-channel. The direction of positive drain current is labeled.

FETS are similar to BJTs. The table below relates the two:

BJT FET
Type of control Current \((I_B)\) Voltage \((V_{GS})\)
Positive control NPN N-channel
Negative control PNP P-channel
Pins: Base Gate
Collector Drain
Emitter Source

A voltage from the gate to the source (gate-source voltage \(V_{GS}\)) controls current from drain to source (drain current \(I_D\)). For an N-channel, a positive \(V_{GS}\) drives a positive \(I_D\) (current flows from drain to source), and for a P-channel, a negative \(V_{GS}\) drives a negative \(I_D\) (current flows from source to drain).

2.6.1 Question

State whether a BJT, MOSFET, or JFET is most ideal for the following applications:

  1. You wish to fabricate a microcontroller chip with hundreds of thousands of transistors to perform digital logic.

  2. You wish to design an amplifier for \(1\text{ MHz}\) signals.

  3. You wish to design a low noise amplifier.

2.7 MOSFET Current-Voltage Relations

MOSFETs can operate in three distinct regions. The first region is where the gate-to-source voltage, \(V_{GS}\), is less than the threshold voltage, \(V_{th}\). In this region, the MOSFET is turned off and no drain current can flow. The second region (the linear region) is when \(V_{GS} > V_{th}\) and \(V_{DS} < (V_{GS} - V_{th})\), where \(V_{DS}\) is the drain-to-source voltage. In this linear region, the transistor is turned on, and a channel has been created that allows current to flow between the drain and the source. In this region, the MOSFET operates like a voltage controlled resistor, controlled by the gate voltage relative to both the source and drain voltages. In the third region (the saturation region), \(V_{GS} > V_{th}\) and \(V_{DS} \ge (V_{GS} - V_{th})\). In the saturation region, the current is controlled by the gate voltage and is nearly independent of \(V_{DS}\). One of the most common applications of a MOSFET is as a switch (for binary logic for example), where it is operated in the saturation region. The linear and saturation regions are separated by the dotted line in Figure 7. In the saturation region, the dependence of current on \(V_{GS}\) is modeled by \(I_D = k(V_{GS} - V_{th})^2\), where \(k\) is a constant that depends on the device.

Figure 7: Typical output characteristics of a MOSFET. These vary greatly between different types of MOSFETs. Always check the data sheet for your exact part.

2.7.1 Question

Create a simple n-channel MOSFET circuit with the source grounded and individual voltages applied at the gate and the drain (see the figure below). You can create a n-channel MOSFET by searching “nmos” in the components menu.

Figure 8: The circuit to simulate in LTspice. V_{DS} is labeled V_DS and V_{GS} is labeled V_GS

Configure a linear DC sweep on \(V_{DS}\) from \(0\) to \(10\text{ V}\) with an increment of \(0.1\text{ V}\) for the following values of \(V_{GS}\), measure the current into the drain \((I_D)\) and export the data as you did for the BJT in question 2.2.3 (so that you can import it into your Jupyter Notebook)

  • \(V_{GS} = 2\text{ V}\)

  • \(V_{GS} = 4\text{ V}\)

  • \(V_{GS} = 6\text{ V}\)

  • \(V_{GS} = 8\text{ V}\)

  1. Import the four sets of data and plot them on one graph with a legend labeling the value of \(V_{GS}\) for each curve. Make the units of \(y\)-axis in \(\text{mA}\) by multiplying \(I_D\) by \(1000\) (LTspice exports in Amps).

  2. Does your plot generally resemble the one shown in Figure 7 (if not, identify the mistake and resolve it)?

2.7.2 Question

  1. Identify the \(I_D\) in the saturation region for each \(V_{GS}\) (where \(I_D\) is constant with respect to \(V_{DS}\)). Record this data as NumPy arrays. Record \(I_D\) in MICROAMPS \(\mu\text{A}\).
v_gs = np.array([2, 4, 6, 8])
i_d = np.array([i0, i1, i2, i3])

We will fit this data to

\[I_D = k(V_{GS}-V_{th})^2\]

The threshold voltage for this simulated MOSFET is \(0\text{ V}\). (You can convince yourself of this by doing a DC sweep of \(V_{GS}\) at a fixed \(V_{DS}\)). We can then define the fitting function as

def fitting_function_mosfet(V_GS, k):
   """
   :param V_GS: array of gate-source voltages
   :param k: device dependent constant
   :return: drain current
   """
   return k * V_GS ** 2
  1. Fit the data to the fitting function to determine the constant \(k\). You can utilize the curve_fit function (Documentation can be found here). You can access this function with from scipy.optimize import curve_fit.
initial_guess = (1,) # the initial guess for fitting parameters.

popt, pcov = curve_fit(fitting_function_mosfet, v_gs, i_d, initial_guess)

If there are \(n\) fitting parameters, then the initial_guess needs to be a tuple (or list) with \(n\) elements. popt will be a list with elements representing the results of the fit (so it will be \(n\)-long), and pcov is a covariance matrix (of size \(n\times n\)). The estimate of the error can be determined with perr = np.sqrt(np.diag(pcov)).

  1. Fit the data and plot the data with the fit
fig, ax = plt.subplots(1, 1, figsize=(4, 3))

ax.scatter(v_gs, i_d, color='k', s=100)

v_gs_fit = np.linspace(0, 10, 100)
ax.plot(v_gs_fit, function(v_gs_fit, popt[0]), 'r')

ax.set_xlabel("$V_$ (V)")
ax.set_ylabel("$I_D$ (mA)")
ax.set_title("$I_D = k(V_-V_)^2$")

loc = (0, 850)
ax.annotate(f"$(k={popt[0]:.4f} \pm {perr[0]:.4f})$", loc)

fig.tight_layout()
  1. The annotation will print your fitting result on the plot. However, it’s missing units. Determine the units of \(k\) and include these units in the annotation, also adjust the number of significant figures (by editing the 4 in :.4f) so that the digits displayed are correct. As a refresher, there should only be one significant digit in the error (unless it starts with 1, then you can take two), and the number of digits past the decimal should match in both the parameter and the error.

2.8 A dial controlled current

Consider the circuit below:

Figure 9: A simple MOSFET circuit that utilizes a potentiometer as a voltage divider to set a V_{GS} to control the current through the load R_L.

The potentiometer with total resistance \(R_p\) acts as a voltage divider to set a gate-source voltage \(V_{GS}\). We can consider the resistance from the wiper to ground as \(R_{GS}\), such that the transfer function is \(R_{GS}/R_p\) (since \(R_p\) is \(R_{GS}\) plus the resistance from the gate to the supply voltage \(V_\text{supply}\)). This leads to

\[V_{GS} = \frac{R_{GS}}{R_p}V_\text{supply}\]

The potentiometer then simply sets the gate-source voltage, giving you a way of controlling it through a dial. The load (with resistance \(R_L\)) will have current \(I_D\) run through it depending on the dial position. This will lead to a voltage drop, such that the voltage at the drain (and therefore \(V_{DS}\)) is less than \(V_\text{supply}\). This idea should be familiar from the BJT analysis you did.

2.8.1 Question

A load line (on the \(I_D\) vs \(V_{DS}\) plot) can be used to determine the behavior of this circuit. Recall that the intersection of the load line and a curve will determine \(I_D\) for each choice of \(V_{GS}\). The plot is specific to each individual MOSFET design, so you would use the plots supplied by the manufacturer in a datasheet in general; however, we will consider the MOSFET in your simulation since you already have that loaded into your Jupyter Notebook.

  1. Use Ohm’s law to write down \(I_D\) as a function of \(R_L\), \(V_\text{supply}\), and \(V_{DS}\) (this is your load line equation). Implement it as a Python function that returns the drain current in \(\text{mA}\) (by multiplying by \(1000\)) and takes \(V_\text{supply}\) and \(V_{DS}\) in Volts and \(R_L\) in Ohms.

  2. Plot your load line on a graph with your \(I_D\) vs \(V_{DS}\) curves using \(V_\text{supply}=9\text{ V}\) and \(R_L = 10\text{ k}\Omega\). Hint: You’ll want to make an \(x\)-axis array with something like v_ds = np.linspace(0, 10, 100) and plug this into your function to get the \(y\)-axis.

  3. Which values of \(V_{GS}\) result in the MOSFET operating in the linear region and which values result in the MOSFET operating in the saturation region?

  4. What value of \(V_{GS}\) get you closest to \(0.5\text{ mA}\)?

2.8.2 Question

With a supply voltage of \(9\text{ V}\) and a load of \(10\text{ k}\Omega\), the MOSFET operated in the linear region or the saturation region depending on the choice of \(V_{GS}\); however, for a load of \(R_L=100\ \Omega\), the MOSFET will operate in the saturation region for all four choices of \(V_{GS}\).

  1. Show that the MOSFET is in the saturation region for all the \(V_{GS}\) on your graph by plotting the new load line with \(V_\text{supply}=9\text{ V}\) and \(R_L = 100\ \Omega\) (on a new plot). Adjust the axes with ax.ylim() to show the plot nicely.

  2. Looking at your plot, is it consistent with the \(I_D\) vs \(V_{GS}\) plot you made in Question 2.7.2?

Since we are in the saturation region, the value of \(k\) you determined from your fit can be used to determine the value of \(V_{GS}\) needed to get a particular current \(I_D\) through the load.

  1. Using the value of \(k\) you determined from the fit, what \(V_{GS}\) would you need to get a drain current of \(0.5\text{ mA}\)? Note: check the units of \(k\) and make sure you report your answer with correct and appropriate units. Hint: remember that \(V_{th}=0\text{ V}\).

  2. Notice that the \(V_{GS}\) needed to get the same current of \(I_D=0.5\text{ mA}\) differs depending on the load. As the load decreases the load line will become steeper, so it will continue to intersect the \(I_D\) vs \(V_{DS}\) curves in the saturation region. Considering this, what \(V_{GS}\) would achieve \(I_D=0.5\text{ mA}\) for a \(8\ \Omega\) load?

2.9 Op-amp design

Op-amps are made of several transistors (often a mix of BJTs and JFETs). Op-amp design involves combining many kinds of transistor circuits like differential pairs (aka long-tail pairs), emitter amplifiers, current mirrors, darlington pairs, and push-pull amplifiers. Chapter 2 in Horowitz and Hill has a lot of great information on all of these (and more). It is worth thumbing through this chapter for ideas to incorporate in your final project.

A great final project idea is to build an op-amp from discrete transistors! This op-amp, without doubt, will under perform compared to the LF356, but it will be a great learning experience. You can even implement it as an audio amplifier to drive a large speaker to make it more interesting. The following resources are a good starting off point for a project like this.

2.9.1 Question

Read through the first article. What are the 3 primary stages of an op-amp? Describe the function of each one.