ECSE 1010 Proof of Concepts - Omega Lab02

Warning
This article was last updated on 2024-11-28, the content may be out of date.

0. Lab Document

1. Prove That the Slope of an IVIV Curve Corresponds with Ohm’s Law for Two Different Resistor Values

Building Block

/ecse-1010-poc-lab02/P1-1-a.avif
P1-1-a

Let’s pick two resistor. The first one is

P1-1-b

P1-1-b

4-Band Color Code: Orange, Orange, Brown, Gold

33×(1×101)=330Ω±5% \begin{align*} 33 \times (1\times10^1) = 330 \Omega \pm 5\% \end{align*}

have a check

/ecse-1010-poc-lab02/P1-1-b-2.avif
P1-1-b-2

The second one is

/ecse-1010-poc-lab02/P1-1-c.avif
P1-1-c

4-Band Color Code: Brown, Brown, Red, Gold

11×(1×102)=1100Ω±5% \begin{align*} 11 \times (1\times10^2) = 1100 \Omega \pm 5\% \end{align*}

have a check

/ecse-1010-poc-lab02/P1-1-c-2.avif
P1-1-c-2

Analysis

We know that IVIV curve means II on the y-axis and VV on the x-axis of the plot. Then, it must be a linear function, because both IVIV don’t have powers.

Using the idea of linear function, we know the slope is ΔXΔY\frac{\Delta X}{\Delta Y}. Back to our case, it becomes ΔVΔI\frac{\Delta V}{\Delta I}. Also, we knows the Ohm’s Law, which VI=R\frac{V}{I} = R. So, the slope is very likely to be the resistance RR.

If we take R1=10ΩR_1 = 10 \Omega, R2=100ΩR_2 = 100 \Omega (As the simulation set). We should got.

/ecse-1010-poc-lab02/P1-2-a.avif
P1-2-a

If we plot them together, we got

/ecse-1010-poc-lab02/P1-2-b.avif
P1-2-b

Here is the data table

II V=IR1V=IR_1 V=IR2V=IR_2
0 0 0
0.2 2 20
0.4 4 40
0.6 6 60
0.8 8 80
1 10 100

Simulation

/ecse-1010-poc-lab02/P1-3-a.avif
P1-3-a

Measurement

First we built a circuit like this

/ecse-1010-poc-lab02/P1-4-a.avif
P1-4-a

this is based on the diagram from the lab document

/ecse-1010-poc-lab02/P1-4-a-2.avif
P1-4-a-2

We only changed the R1,R2R1, R2 values. Also, it’s hard to plug multimeter on the breadboard. So, we intersect the V+V+ circuit at the front

/ecse-1010-poc-lab02/P1-4-b.avif
P1-4-b

This method is not ideal, but works.


Let’s begin

For V+=0.5VV+ = 0.5V, we got

/ecse-1010-poc-lab02/P1-4-c.avif
P1-4-c
/ecse-1010-poc-lab02/P1-4-c-2.avif
P1-4-c-2

To save some space and work, we just will not show each result. But here is the data

V+V+ V(R1)V(R1) V(R1)V(R1) II
0V0V 0V0V 0V0V 0mA0mA
0.5V0.5V 0.142V0.142V 0.396V0.396V 0.3mA0.3mA
1V1V 0.238V0.238V 0.724V0.724V 0.6mA0.6mA
1.5V1.5V 0.358V0.358V 1.126V1.126V 1.0mA1.0mA
2V2V 0.463V0.463V 1.492V1.492V 1.3mA1.3mA
2.5V2.5V 0.572V0.572V 1.831V1.831V 1.6mA1.6mA
3V3V 0.632V0.632V 1.994V1.994V 1.9mA1.9mA

With this MATLAB code,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
% Step 1: Enter the data
V_plus = [0, 0.5, 1, 1.5, 2, 2.5, 3]; % V+ values
V_R1 = [0, 0.142, 0.238, 0.358, 0.463, 0.572, 0.632]; % V(R1) values
V_R2 = [0, 0.396, 0.724, 1.126, 1.492, 1.831, 1.994]; % V(R2) values
I = [0, 0.3, 0.6, 1.0, 1.3, 1.6, 1.9] * 1e-3; % I values in A (converted from mA)

% Step 2: Plot the data
figure;

% Plot for Resistor R1
subplot(2, 1, 1);
plot(V_R1, I, '-o');
xlabel('Voltage V(R1) (V)');
ylabel('Current I (A)');
title('Resistor R1: Current vs Voltage');
grid on;

% Plot for Resistor R2
subplot(2, 1, 2);
plot(V_R2, I, '-o');
xlabel('Voltage V(R2) (V)');
ylabel('Current I (A)');
title('Resistor R2: Current vs Voltage');
grid on;

we got the plot of R1R1 and R2R2

/ecse-1010-poc-lab02/P1-4-d.svg
P1-4-d

Now, let’s create a fit line for both. It’s needed to find out the slope (R=V/IR=V/I). To do that, we changed the code a bit into

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
% Step 1: Enter the data
V_plus = [0, 0.5, 1, 1.5, 2, 2.5, 3]; % V+ values
V_R1 = [0, 0.142, 0.238, 0.358, 0.463, 0.572, 0.632]; % V(R1) values
V_R2 = [0, 0.396, 0.724, 1.126, 1.492, 1.831, 1.994]; % V(R2) values
I = [0, 0.3, 0.6, 1.0, 1.3, 1.6, 1.9] * 1e-3; % I values in A (converted from mA)

% Step 2: Fit linear regression curves
% Fit for Resistor R1
p_R1 = polyfit(I, V_R1, 1);
slope_R1 = p_R1(1);
R_R1 = slope_R1; % Resistance of R1

% Fit for Resistor R2
p_R2 = polyfit(I, V_R2, 1);
slope_R2 = p_R2(1);
R_R2 = slope_R2; % Resistance of R2

% Step 3: Display the resistances
fprintf('Resistance of R1: %.3f ohms\n', R_R1);
fprintf('Resistance of R2: %.3f ohms\n', R_R2);

% Step 4: Plot the data and fitted curves
figure;

% Plot for Resistor R1
subplot(2, 1, 1);
plot(V_R1, I, 'o');
hold on;
plot(polyval(p_R1, I), I, '-');
xlabel('Voltage V(R1) (V)');
ylabel('Current I (A)');
title('Resistor R1: Current vs Voltage with Linear Fit');
legend('Data', 'Linear Fit');
grid on;

% Plot for Resistor R2
subplot(2, 1, 2);
plot(V_R2, I, 'o');
hold on;
plot(polyval(p_R2, I), I, '-');
xlabel('Voltage V(R2) (V)');
ylabel('Current I (A)');
title('Resistor R2: Current vs Voltage with Linear Fit');
legend('Data', 'Linear Fit');
grid on;

we got a result of

1
2
Resistance of R1: 331.144 ohms
Resistance of R2: 1069.374 ohms

and the plots

/ecse-1010-poc-lab02/P1-4-e.svg
P1-4-e

Check this result from multimeter’s reading of resistance

/ecse-1010-poc-lab02/P1-4-d.avif
P1-4-d
/ecse-1010-poc-lab02/P1-4-d-2.avif
P1-4-d-2

Great! The actual reading is very close to the resistances we determined from your IV measurement data and the linear regression. The average %\% error is less than 1%1\%

Discussion

We did a lot of discussion in each session instead of in one. This is just to make the document more logical and follows the flow. So, we will only summarize and add something not appear above.

First, we used LTSpecie to determine IVIV curve of two resistor R1=10ΩR_1 = 10\Omega and R2=100ΩR_2 = 100\Omega. (This is just for prove our Analysis, so it doesn’t match the R1=330ΩR_1 = 330\Omega and R2=1100ΩR_2 = 1100\Omega we used later). And it matches our Analysis. Both the plot created by Excel and the values.

Then, we built a series circuit, and we know they have the same current across all components. And, the RR is only related to IVIV. As long as we got some reading pairs, we can plot the curve. The result matches our expectation with less than 1%1\% error. Consider our multimeter can only measure down to 0.1mV0.1 mV. This accuracy is amazing!

Thus, we proved That the Slope of an IVIV Curve Corresponds with Ohm’s Law for Two Different Resistor Values.

2. Prove the non linear IVIV curve for a light emitting diode

Building Block

/ecse-1010-poc-lab02/P3-1-a.avif
P3-1-a

Analysis

To plot a IVIV curve of a diode. We need to find out a few important data.

  • Forward Voltage (VFV_F)
  • Reverse Breakdown Voltage (VBRV_{BR})
  • Reverse Leakage Current (ISI_S)

As the datasheet of QED123 said

  • VF=1.7VV_F = 1.7V
  • IF=100mAI_F = 100 mA
  • VBR=5VV_{BR} = 5V
  • IS=10μAI_S = 10 \mu A

We just plot them into a standard diode IVIV characteristic diagram and get

/ecse-1010-poc-lab02/P2-2-a.avif
P2-2-a

Simulation

/ecse-1010-poc-lab02/P3-3-a.avif
P2-3-a

The turn on voltage of 1N914 is about 0.7V0.7V

Measurement

/ecse-1010-poc-lab02/P3-4-a.avif
P3-4-a

We create a trig wave like

/ecse-1010-poc-lab02/P3-4-b.avif
P3-4-b

with amplitude to 5V (10 volts peak to peak), frequency to 200 Hz, and phase to 90 degrees.

Then, we use channel 1 to find out the current using the math function in scope

1
C1/330*1000
/ecse-1010-poc-lab02/P3-4-b-2.avif
P3-4-b-2

and the IVIV Curve

/ecse-1010-poc-lab02/P3-4-b-3.avif
P3-4-b-3

with this MATLAB Code,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
% Step 1: Import the CSV file
data = readmatrix('P2-4-c.csv');

% Step 2: Extract the columns
voltage = data(:, 2);  % Second column is voltage (V)
current = data(:, 1);  % Third column is current (I)


% Step 3: Plot the I-V curve
figure;
plot(currentvoltage, current, 'k-', 'LineWidth', 1.5);
xlabel('Voltage (V)');
ylabel('Current (I)');
title('I-V Curve');
grid on;

we got

/ecse-1010-poc-lab02/P2-4-c-2.svg
P2-4-c-2

Discussion

Our experimental matches the datasheet. Consider the datasheet said

  • VF=1.7VV_F = 1.7V
  • IF=100mAI_F = 100 mA

and we got 1.7V1.7V on 10mA10 mA this matches the datasheet curve.

3. Show / demonstrate that the differential resistance changes in different regions in the diode IVIV curve

Building Block

/ecse-1010-poc-lab02/P3-1-a.avif
P3-1-a

Analysis

To plot a IVIV curve of a diode. We need to find out a few important data.

  • Forward Voltage (VFV_F)
  • Reverse Breakdown Voltage (VBRV_{BR})
  • Reverse Leakage Current (ISI_S)

As the datasheet of QED123 said

  • VF=1.7VV_F = 1.7V
  • IF=100mAI_F = 100 mA
  • VBR=5VV_{BR} = 5V
  • IS=10μAI_S = 10 \mu A

We just plot them into a standard diode IVIV characteristic diagram and get

/ecse-1010-poc-lab02/P2-2-a.avif
P2-2-a

Simulation

/ecse-1010-poc-lab02/P3-3-a.avif
P3-3-a

The turn on voltage of 1N914 is about 0.7V0.7V

Measurement

/ecse-1010-poc-lab02/P3-4-a.avif
P3-4-a

We create a trig wave like

/ecse-1010-poc-lab02/P3-4-b.avif
P3-4-b

with amplitude to 5V (10 volts peak to peak), frequency to 200 Hz, and phase to 90 degrees.

Then, we use channel 1 to find out the current using the math function in scope

1
C1/330*1000
/ecse-1010-poc-lab02/P3-4-b-2.avif
P3-4-b-2

and the IVIV Curve

/ecse-1010-poc-lab02/P3-4-b-3.avif
P3-4-b-3

with this MATLAB Code,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
% Step 1: Import the CSV file
data = readmatrix('P2-4-c.csv');

% Step 2: Extract the columns
voltage = data(:, 2);  % Second column is voltage (V)
current = data(:, 1);  % Third column is current (I)


% Step 3: Plot the I-V curve
figure;
plot(voltage, current, 'k-', 'LineWidth', 1.5);
xlabel('Voltage (V)');
ylabel('Current (I)');
title('I-V Curve');
grid on;

we got

/ecse-1010-poc-lab02/P2-4-c-2.svg
P2-4-c-2

Discussion

To find out at least 2 locations on the curve to show that the differential resistance changes along the I-V characteristic. We modified the code a bit to let it find out 2 random point on the plot and its slope.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
% Step 1: Import the CSV file
data = readmatrix('P2-4-c.csv');

% Step 2: Extract the columns
voltage = data(:, 2);  % Second column is voltage (V)
current = data(:, 1);  % Third column is current (I)

% Step 3: Select two random points
num_points = length(current);
random_indices = randperm(num_points, 2);  % Generate 2 unique random indices

% Step 4: Extract the voltage and current values for the selected points
V1 = voltage(random_indices(1));
V2 = voltage(random_indices(2));
I1 = current(random_indices(1));
I2 = current(random_indices(2));

% Step 5: Calculate the slopes
slope1 = (V2 - V1) / (I2 - I1);
slope2 = (V1 - V2) / (I1 - I2);  % This is the same as slope1 but calculated in reverse

% Step 6: Print the slopes
fprintf('The slope between the randomly selected points (I1 = %.4f, V1 = %.4f) and (I2 = %.4f, V2 = %.4f) is: %.4f\n', I1, V1, I2, V2, slope1);
fprintf('The slope between the randomly selected points (I2 = %.4f, V2 = %.4f) and (I1 = %.4f, V1 = %.4f) is: %.4f\n', I2, V2, I1, V1, slope2);

We got

The slope between the randomly selected points (I1 = 0.0097, V1 = 0.2959) and (I2 = 0.0036, V2 = -2.6254) is: 479.8789

The slope between the randomly selected points (I2 = 7.9784, V2 = 1.2568) and (I1 = 2.8170, V1 = 1.1975) is: 0.0115

We can see they are very different.

4. Prove That Nodal Analysis Solves Unknown Nodal Voltages in a Circuit

Building Block

/ecse-1010-poc-lab02/P4-1-a.avif
P4-1-a

Analysis

/ecse-1010-poc-lab02/P4-2-a.avif
P4-2-a

To make our life easier, I rewrite some equation in LaTeX\LaTeX.

Current through a resistor:

IR=VAVBR I_R = \frac{V_A - V_B}{R}

Kirchhoff’s Current Law (KCL) at node B:

IR1+IR2+IR3=0 I_{R_1} + I_{R_2} + I_{R_3} = 0

KCL at node C:

IR3+IR4=0 I_{R_3} + I_{R_4} = 0

Expressing currents in terms of voltages. From the first equation:

VBVAR1+VBR2+VBVCR3=0 \frac{V_B - V_A}{R_1} + \frac{V_B}{R_2} + \frac{V_B - V_C}{R_3} = 0

From the second equation:

VCVBR3+VCVDR4=0 \frac{V_C - V_B}{R_3} + \frac{V_C - V_D}{R_4} = 0

Substituting known values. Given VA=5V_A = 5 and VD=0V_D = 0, the equations become:

2.5VBVC=52VCVB=0 2.5V_B - V_C = 5 \\ 2V_C - V_B = 0

Matrix form: [2.5112]\begin{bmatrix} 2.5 & -1 \\ -1 & 2 \end{bmatrix} [VBVC]=\begin{bmatrix} V_B \\ V_C \end{bmatrix} = [50]\begin{bmatrix} 5 \\ 0 \end{bmatrix}

Solve them “by hand”

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
% Define the matrix A and the vector b
A = [2.5, -1; -1, 2];
b = [5; 0];

% Solve the system of linear equations A * x = b
x = A \ b;

% Display the solution
disp('The solution is:');
disp(x);

we got

1
2
3
The solution is:
    2.5000
    1.2500

Thus, [VBVC]=\begin{bmatrix} V_B \\ V_C \end{bmatrix} = [2.51.25]\begin{bmatrix}2.5 \\ 1.25 \end{bmatrix}

Simulation

/ecse-1010-poc-lab02/P4-3-a.avif
P4-3-a

Measurement

/ecse-1010-poc-lab02/P4-4-a.avif
P4-4-a

For VCV_C, we got

/ecse-1010-poc-lab02/P4-4-b-1.avif
P4-4-b-1

For VBV_B, we got

/ecse-1010-poc-lab02/P4-4-b-2.avif
P4-4-b-2

Discussion

Node Analysis Simulation Experimental diff %diff
VBV_B 2.50V2.50V 2.50V2.50V 2.45V2.45V 5mV5mV 2%2\%
VCV_C 1.25V1.25V 1.25V1.25V 1.22V1.22V 3mV3mV 2.4%2.4\%

Our Analysis matches the Simulation. The Experimental data has less than 2.5%2.5\% error than expect, which is very less. Thus, we proved That Nodal Analysis Solves Unknown Nodal Voltages in a Circuit.

5. Prove / demonstrate your approach to designing a circuit using nodal analysis

Building Block

/ecse-1010-poc-lab02/P5-3-a.avif
P5-3-a

Analysis

/ecse-1010-poc-lab02/P5-2-a.avif
P5-2-a

To make our life easier, I rewrite some equation in LaTeX\LaTeX.

Given values:

  • VA=3VV_A = 3 \, \text{V}
  • VC=0VV_C = 0 \, \text{V}
  • VBV_B is unknown.

Using Kirchhoff’s Current Law (KCL) at node B:

VBVAR1+VBVCR2+VBVCR3=0 \frac{V_B - V_A}{R_1} + \frac{V_B - V_C}{R_2} + \frac{V_B - V_C}{R_3} = 0

Substituting the given values and resistances:

VB31+VB04+VB04=0 \frac{V_B - 3}{1} + \frac{V_B - 0}{4} + \frac{V_B - 0}{4} = 0

Simplifying the equation:

(VB3)+VB4+VB4=0 (V_B - 3) + \frac{V_B}{4} + \frac{V_B}{4} = 0

Combine terms:

VB3+VB2=0 V_B - 3 + \frac{V_B}{2} = 0

Multiply through by 2 to clear the fraction:

2VB6+VB=0 2V_B - 6 + V_B = 0

Combine terms:

3VB=6 3V_B = 6

Solve for VBV_B:

VB=2 V_B = 2

Simulation

/ecse-1010-poc-lab02/P5-3-a.avif
P5-3-a

Measurement

/ecse-1010-poc-lab02/P5-4-a-1.avif
P5-4-a-1

For VBV_B, we got

/ecse-1010-poc-lab02/P5-4-a.avif
P5-4-a

Discussion

Node Analysis Simulation Experimental diff %diff
VBV_B 2V2V 2V2V 1.979V1.979V 21mV21mV 1.1%1.1\%

Our Analysis matches the Simulation. The Experimental data has less than 1.2%1.2\% error than expect, which is very less. Thus, we proved That Nodal Analysis Solves Unknown Nodal Voltages in a Circuit.

6. Prove the function of an op amp comparator

Building Block

/ecse-1010-poc-lab02/P6-1-a.avif
P6-1-a

Analysis

A non-inverted comparator has a transfer function of

Vout={if  Vin<Vref,Vout=Vsif  Vin>Vref,Vout=Vs+ \begin{equation*} V_{out}=\begin{cases} \text{if} \; V_{in} < V_{ref}, V_{out} = V_s - \\ \text{if} \; V_{in} > V_{ref}, V_{out} = V_s + \\ \end{cases} \end{equation*}

In our case, we got

Vout={if  Vin<0V,Vout=5Vif  Vin>0V,Vout=5V \begin{equation*} V_{out}=\begin{cases} \text{if} \; V_{in} < 0V, V_{out} = -5V \\ \text{if} \; V_{in} > 0V, V_{out} = 5V \\ \end{cases} \end{equation*}

Our supply voltage are 5V5V and 5V-5V, and the input is a SINE wave with amplitude of 1V1V, and the reference voltage is GNDGND which is 0V0V

Simulation

/ecse-1010-poc-lab02/P6-3-b.avif
P6-3-b
/ecse-1010-poc-lab02/P6-3-a.avif
P6-3-a

Measurement

/ecse-1010-poc-lab02/P6-4-a-b.avif
P6-4-a-b
/ecse-1010-poc-lab02/P6-4-a.avif
P6-4-a

Discussion

Comparing our simulation to our experiment, we see that both of them are square waves with the same periods and similar amplitudes. They are fluctuating between 5 and -5, which are our supply voltages. This makes sense, because the supply voltages are the outputs of op amp comparators.

This proves our concept of an op amp comparator.

7. Prove the function of a mathematical op amp

Building Block

/ecse-1010-poc-lab02/P8-1-a.avif
P8-1-a

Analysis

/ecse-1010-poc-lab02/P8-2-a.avif
P8-2-a

Summing amplifier circuit has a transfer function like

Vout=RfR1V1RfR2V2 V_{out} = - \frac{Rf}{R1} \cdot V1 - \frac{Rf}{R2} \cdot V2

In our case, we want to use 50KΩ50K \Omega potentiometer as the resistors, so it can be adjusted according to our demand. Then, we got

Vout=50K50KV150K50KV2Vout=V1V2 \begin{align*} V_{out} &= - \frac{\cancel{50K}}{\cancel{50K}} \cdot V1 - \frac{\cancel{\cancel{50K}}}{\cancel{50K}} \cdot V2 \\ V_{out} &= - V1 - V2 \\ \end{align*}

Simulation

We just used two SINE waves with different frequencies (500  Hz500 \; \text{Hz} and 1K  Hz1K \; \text{Hz}) in our simulation.

/ecse-1010-poc-lab02/P8-3-a.avif
P8-3-a
/ecse-1010-poc-lab02/P5-3-b.avif
P5-3-b

Measurement

Then, we setup the circuit. We just connected scope channel 1 to the VoutV_{out} to check it works or not

/ecse-1010-poc-lab02/P8-4-a-b.avif
P8-4-a-b

We have Vs+=5VV_s + = 5V and Vs=5VV_s - = -5V

/ecse-1010-poc-lab02/P8-4-a.avif
P8-4-a

We used wave generator to create to SINE waves of 500  Hz500 \; \text{Hz} and 1K  Hz1K \; \text{Hz}

/ecse-1010-poc-lab02/P8-4-b.avif
P8-4-b

And we checked the output wave using scope channel 1+

/ecse-1010-poc-lab02/P8-4-c.avif
P8-4-c

Discussion

As we see, the shape of the output wave is exactly the same as our simulation. Both the amplitude of the output wave in the simulation and measurement is around 1.75V1.75V, and the period is the same.

Since the shape and all features of our experimental wave matches our simulation, we know this op-amp works in different voltage ranges.

This proved our concept of summer amp which is a mathematical op-amp.

8. Prove the concept of transfer functions of Two-Channel Audio Mixer

Building Block

/ecse-1010-poc-lab02/P8-1-a.avif
P8-1-a

Analysis

/ecse-1010-poc-lab02/P8-2-a.avif
P8-2-a

Summing amplifier circuit has a transfer function like

Vout=RfR1V1RfR2V2 V_{out} = - \frac{Rf}{R1} \cdot V1 - \frac{Rf}{R2} \cdot V2

In our case, we want to use 50KΩ50K \Omega potentiometer as the resistors, so it can be adjusted according to our demand. Then, we got

Vout=50K50KV150K50KV2Vout=V1V2 \begin{align*} V_{out} &= - \frac{\cancel{50K}}{\cancel{50K}} \cdot V1 - \frac{\cancel{\cancel{50K}}}{\cancel{50K}} \cdot V2 \\ V_{out} &= - V1 - V2 \\ \end{align*}

Simulation

We just used to SINE wave with different frequency (500  Hz500 \; \text{Hz} and 1K  Hz1K \; \text{Hz}) to test what we expect.

/ecse-1010-poc-lab02/P8-3-a.avif
P8-3-a
/ecse-1010-poc-lab02/P5-3-b.avif
P5-3-b

Measurement

Then, we setup the circuit. We just connect scope channel 1 to the VoutV_{out} to check it works or not

/ecse-1010-poc-lab02/P8-4-a-b.avif
P8-4-a-b

We supply Vs+=5VV_s + = 5V and Vs=5VV_s - = -5V

/ecse-1010-poc-lab02/P8-4-a.avif
P8-4-a

And use wave generator to create to SINE wave of 500  Hz500 \; \text{Hz} and 1K  Hz1K \; \text{Hz}

/ecse-1010-poc-lab02/P8-4-b.avif
P8-4-b

And we checked the output wave using scope channel 1+

/ecse-1010-poc-lab02/P8-4-c.avif
P8-4-c

Discussion

As we see, the shape of the output wave is exactly the same as what we simulated. Both the amplitude of the output wave in the simulation and measurement is around 1.75V1.75V, and the period is the same.

This proved our concept of summer amp.


Related Content

0%