Difference between revisions of "229-A1.2"

From Microlab Classes
Jump to navigation Jump to search
Line 26: Line 26:
 
{{NumBlk|::|<math>L = \frac{X_1^\prime}{\omega} = \frac{X_1^\prime}{2\pi f_0} = 795.77 \mathrm{pH}</math>|{{EquationRef|6}}}}
 
{{NumBlk|::|<math>L = \frac{X_1^\prime}{\omega} = \frac{X_1^\prime}{2\pi f_0} = 795.77 \mathrm{pH}</math>|{{EquationRef|6}}}}
  
We can then create a SPICE netlist so we can verify the performance of our matching network.
+
We can then create a SPICE netlist so we can verify the performance of our matching network. For circuits that you will reuse often, it is more often convenient to create a sub-circuit. In this case, a sub-circuit for our lowpass L-section:
 +
 
 +
<source lang="bash" line>
 +
.subckt l_match_lp hiR loR C=1p L=1n
 +
 
 +
C1 hiR y {C}
 +
VC1 y 0 dc=0 ac=0
 +
L1 loR x {L}
 +
VL1 x hir dc=0 ac=0
 +
 
 +
.ends l_match_lp
 +
</source>
  
 
== Case 2: <math>R_S < R_L</math> ==
 
== Case 2: <math>R_S < R_L</math> ==

Revision as of 16:06, 6 September 2020

  • Activity: Passive Matching Networks
  • Instructions: Each activity is structured as a tutorial, and you are expected to download the netlists, run the simulation, and make sure you understand the concepts and ideas presented. Should you have any questions, clarifications, or issues, please contact your instructor as soon as possible.
  • At the end of this activity, the student should be able to:
  1. Design and verify the performance of passive impedance matching circuits using ngspice.

Case 1:

Let's design a single L-section circuit between a voltage source with output resistance, and an amplifier with input resistance, .

  • Calculate the matching factor, ,and the quality factor, .

 

 

 

 

(1)

 

 

 

 

(2)

  • Calculate the value of the reactance parallel to the larger resistance. In this case, the larger resistance is .

 

 

 

 

(3)

  • Calculate the second reactance, , used to cancel .

 

 

 

 

(4)

  • If we want a lowpass matching circuit, we need to use a capacitor for , and an inductor for . We can then calculate the capacitor and inductor values for .

 

 

 

 

(5)

 

 

 

 

(6)

We can then create a SPICE netlist so we can verify the performance of our matching network. For circuits that you will reuse often, it is more often convenient to create a sub-circuit. In this case, a sub-circuit for our lowpass L-section:

1 .subckt l_match_lp hiR loR C=1p L=1n 
2 
3 C1		hiR y 	{C}
4 VC1		y 0	dc=0 ac=0
5 L1		loR x	{L}
6 VL1		x hir	dc=0 ac=0
7 
8 .ends l_match_lp

Case 2:

Case 3: with High-Q

Case 4: with High-Q

Case 5: with Optimally Low-Q

End of Activity