This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
ecen_240_assignments [2016/02/15 13:20] petersen |
ecen_240_assignments [2016/09/07 09:18] (current) wilde [MT240.NR.0] |
||
|---|---|---|---|
| Line 32: | Line 32: | ||
| | Ch 10 | [[ecen_240_assignments#MT240.NR.10|MT240.NR.10]] | Sinusoidal Steady-State Power Calc| | | | Ch 10 | [[ecen_240_assignments#MT240.NR.10|MT240.NR.10]] | Sinusoidal Steady-State Power Calc| | | ||
| | ::: | [[ecen_240_assignments#MT240.NR.10.4.1|MT240.NR.10.4.1]] | Complex Power | [[matlab_guide#Annotation| Text]] | | | ::: | [[ecen_240_assignments#MT240.NR.10.4.1|MT240.NR.10.4.1]] | Complex Power | [[matlab_guide#Annotation| Text]] | | ||
| + | | ::: | [[ecen_240_assignments#MT240.NR.10.4.2|MT240.NR.10.4.2]] | Complex Power | Review | | ||
| | Ch 12 | [[ecen_240_assignments#MT240.NR.12|MT240.NR.12]] | Intro to L. Transform | | | | Ch 12 | [[ecen_240_assignments#MT240.NR.12|MT240.NR.12]] | Intro to L. Transform | | | ||
| | Ch 13 | [[ecen_240_assignments#MT240.NR.13|MT240.NR.13]] | L Transform in Circuit Analysis | | | | Ch 13 | [[ecen_240_assignments#MT240.NR.13|MT240.NR.13]] | L Transform in Circuit Analysis | | | ||
| Line 45: | Line 46: | ||
| Read and follow along with the document to get an introduction to MATLAB. \\ | Read and follow along with the document to get an introduction to MATLAB. \\ | ||
| - | {{:240matlab:ch0:matlab_intro.docx|}} \\ | + | {{:240matlab:ch0:matlab_intro.pdf|}} \\ |
| After completing the document, make sure that you feel comfortable with the following MATLAB topics: | After completing the document, make sure that you feel comfortable with the following MATLAB topics: | ||
| Line 176: | Line 177: | ||
| === MT240.NR.7.2.1 === | === MT240.NR.7.2.1 === | ||
| - | == Description == | + | == Document == |
| - | <file> | + | {{:240matlab:ch7:mt240_nr_7_2_1_nat_tesp_rc_circuit.pdf|}} |
| - | MT240_NR_7_2_1 Natural Response of RC Circuit | + | |
| - | + | ||
| - | Objective: Gain a visual understanding of how resistors affect the rate a | + | |
| - | capacitor dissipates energy by analysing the voltage across the | + | |
| - | capacitor as a function of time and tau. | + | |
| - | + | ||
| - | Exercise: You have several 20mF capacitors with an initial voltage of 20V. | + | |
| - | You design circuits composing of one capacitor and one | + | |
| - | resistor. Every resistor has a different value, and the | + | |
| - | resistor values range from | + | |
| - | + | ||
| - | R = 1e3:1e3:10e3 | + | |
| - | + | ||
| - | The resistor and capacitor are connected together at t = 0. | + | |
| - | Analyse the voltage across every capacitor as a function of | + | |
| - | time. | + | |
| - | + | ||
| - | C = 20e-3; the value of the capacitor | + | |
| - | Vinit = 20; initial voltage across the capacitor at t = | + | |
| - | 0s | + | |
| - | + | ||
| - | + | ||
| - | + | ||
| - | a) Calculate the various values of tau for every RC circuit. | + | |
| - | tau = R*C. | + | |
| - | + | ||
| - | tau = INSERT CODE HERE | + | |
| - | + | ||
| - | b) Create the time array to use for every circuit. The duration of | + | |
| - | time must be >= 5*tau of the largest tau. | + | |
| - | + | ||
| - | the largest tau is from the largest resistor. | + | |
| - | time_beg = 0; | + | |
| - | time_step = 10; | + | |
| - | time_end = 5*tau(?); index you tau array | + | |
| - | t = time_beg:time_step:time_end; an array of time | + | |
| - | + | ||
| - | c) Calculate the voltage across the capacitors as a function of | + | |
| - | time. | + | |
| - | + | ||
| - | V(t) = Vinit*exp(INSERT CODE HERE); | + | |
| - | + | ||
| - | + | ||
| - | d) Calculate the voltage across the capacitor as a function of tau; | + | |
| - | + | ||
| - | t_tau = 0:0.1:5; array of tau | + | |
| - | V(tau) = Vinit*exp(-t_tau); | + | |
| - | + | ||
| - | e) Create two plots: one with the voltage as a function of time and the other | + | |
| - | with voltage as a function of tau. | + | |
| - | f) Questions: | + | |
| - | 1) How does resistance affect the rate at which a capacitor | + | |
| - | discharges? | + | |
| - | 2) Why are the plots the same when going by tau? | + | |
| - | + | ||
| - | </file> | + | |
| - | + | ||
| - | == Template == | + | |
| - | + | ||
| - | {{:240matlab:ch7:mt240_nr_7_2_1_t_nat_resp_rc_circuittemplate.m|}} | + | |
| - | + | ||
| - | == Solution Image == | + | |
| - | + | ||
| - | {{:240matlab:ch7:mt240_nr_7_2_1_si1_nat_resp_rc_circuitsolutionimage1.jpg?400|}} | + | |
| - | + | ||
| - | {{:240matlab:ch7:mt240_nr_7_2_1_si2_nat_resp_rc_circuitsolutionimage2.jpg?400|}} | + | |
| <ifauth @admin,@240ta> | <ifauth @admin,@240ta> | ||
| == Solution == | == Solution == | ||
| + | {{:240matlab:solutions:ch7:mt240_nr_7_2_1_nat_tesp_rc_circuit.m|}} | ||
| - | {{:240matlab:solutions:ch7:mt240_nr_7_2_1_nat_resp_rc_circuit.m|}} | ||
| </ifauth> | </ifauth> | ||
| Line 255: | Line 190: | ||
| ==== MT240.NR.8.2.1 ==== | ==== MT240.NR.8.2.1 ==== | ||
| - | == Description == | + | == Document == |
| - | + | ||
| - | <file> | + | |
| - | MT240_NR_8_2_1 RLC Circuit | + | |
| - | + | ||
| - | Objective: Gain a visual understanding of how the resistance in an RLC | + | |
| - | circuit can affect the circuit's response. | + | |
| - | + | ||
| - | Commands: roots, real, imag | + | |
| - | + | ||
| - | Background: So far you have explored specific solutions to the three RLC | + | |
| - | cases: underdamped, overdamped, and critically damped. In this program | + | |
| - | you will explore the general solution of a parallel RLC circuit that generates | + | |
| - | all three cases. Your book introduces the general solution in section 8-1, | + | |
| - | and we will use it to derive the necessary equation. | + | |
| - | The goal is to create the general solution as shown below. | + | |
| - | X(t) = A1*exp(s1*t) + A2*exp(s2*t) | + | |
| - | + | ||
| - | Below I will explain how to derive the general solution | + | |
| - | The second order differential equation for a parallel RLC circuit is | + | |
| - | d^2i/dt + (1/RC)di/dt + I/LC = 0. | + | |
| - | This equation is transformed into the characteristic equation. | + | |
| - | s^2 + (1/RC)*S + 1/LC = 0 | + | |
| - | Notice how the equation is a second order polynomial that can be solved. | + | |
| - | By solving for the roots of the characteristic equation you obtain s1, and | + | |
| - | s2. | + | |
| - | With s1 and s2 known, you can set up a system of equations to solve for | + | |
| - | A1 and A2. | + | |
| - | X_init = A1*exp(s1*0) + A2*exp(s2*0) | + | |
| - | dx/dt = A1*s1*exp(s1*0) + A2*s2*exp(s2*0) | + | |
| - | Now that A1, A2, s1, and s2 are found, you can generate the general | + | |
| - | solution. | + | |
| - | X(t) = A1*exp(s1*t) + A2*exp(s2*t) | + | |
| - | + | ||
| - | Exercise: You have a parallel RLC circuit as shown in the image below. | + | |
| - | The current source has a value of 3A, the capacitor 100uF, the inductor | + | |
| - | 4H, and a potentionmeter (R) assumes the values R = 70:200:1070. Assume | + | |
| - | that the switch has been closed for a long time before opening it at t = | + | |
| - | 0s. | + | |
| - | a) Calculate the general solution to the RLC circuit for every resistor. | + | |
| - | There should be 6 resistor values. | + | |
| - | b) Plot the current through the inductor as a function of time for all | + | |
| - | values of R. | + | |
| - | c) What happens as resistance increases? And why? | + | |
| - | </file> | + | |
| - | + | ||
| - | == Image == | + | |
| - | + | ||
| - | {{:240circuits:underdamped.png?400|}} | + | |
| - | + | ||
| - | == Template == | + | |
| - | + | ||
| - | {{:240matlab:ch8:mt240_nr_8_2_1_t_rlccircuittemplate.m|}} | + | |
| - | + | ||
| - | == Solution Image == | + | |
| - | {{:240matlab:ch8:mt240_nr_8_2_1_si_rlccircuitsolutionimage.jpg?400|}} | + | {{:240matlab:ch8:mt240_nr_8_2_1_rlc_circuit.pdf|}} |
| <ifauth @admin,@240ta> | <ifauth @admin,@240ta> | ||
| == Solution == | == Solution == | ||
| - | + | {{:240matlab:solutions:ch8:mt240_nr_8_2_1_rlc_circuit.m|}} | |
| - | {{:240matlab:solutions:ch8:mt240_nr_8_2_1_rlccircuit.m|}} | + | |
| </ifauth> | </ifauth> | ||
| Line 322: | Line 202: | ||
| ==== MT240.NR.9.1.1 ==== | ==== MT240.NR.9.1.1 ==== | ||
| - | <file> | + | == Document == |
| - | MT240_NR_9_1_1 Sinusoid Source | + | {{:240matlab:ch9:mt240_nr_9_1_1_sinusoidal_source.pdf|}} |
| - | + | ||
| - | Objective: Gain a visual understanding of how fast a capacitor can | + | |
| - | discharge and charge for a given tau. Also, learn how to identify the | + | |
| - | voltage waveform of a capacitor. | + | |
| - | + | ||
| - | Background: It is possible to model a sinusoidal source using a DC source | + | |
| - | if the DC source is connected to a toggling switch that turns on and off. | + | |
| - | In this exercise you will model a sinusoidal source using a DC source. | + | |
| - | + | ||
| - | Exercise: You have a circuit as described in the image below. The switch | + | |
| - | toggles between position a and position b. At t = 0 there is no energy | + | |
| - | stored in the capacitor and the switch is in position a. At t = 2*tau | + | |
| - | the switch moves to position b and so on as indicated in the table. | + | |
| - | Note that at each switch even time starts over at t = 0. | + | |
| - | | time | position | | + | |
| - | | t = 0 | a | | + | |
| - | | t = 2*tau | b | | + | |
| - | | t = 2*tau | a | | + | |
| - | | t = 4*tau | b | | + | |
| - | | t = tau/4 | a | | + | |
| - | | t = 4*tau | b | | + | |
| - | | t = tau/6 | a | | + | |
| - | | t = 2*tau | b | | + | |
| - | | t = tau/10 | a | | + | |
| - | | t = 4*tau | end | End the simulation | + | |
| - | + | ||
| - | a) calculate the voltage as a function of time | + | |
| - | b) plot the voltage as a function of time with time being in ms | + | |
| - | c) How would you create a waveform that closely approximates a triangle? | + | |
| - | In other words, how fast must the switch toggle between position a and | + | |
| - | b? | + | |
| - | + | ||
| - | </file> | + | |
| - | == Image == | + | |
| - | + | ||
| - | {{:240circuits:hw10.png?400|}} | + | |
| - | + | ||
| - | == Template == | + | |
| - | + | ||
| - | {{:240matlab:ch9:mt240_nr_9_1_1_t_sinusoidalsourcetemplate.m|}} | + | |
| - | + | ||
| - | == Solution Image == | + | |
| - | + | ||
| - | {{:240matlab:ch9:mt240_nr_9_1_1_si_sinusoidalsourcesolutionimage.jpg?400|}} | + | |
| <ifauth @admin,@240ta> | <ifauth @admin,@240ta> | ||
| == Solution == | == Solution == | ||
| - | {{:240matlab:solutions:ch9:mt240_nr_9_1_1_sinusoidalsource.m|}} | + | {{:240matlab:solutions:ch9:mt240_nr_9_1_1_sinusoidal_source.m|}} |
| </ifauth> | </ifauth> | ||
| ===== Z-Circuit Analysis with Mesh Current Method ===== | ===== Z-Circuit Analysis with Mesh Current Method ===== | ||
| ==== MT240.NR.9.9.1 ==== | ==== MT240.NR.9.9.1 ==== | ||
| - | + | == Document == | |
| - | <file> | + | {{:240matlab:ch9:mt240_9_9_1_mesh_current_method.pdf|}} |
| - | MT240_9_9_1 Mesh_Current Method | + | |
| - | + | ||
| - | Objective: Design a circuit using capacitors and resistors that cause | + | |
| - | Vout to be 180 degrees out of phase with Vin. | + | |
| - | + | ||
| - | Background: Oscillators can be constructed from op-amps and an RC network. | + | |
| - | The basic theory is to create a 180 degree phase shift between Vin and | + | |
| - | Vout. This will cuase the op-amp to continuously oscillate in attempt to | + | |
| - | make both inputs the same voltage level (virtual short). | + | |
| - | + | ||
| - | Exercise: Refer to the provided image for this problem. | + | |
| - | You want to design a circuit that will oscillate at 40e3 Hz. You only | + | |
| - | have one resistor value (R = 1e3 ohms), but you have the various | + | |
| - | capacitors available (C = 1e-9:1e-10:20e-9). You decide to write a | + | |
| - | program to calculate the angle of Vout in reference to Vin as a function of | + | |
| - | Capacitance. To simplify calculations, you decide that every resistor | + | |
| - | must have the same value and every capacitor must have the same value. | + | |
| - | Also, since you are only interested in the phase shift of Vout, assume | + | |
| - | Vin to have a value of 1AC | + | |
| - | + | ||
| - | %Variables | + | |
| - | C = 1e-9:1e-10:20e-9; | + | |
| - | R = 1e3; | + | |
| - | w = 2*pi*40000; | + | |
| - | ZC = 1./(1j*w*C); | + | |
| - | Vin = 1; | + | |
| - | ic = zeros(1,length(ZC)); allocate space | + | |
| - | + | ||
| - | a) Label the currents in each mesh from left to right ia,ib, and ic. | + | |
| - | Use mesh current method to write a system of equations. | + | |
| - | + | ||
| - | System of Equations | + | |
| - | Vin = ia(...) + ib(...) + ic(...) | + | |
| - | 0 = ia(...) + ib(...) + ic(...) | + | |
| - | 0 = ia(...) + ib(...) + ic(...) | + | |
| - | + | ||
| - | Put the system of equations into matrix form. | + | |
| - | + | ||
| - | Matrices | + | |
| - | Impedances Currents A | + | |
| - | | (...) (...) (...) | * | ia | = | Vin | | + | |
| - | | (...) (...) (...) | * | ib | = | 0 | | + | |
| - | | (...) (...) (...) | * | ic | = | 0 | | + | |
| - | + | ||
| - | + | ||
| - | b) Solve for ic for every capacitor value. Remember that all | + | |
| - | three capacitors will have the same value. This means that | + | |
| - | you should have 191 different values of ic. | + | |
| - | + | ||
| - | %Solve for Currents: ia, ib, ic | + | |
| - | for m = 1:length(C) | + | |
| - | Impedances = [INSERT CODE HERE]; | + | |
| - | A = [Vin;0;0]; | + | |
| - | Currents = INSERT CODE HERE; | + | |
| - | ic(m) = Currents(3); | + | |
| - | end | + | |
| - | + | ||
| - | c) Calculate Vout for every value of ic. | + | |
| - | d) Calculate the phase shift of Vout in Reference to Vin. | + | |
| - | e) Plot the phase shift as a function of capacitance | + | |
| - | f) Question: Approximate the capacitor value that would create | + | |
| - | a phase shift of 180 degrees. | + | |
| - | </file> | + | |
| - | + | ||
| - | == Image == | + | |
| - | + | ||
| - | {{:240circuits:mt240_nr_9_9_1_mcmcomplex.png?300|}} | + | |
| - | + | ||
| - | == Template == | + | |
| - | + | ||
| - | {{:240matlab:ch9:mt240_9_9_1_t_meshcurrentmethodtemplate.m|}} | + | |
| - | + | ||
| - | == Solution Image == | + | |
| - | + | ||
| - | {{:240matlab:ch9:mt240_9_9_1_si_meshcurrentmethodsolutionimage.jpg?400|}} | + | |
| <ifauth @admin,@240ta> | <ifauth @admin,@240ta> | ||
| == Solution == | == Solution == | ||
| + | {{:240matlab:solutions:ch9:mt240_9_9_1_mesh_current_method.m|}} | ||
| + | </ifauth> | ||
| - | {{:240matlab:solutions:ch9:mt240_9_9_1_meshcurrentmethod.m|}} | + | <ifauth @admin,@240ta> |
| - | </ifauth> | + | |
| ===== Complex Power ===== | ===== Complex Power ===== | ||
| Line 520: | Line 282: | ||
| {{:240matlab:ch10:mt240_10_4_1_si2_complexpowersolutionimage2.jpg?400|}} | {{:240matlab:ch10:mt240_10_4_1_si2_complexpowersolutionimage2.jpg?400|}} | ||
| - | <ifauth @admin,@240ta> | + | |
| == Solution == | == Solution == | ||
| Line 526: | Line 288: | ||
| </ifauth> | </ifauth> | ||
| - | ===== Passive Filters ===== | + | ===== Complex Power ===== |
| - | ==== MT240.NR.14.4.1 ==== | + | ==== MT240.NR.10.4.2 ==== |
| + | {{:240matlab:ch10:mt240_10_4_2_complex_power.pdf|}} | ||
| - | <file> | ||
| - | MT240_14_4_1 Cross over network | ||
| - | Objective: Gain an understanding how you can use matlab to help you | + | <ifauth @admin,@240ta> |
| - | design lowpass, bandpass, and highpass filters. | + | == Solution == |
| - | functions to learn: log10, semilogx | + | {{:240matlab:solutions:ch10:mt240_10_4_2_complex_power.m|}} |
| + | </ifauth> | ||
| - | Introduction: A crossover network consists of a highpass, lowpass, and | ||
| - | bandpass filter. They are often used in stereo systems that separates | ||
| - | a signal into three signals (bass, treble, and midrange). You will design | ||
| - | a basic crossover network as depicted in the image below. | ||
| - | Exercise: Design a crossover network with the following specifications: | + | ===== Passive Filters ===== |
| - | | | Low pass | Bandpass | High pass | | + | ==== MT240.NR.14.4.1 ==== |
| - | |Lower cut off frequency | N/A | 250Hz | 2000Hz | | + | |
| - | |Upper cut off frequency | 250Hz | 2000Hz | N/A | | + | |
| - | a) For each filter design you will be calculating the transfer function | + | |
| - | of the voltage across each resistor. The equations should be simple | + | |
| - | voltage division as shown in the book. See chapter 14. Design your | + | |
| - | circuits choosing appropriate values for the capacitors and inductors. | + | |
| - | b) Find the magnitudes (|H(jw)|) for v1, v2, and v3 as a function of 'w' | + | |
| - | (frequency) with w being w = 0:10*2*pi:3e5*2*pi. Note that this is the | + | |
| - | transfer function (H(jw) = vout/vin) thus the amplitude of the input voltage | + | |
| - | source isn't needed in your calculations. | + | |
| - | 1) The midrange is a little more difficult so I provided you with the | + | |
| - | steps. | + | |
| - | a) Calculate the bandwidth. B = upper corner frequency - lower fc | + | |
| - | b) Solve for the inductor using the relationship B = R/L | + | |
| - | c) Solve for the capacitor value. | + | |
| - | c) Plot the magnitude in decibels vs the frequency(Hz) using a | + | |
| - | logarithmic scale. (use semilogx for this). | + | |
| - | d) How could you design a bandreject filter that rejects frequencies | + | |
| - | between 250Hz and 2000Hz? | + | |
| - | </file> | + | |
| - | == Image == | + | |
| - | {{:240circuits:hw13.png?400|}} | + | == Document == |
| - | + | {{:240matlab:ch14:mt240_14_4_1_crossover_network.pdf|}} | |
| - | == Template == | + | |
| - | + | ||
| - | {{:240matlab:ch14:mt240_14_4_1_t_crossover_networktemplate.m|}} | + | |
| - | + | ||
| - | == Solution Image == | + | |
| - | + | ||
| - | {{:240matlab:ch14:mt240_14_4_1_si_crossover_networksolutionimage.jpg?400|}} | + | |
| <ifauth @admin,@240ta> | <ifauth @admin,@240ta> | ||