ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE

Size: px
Start display at page:

Download "ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE"

Transcription

1 Version of 33 BEFORE YOU BEGIN PREREQUISITE LABS Resistive Circuits EXPECTED KNOWLEDGE ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE Ohm's Law: v = ir Node Voltage and Mesh Current Methods of Circuit Analysis Maximum Power Transfer Theorem EQUIPMENT Intel PC PSpice Version 9.1 or later MATERIALS Formatted ¼ floppy diskette (optional) OBJECTIVES After completing this lab you should know how to: Create and read SPICE/PSPICE net list and output files. Draw circuit schematics using OrCAD Capture CIS. Use Probe to plot outputs from PSpice Simulations. INTRODUCTION SPICE, an acronym for Simulation Program with Integrated Circuit Emphasis, was created in the 1970s at the University of California at Berkeley. The program, designed to simulate circuits, is used to analyze and design integrated circuits as well as other types of electronic circuits. Although SPICE is public domain software, many commercial versions are available, such as PSPICE from OrCAD and HSPICE from Avant. Many industries use SPICE, or some commercial version of SPICE, and expect electrical and computer engineers to be familiar with simulation software. PRELAB Answer Questions 1 4.

2 Version of 33 GETTING STARTED Log onto the NT network. Start OrCAD PSpice A/D by selecting Start Programs Orcad Family Release 9.2 Lite Edition PSpice AD Lite Edition. You should see a window similar to the window in Figure 1. Figure 1 shows PSpice with the netlist for Figure 2 opened. You will need to type in the netlist shown in Figure 1 soon after the netlist is explained in the following section. NETLIST A netlist is a description of the circuit that is typed in an ASCII text file and interpreted by SPICE. It may also be referred to as the source file. Each line in the netlist describes an element of the circuit. Spice is not case sensitive, which means that R1 and r1 are the same element. Figure 1. OrCAD PSpice A/D.

3 Version of k Ω R V Vs 20 k Ω R2 5 kω R3 0 Figure 2. Circuit 1 - current and voltage divider. Scale Factors Scale factors are nothing more than the standard metric prefixes and are listed in Table 1. Title Line Name Symbol Value femto f pico p nano n 10-9 micro u 10-6 milli m 10-3 kilo k 10 3 mega meg 10 6 giga g 10 9 tera t Table 1. Spice Scale Factors. The first line in a net list is the title line. This line is used by SPICE as a label. The title line is mandatory; the first line of the netlist will be interpreted as the title line even if the line is an element declaration. Independent Voltage and Current Sources The syntax for independent sources is <name> <node1> <node2> <type> <value> The name for voltage sources must begin with a V, and for current sources name must begin with an I. For voltage sources, node1 and node2 represent the positive and negative terminals respectively. For current sources, the current flows from node1 to node2. The type can be DC, AC, or TRANS. These specify DC sources, AC sources, and transient sources respectively. The

4 Version of 33 value is the value of the source, such as 5 V or 1 ma. The values can also be entered without units. Each element in the statements must be separated with a space or a tab. When using scale factors, do not enter a space between the value and the factor. Answer Question 5. Resistors, Capacitors and Inductors The syntax for resistors, capacitors and inductors is <name> <node1> <node2> <value> The name for resistors, capacitors and inductors must begin with R, C or L, respectively. Node1 and node2 are the nodes the element is connected to. It does not matter how the element is connected between node1 and node2. Voltage is referenced with node1 being the positive terminal and node2 as the negative terminal. Current is defined as flowing from node1 to node2. This is the same technique used to describe the voltage and current for independent sources. Answer Question 6. Ground Every circuit needs a reference node, or ground. This is represent in PSpice as node 0 (zero). Every circuit you simulate will have to have a reference node. With out it you will receive an error that your nodes are floating when you simulate the circuit. The.END Statement The.END statement signals the end of the netlist file. Entering the Netlist Now you will enter the netlist shown in Figure Selecting File New Text File. 2. Type in the netlist line for line as shown in Figure After the netlist has been entered, save the file with the extension.cir (for circuit), for example, CIRCUIT1.CIR. Running the Simulation After the netlist has been entered and saved, it is ready to simulate. One unfortunate difficulty with OrCAD PSpice A/D is that the first time a netlist is entered and saved, the file must be reopened by PSpice A/D.

5 Version of Reopen your circuit file. From the toolbar menu, select File Open, and select the file from the Windows File Open dialog box. 5. Run the netlist by selecting Simulation Run from the toolbar menu. The lower left box of the PSpice A/D screen displays the status of the simulation. If all went well you will see the message "Simulation Complete." If you received an error, double check your netlist and run the simulation again. SIMULATION OUTPUT FILE PSpice A/D saves the results of the simulation in a file with same name as the circuit file but with the extension.out. 6. View the results of the simulation by selecting View Output File from the toolbar menu. You can scroll up and down to view the results of the simulation (see Figure 3). Circuit Description The first part of the output file shows the netlist from CIRCUIT.CIR. The original netlist is included in the output so that the description of the circuit will always remain with the results.

6 Version of 33 Simulation Results Figure 3. Simulation Results for Circuit 1. The actual results of the simulation are located at the end of the output file. By default, PSpice calculates the following values: The voltage at each node with respect to ground. The current through each voltage source. The total power dissipated in the circuit. Answer Question 7. FINDING NORTON AND THEVENIN EQUIVALENTS In the next example you will use PSpice to find the Norton and Thevenin equivalents of the circuit in Figure 4 as seen by the terminals a and b k Ω k Ω 4 25 k Ω 5 R1 a b R2 R3 75 V V1 5 kω R4 25 kω R5 V2 25 V R k Ω 6 Figure 4. Circuit 2 In order to determine the Norton and Thevenin equivalents, we need to find the open circuit voltage potential between terminals a and b and the short circuit current between terminals a and b. There are two ways to do this. The first is with the resistors and the second is with capacitors and inductors. Using resistors, to find the open circuit voltage potential between terminals a and b we would place a resistor with a very high impedance (with respect to the resistors in the circuit) across the terminals a and b. To simulate short circuit, a resistor with very low impedance would be used. The method you will use in this lab will be with capacitors and inductors. Figure 5 shows the netlist for circuit 2. Before you type in the netlist for circuit 2, some new statements need to be explained.

7 Version of 33 The Remark As with most programming languages, PSpice also has a comment or remark command, which is the asterisk (*). PSpice ignores every thing on the line after the asterisk. In the netlist for Circuit 2, you will see an asterisk before the statements that deal with inductors. In order to find the Norton and Thevenin equivalents, we will need to run two separate simulations: one with an open circuit and one with a short circuit. To avoid writing two netlists, you should comment out the statements that will not be used in each simulation. The.DC Statement The.DC statement is used to sweep an independent source (increase the voltage or current of the source at a constant rate). The syntax for the.dc statement is.dc <name> <initial value> <final value> <step> The name parameter is the name of the source to sweep. The initial value, finial value and step represent the staring sweep value, the final sweep value and the size of the increment. The.DC statement overrides any value specified by the source description. In our example, V1 is swept from 75 V to 75 V with a step of 1. This is the same as declaring V1 with a value of 75 V. The.DC is needed by the.print statement. It does not matter which source is swept. In this example the source is only swept because without the.dc statement, the.print statement will be ignored.

8 Version of 33 Figure 5. Netlist for Circuit 2. The.PRINT Statement The.PRINT statement is used to find specific values. By default, PSpice finds the voltage at each node with respect to ground. To find the voltage potential between two nodes, or the current through an element, the.print statement may be used. The syntax for the.print statement is.print <type> <output variables> The type of parameter describes the type of analysis to perform AC, DC or TRANS (transient). The output variables list the measurements to print in the output file, as in V(1,2) for the voltage potential between nodes 1 and 2, or I(R2) for the current through resistor 2. When using the.print statement, only the values specified by the.print statement appear in the output file. All the node voltages, as in the first example, are omitted.

9 Version of 33 Answer Question 8. Determining Open Circuit Voltage In order to find the open circuit voltage across the terminals a and b, we will place a capacitor between nodes 2 and 3 of circuit 2. Recall that a capacitor acts like an open circuit when the circuit is at steady state. In our example, we chose an arbitrary value for the capacitor. Type in the netlist from Figure 5 and run the simulation. Answer Question 9. You may wonder why the circuit needs a capacitor at all. 7. Remark out the line declaring the capacitor with an asterisk and simulate the file again. Answer Question 10. Determining the Short Circuit Current To determine the short circuit current across the terminal of a and b, an inductor is placed between nodes 2 and 3. Unlike a capacitor, an inductor acts like a short circuit when the circuit is at steady state. 8. Remove the asterisks in front of the statements that refer to the inductor L1. 9. Insert asterisks in front of the statements that refer to the capacitor C Run the simulation again. Answer Question 11. OPERATIONAL AMPLIFIERS An operational amplifier amplifies a given signal with a gain of A. Even if you have not yet studied operational amplifiers you should still be able to understand their operation by the model of an operational amplifier given in Figure 6. You can model an operational amplifier with a dependent voltage source.

10 Version of 33 + Vn + Vp Ri A(Vp-Vn) Ro + Vo Figure 6. Model of an operational amplifier. Dependent Sources Voltage Controlled Sources Voltage Controlled sources are specified by the following statement <name> <node1> <node2> <cnode1> <cnode2> <gain> For voltage controlled voltage sources, name must begin with the letter E and for voltage controlled current sources name must begin with the letter G. Voltage controlled sources are connected at node1 and node2 just like their independent counterparts. The control nodes, cnode1 and cnode2, are the nodes whose voltage difference controls the source, where cnode1 represents the positive terminal. The gain parameter is the value that the controlling voltage is multiplied by. Answer Question 12. Current Controlled Sources The following statement specifies current controlled sources <name> <node1> <node2> <control> <gain> For current controlled current sources, name must begin with the letter F and for current controlled voltage sources name must begin with the letter H. Current controlled sources are connected to node1 and node2 just like their independent counterparts. However, current controlled sources must be controlled by a zero valued voltage source, or dummy voltage. The dummy voltage source is needed because SPICE only calculates the current through a voltage

11 Version of 33 source. The dummy source is used to determine the current through that particular branch of the circuit. The dummy voltage source is placed in the path of the controlling current, using the passive sign convention. The gain parameter is the value that the controlling current is multiplied by. Answer Question 13. AN INVERTING OPERATIONAL AMPLIFIER Figure 7 shows a schematic of a circuit with an operational amplifier. Figure 8 shows the same circuit, but uses the model of an operational amplifier. The circuit in Figure 8 will be the circuit that we will simulate. 25 k Ω 10 k Ω R2 R1 5 V R3 5 kω Figure 7. An Inverting Operational amplifier. 25 kω R2 10 k Ω 75 k Ω R1 Ro 5 V Vn Ri 1 M Ω -100kVn Vo R3 5 k Ω Figure 8. Circuit 3 - model of an operational amplifier.

12 Version of 33 The operational amplifier shown in Figure 7 and Figure 8 is connected as an inverter, or inverting operational amplifier. The output voltage V O is approximately related to the input voltage V N by the equation: V R = 2 o V N R1 Using this equation, the output voltage from Circuit 3 is calculated as follows: V V o O 25k = 5V 10k = 12.5V The netlist for Circuit 3 is shown in Figure 9. Type in the netlist for Circuit 3 and run the simulation. Answer Question 14. Figure 9. Netlist for Circuit 3.

13 Version of 33 EXERCISE Figure 10 shows a circuit with a current source and one resistor in series with two parallel resistors. Answer Question kω R1 2 1 A Vs 10 kω R2 25 kω R3 0 Figure 10. Circuit 4 - current divider. To close PSpice, from the toolbar choose File Exit. 11. Close PSpice. ORCAD CAPTURE CIS OrCAD has a capture utility that will generate a PSpice netlist from a schematic drawn by the user. To start OrCAD Capture CIS, if you have not already, log on to the NT network. Click on Start Programs Orcad Family Release 9.2 Lite Edition Capture CIS Lite Edition. CREATING A PROJECT You will start by drawing the schematic for the circuit in Figure 11. After the schematic is created, you will use OrCAD Capture CIS and OrCAD PSpice to determine the value of the variable resistor when the maximum power is transferred to it. In order to draw a schematic, you must first create a project. 12. Select File New Project. You will be presented with the New Project Wizard, as shown in Figure In the Name dialog box, enter Maximum Power Transfer, as shown. 14. Select Analog or Mixed-Signal Circuit Wizard. 15. In the Location dialog box, type in the location where you want the project to be saved. When you are finished, click OK.

14 Version of 33 R1 R2 R3 15 V kω 25 kω 15 kω 120 kω R5 45 kω R6 10 kω R7 Rvar R4 25 kω Figure 11. Circuit 5: Maximum Power Transfer. Figure 12. New Project Window. 16. Next, you will be prompted with the Create PSpice Project dialog box (Figure 13). Select Create a blank project

15 Version of 33 Figure 13. Create PSpice Project Dialog Screen. Your screen should now look like that of Figure 14. You will notice two windows. The one in the Project Manager is in the upper right corner and has the name of the project in the title bar. The second window is titled SCHEMATIC1 and is where the schematic is drawn. Figure 14. OrCAD Capture CIS.

16 Version of 33 MAXIMUM POWER TRANSFER Placing Parts 17. To place parts in the schematic, from the tool bar click Place Part. You will see a dialog box like the one in Figure 15, except you will not have all the libraries loaded. The only library you should see is Design Cache. The Design Cache is a list of all the parts you have used so far in your design. 18. Click on the Add Library button and add the libraries shown in Figure 15. Voltage and Current Sources Voltage and current sources are found in the Source Library. 19. Select the Source Library. 20. To select the voltage source for Circuit 5 scroll through the parts until you see VDC, as shown in Figure 15. Figure 15. Place Part Dialog Box for VDC. 21. After the proper part has been selected, click OK. 22. To place the DC voltage source on the schematic, move the cursor to where you want the part to be and press the left mouse button. 23. After you place the part, press the right mouse button and select End Mode.

17 Version of To change the voltage supply from 0 V to 15 V, highlight the value of the voltage supply ("0Vdc") and double click on it. This should open the Display Properties dialog box. 25. Change the default value of 0V to 15V. The "V" and the "dc" can be omitted, however, if they are included, do not including any spaces in the Value dialog box. See Figure 16. Resistors, Inductors and Capacitors Figure 16. Display Properties for Vdc. Resistors, inductors and capacitors can be found in the Analog Library. To enter the resistors for your circuit, open the Place Parts dialog box, select the Analog Library, and scroll through the parts until you see the resistor (R). To place the resistors, move the cursor to where you want a resistor to be and press the left mouse button. Parts may be flipped horizontally or vertically. To flip a part, click the right mouse button and selecting Mirror Horizontally or Mirror Vertically. To rotate a part, click on the right mouse button and selected Rotate. This will rotate the highlighted part 90 counterclockwise. 26. Place all resistors on the schematic. Do not worry about spacing them properly. Elements may be moved after they are placed by highlighting them, and then dragging them to the desired location. OrCAD Capture CIS assumes that current always enters a resistor, inductor or capacitor at pin 1 and leaves at pin 2. By default, resistors, capacitors and inductors are oriented horizontally with pin 1 on the left. After one rotation, the element will be oriented vertically with pin 2 above pin 1. In order to define current going from the top to the bottom, the element must be rotated a total of three times. (See Figure 17.) Depending on how you want the current defined in an element, you may have to rotate the element 1, 2, or even 3 times.

18 Version of 33 Figure 17. Component Orientation. To help you determine which pin is which, you can display the pin value on the schematic. 27. Double click on one of the resistors. That element's Property Editor will be displayed. 28. On the bottom right of the Property Editor window, click on the tab marked "Pins." 29. Highlight the cells under the spreadsheet heading "Number". 30. Click on Display. 31. In the dialog box that appears, select "Value Only" and then click on OK. 32. Close the Property Editor window. The element's pin numbers should now be displayed on the schematic. To remove the pin numbers, highlight them individually, click the right mouse button, and select "Delete" from the popup menu. After all of the resistors have been placed, you will need to change their values. By default, the value of each resistor is 1 kω. To change the value of a resistor, or any other element, double click on the value you want to change. This will bring up the Display Properties dialog box. In the box labeled Value, type in the appropriate value of the resistor. The same scalar suffixes in Table 1 may also be used. Remember not to use any spaces when editing property values.

19 Version of Change all the resistor values except for the variable resistor. Your schematic should start to look like the one in Figure 18 without the wiring. Creating a Variable Resistor Figure 18. Schematic for Circuit 5: Maximum Power Transfer. The next step is to set up the variable resistor to sweep through a given set of values. We want to select a set of values that will encompass the Thevenin equivalent resistance of the circuit. The values that we will use will be between 1 and 50 kω. To distinguish the variable resistor from the other resistors, we will change the name of the resistor to Rvar. 34. Double click on the label of the right-most resistor. 35. When the Display Properties box appears, type Rvar in the box labeled Value without the quotes. 36. Click on OK.

20 Version of 33 In order to sweep Rvar through a set of values, we need to create a global parameter. A global parameter can be given a specific value, or a set of values. Any element in the circuit can have the global parameter as its value, as you will soon see. 37. From the toolbar, select Place Part, and choose the SPECIAL library. 38. Scroll through the parts until you find the part PARAM. 39. Select PARAM and place it on the schematic next to Rvar. 40. Then click the right mouse button and select End Mode or press the escape key. Next, a variable will need to be assigned to the parameter. 41. Double click on the parameter to bring up the Property Editor. 42. In the Property Editor, click on New to add a new item to the spreadsheet. 43. When the Add New Property dialog box appears, type in Resistance and click on OK. 44. In the cell below the new property heading of Resistance, enter a value of your choice. This is a required field, but since the parameter will be swept, the value in this field will be ignored. 45. To display the value of the new property, highlight the cell, click on Display, and select Name and Value, then click on OK. 46. Close the Property Editor window. Now we need to assign the value of the parameter to the variable resistor. 47. Double click on the current value of the variable resistor to bring up the Display Properties dialog box. 48. In the box marked Value, type in {Resistance} making sure to include the curly brackets. The curly brackets tells the capture utility that this is a parameter value. When finished click on OK.

21 Version of 33 Ground Figure 19. Property Editor for Parameter. Just like the netlists you created earlier, the schematics created with the capture utility also needs a reference ground. 49. From the toolbar select Place Ground, and from the part list select GND 50. In the Name text box change the name from GND to 0 (zero) to indicate that it is the reference node. If you don not change the name to 0 you will get an error stating that your nodes are floating when you simulate the circuit. 51. Place the ground to the left of the 25 kω resistor. 52. End the mode. Wiring After all the elements are in place, you will need to wire them together. Do this now by selecting Place Wire from the toolbar. To place a wire, put the crosshairs over the pin connection you want to wire, press and hold the left mouse button and move the cross hairs to the pin of the part you want to wire together. When a valid connection is made, you will see a red dot as shown in Figure 20. When you see the red dot, release the left mouse button.

22 Version of Wire all the elements together at this time. Be patient and do not rush yourself. Wiring is a relatively simple task, but it is also one that requires some practice. You may find that it helps to zoom in on the elements you are trying to wire. When you are finished, your schematic should be very similar to the one in Figure 18. Figure 20. Valid Wire Connection. Creating a Simulation Profile After all the parts have been placed and wired together, the final step before simulating the circuit is creating a simulation profile. The simulation profile tells PSpice what type of simulation to perform. Because of the variable resistor in Circuit 5, you will be performing a DC sweep analysis. 54. From the toolbar menu, select PSpice New Simulation Profile. 55. In the dialog box that appears, type in Maximum Power Transfer and click CREATE. 56. This will bring up the Simulation Settings dialog box (Figure 21). By default, the analysis type is Time Domain (transient). Change this value to DC Sweep. 57. Fill in the rest of the settings as shown in Figure 21.

23 Version of When finished, click on OK. Title Block Figure 21. Simulation Settings - Maximum Power Transfer. In the bottom right of every schematic is a title block. This is where your name, along with a description of the schematic, is entered. 59. Move to the title block and fill in the information as shown in Figure 22.

24 Version of 33 Simulating the Circuit Figure 22. The title block. After all the parts have been placed and wired, and all values have been changed, the circuit is ready to simulate. This would be a good time to save your work. 60. To simulate the circuit, from the toolbar select PSpice Run. When the circuit is simulated, the OrCAD PSpice opens. If the circuit was properly simulated, the PSpice window will display a blank plot. If there were errors in the simulation, PSpice will automatically display the output file, which will list the errors that occurred. If there were errors, go back to the schematic and double check your work. When you are ready, run the simulation again. Plotting the Maximum Power Transferred Notice that the abscissa is in the range 0 to 50 k, which corresponds to the values of our parameter sweep. Next we would like to plot the power absorbed by the variable resistor. From the PSpice toolbar, select Trace Add Trace. This will bring up the Add Traces dialog box as shown in Figure 23.

25 Version of 33 The window is broken down into two major sections. On the left are the data from the simulation. These include the current through the elements (I(R1), I(Rvar)) and the voltage at each node and element pin (V(N00021), V(R4:1), V(R4:2), ). On the left are the operations that can be performed on the data, from simple arithmetic to exponential and trigonometric functions. The values to plot are specified at the bottom in the Trace Expression dialog box. Answer Question 16. Figure 23. Add Traces Dialog Box. To plot your answer from Question 13, enter it in the Trace Expression dialog box and click OK. A plot should appear in the PSpice. If your expression was correct, your plot should look similar to the plot in Figure 24. If it does not match the curve in Figure 24, double check the Trace expression, which can be found below the abscissa of the plot.

26 Version of 33 Figure 24. Plot of Maximum Power Transferred Curve. Reading Measurements from the Curve Measurements can be taken from the curve to determine the Thevenin equivalent resistance of the circuit and the power dissipated by the variable resistor at any given resistance value. Even though these measurements can be take directly from the plot, much accurate readings can be made with the cursors. 61. To display the cursors select Trace Cursor Display. A small dialog box labeled Probe Cursor is displayed which shows the position of each cursor and the difference between cursor positions. The left mouse button is used to move cursor A1. Just click and hold anywhere on the screen to move the cursor. When the cursor is in the desired place, release the mouse button. Move the cursor back and forth on the plot. Notice how the cursor stays on the curve. The right mouse button in used in the same manor to move cursor A2. Answer Questions Printing Print both the schematic and the plot and turn them in with your lab report.

27 Version of Make sure your name and the name of the schematic are listed in the title block of the schematic. To print the schematic, switch to the Capture CIS window, then select File Print. 63. In the Print dialog box, make sure the proper printer is selected. 64. Click on Setup and check Landscape and then click OK to close the setup dialog box. 65. Click on OK to print the schematic. 66. To print the plot, switch to the PSpice window and select File Print. 67. Make sure the proper printer is selected. 68. Click on Page Setup and then on Header. 69. Delete what is in the Center box and replace it with your name. 70. Click OK to close the Header dialog box, and then click OK to close the Page Setup dialog box. 71. From the Print dialog box, click on OK to print the plot. Saving To save the project, switch to OrCAD Capture CIS, activate the Project Manager and then choose File Save from the toolbar menu. To close the project choose File Close. OPERATIONAL AMPLIFIERS The next circuit that you will draw will be the inverting operational amplifier shown in Figure Create a new project and title it Operational Amplifier Model Draw the schematic as it is shown in Figure 25, omitting the independent and dependent voltage sources for the moment.

28 Version of 33 Figure 25. Schematic for Operational amplifier Model Place a VSRC voltage source from the SOURCE library as the independent voltage supply, as shown in Figure 26.

29 Version of 33 Figure 26. Place Part for VSRC. You will notice that we changed the part for the voltage supply from VDC to VSRC (Figure 26). By default, VSRC shows values for DC, AC, and TRAN (transient). 75. Since TRAN will not be used, delete it from the schematic. 76. AC will not be used either. Set its value to 0 V. To change the value of AC, double click on it to bring up the Display Properties dialog box. 77. Change the value from 1Vac to Check Do Not Display in the Display Properties dialog box. 79. Click OK to close the dialog box. 80. To change the DC value, double click on it and change the value to 5 and then click OK. 81. Change the value for the resistors as you did in the Maximum Power Transfer exercise. Dependent Sources OrCAD Capture CIS also has part models for dependent sources (Figure 27) and are found in the ANALOG library. The part names for independent sources start with the same letter as their PSpice counterpart. Each part has four pins: two for the outputs of the source and two to measure the controlling value. The two output pins are determined by the symbol for a voltage or current source, and are connected the to the circuit the same way as independent sources are. For voltage controlled sources, the controlling pins are connect in parallel to the nodes whose voltage difference controls the source, where the plus sign presents the positive terminal or node.

30 Version of 33 For current controlled sources, the controlling pins are connected in series with the current that controls the source, with the current leaving the pin at the arrowhead. Figure 27. Dependent Sources. 82. Place a voltage controlled voltage source in the schematic as shown (Figure 25). 83. After the dependent source has been placed, the gain needs to be set. To set the gain, double click on the part to bring up the Property Editor window. 84. In the cell with the heading GAIN, type in the value 100k, and close the window. The circuit is almost ready to run. Simulation Profile The final step is to create the Simulation Profile. 85. From the toolbar, choose PSpice New Simulation Profile. 86. For the analysis type, choose Bias Point and then click OK. 87. Run the simulation. When the circuit is simulated, OrCAD PSpice opens.

31 Version of 33 Notice that there is no empty plot this time. PSpice will only open with an empty plot if one or more of the values from the simulation varies. If the circuit was properly simulated, the PSpice window will display a blank window. If there were errors in the simulation, PSpice will automatically display the output file, which will list the errors that occurred. If there were errors, go back to the schematic and double check your work. Once you have made all necessary corrections, run the simulation again. Answer Question After the simulation is complete, save and print a copy of your project. Remember to fill in the title block before you print the schematic. USING MODELS Operational amplifiers are common devices, common enough that you would not want to model your own in PSpice every time you needed to simulate a circuit. The OrCAD Capture CIS has many devices, such as operational amplifiers, that are modeled and can be placed in the schematic. Even though the demo version of OrCAD Capture CIS is limited, it does have models of operational amplifiers in its EVAL library. Figure 28 shows the schematic for Circuit 3 (Figure 7 and Figure 8). The model is actually a visual representation of a PSpice netlist for a ua741 operational amplifier. As explained earlier, the netlist is a text description of a circuit. The netlist for the ua741, which is partially shown in Figure 29, is a detailed description of a realistic operational amplifier.

32 Version of 33 Figure 28. Shcematic with Operational Amplifier Model ua741. There are seven pins on the model of the ua741 operational amplifier. For now, pin 1 and pin 5 can be ignored. Pin 2 represents the inverting input terminal and pin 3 represents the noninverting input terminal. VCC+ and VCC- (pin7 and pin 4 respectively) determine the upper and lower limits of the output voltage. If you look to the right of the main schematic in Figure 28, you will see where VCC+ and VCC- are defined. The double arrow symbol is called an off page connector. Defining the upper and lower limits in this manner helps to keep the schematic organized and easier to read. Labeling two or more nodes with the same off page connector is the equivalent of wiring the nodes together. You will also notice an off page connector labeled Out at the output node of the operational amplifier (pin 6). This was added to make it easier to read the voltage output from the operational amplifier in the simulation output file. The voltage potential at the off page connectors (with respected to ground) is printed in the simulation output file, along with the node voltages.

33 Version of 33 Figure 29. Netlist for ua741 Operational amplifier. Another difference is that all the ground nodes are not wired together. Instead a ground is placed at the bottom of each branch; each ground is a visual representation of the same reference node. 89. Create the schematic shown in Figure 28. Use the ua741 operational amplifier model form the EVAL library. When creating the new project, remember to add the EVAL library. Remember to fill out the title block of the schematic. 90. After the circuit has been entered, simulate the circuit using bias point analysis. Answer Questions To close OrCAD Capture CIS, from the toolbar select File Exit. If you have not done so, you will be prompted to save your work. 91. Close OrCAD Capture CIS.

Introduction to PSpice

Introduction to PSpice Electric Circuit I Lab Manual 4 Session # 5 Introduction to PSpice 1 PART A INTRODUCTION TO PSPICE Objective: The objective of this experiment is to be familiar with Pspice (learn how to connect circuits,

More information

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill Engineering 3821 Fall 2003 Pspice TUTORIAL 1 Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill 2 INTRODUCTION The PSpice program is a member of the SPICE (Simulation Program with Integrated Circuit

More information

PSPICE T UTORIAL P ART I: INTRODUCTION AND DC ANALYSIS. for the Orcad PSpice Release 9.2 Lite Edition

PSPICE T UTORIAL P ART I: INTRODUCTION AND DC ANALYSIS. for the Orcad PSpice Release 9.2 Lite Edition PSPICE T UTORIAL P ART I: INTRODUCTION AND DC ANALYSIS for the Orcad PSpice Release 9.2 Lite Edition INTRODUCTION The Simulation Program with Integrated Circuit Emphasis (SPICE) circuit simulation tool

More information

EE 210 Lab Exercise #3 Introduction to PSPICE

EE 210 Lab Exercise #3 Introduction to PSPICE EE 210 Lab Exercise #3 Introduction to PSPICE Appending 4 in your Textbook contains a short tutorial on PSPICE. Additional information, tutorials and a demo version of PSPICE can be found at the manufacturer

More information

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE Objective: To learn to use a circuit simulator package for plotting the response of a circuit in the time domain. Preliminary: Revise laboratory 8 to

More information

Introduction to LT Spice IV with Examples

Introduction to LT Spice IV with Examples Introduction to LT Spice IV with Examples 400D - Fall 2015 Purpose Part of Electronics & Control Division Technical Training Series by Nicholas Lombardo The purpose of this document is to give a basic

More information

A Brief Handout for Introduction to

A Brief Handout for Introduction to A Brief Handout for Introduction to Electric cal Engineering Course This handout is a compilation of PSPICE, A Brief Primer, Department of Electrical and Systems Engineering, University of Pennsylvania

More information

Introduction to OrCAD. Simulation Program With Integrated Circuits Emphasis.

Introduction to OrCAD. Simulation Program With Integrated Circuits Emphasis. Islamic University of Gaza Faculty of Engineering Electrical Engineering department Digital Electronics Lab (EELE 3121) Eng. Mohammed S. Jouda Eng. Amani S. abu reyala Experiment 1 Introduction to OrCAD

More information

Introduction to SwitcherCAD

Introduction to SwitcherCAD Introduction to SwitcherCAD 1 PREFACE 1.1 What is SwitcherCAD? SwitcherCAD III is a new Spice based program that was developed for modelling board level switching regulator systems. The program consists

More information

OrCAD PSpice - Tutorial. TA: 黃玉龍

OrCAD PSpice - Tutorial. TA: 黃玉龍 OrCAD PSpice - Tutorial TA: 黃玉龍 r9994320@ntu.edu.tw Outline 2 Introduction Preparation Schematic Simulation Conclusion Introduction 3 OrCAD PSpice is developed by Cadence Analog circuit simulation tool

More information

LAB EXERCISE 3 FET Amplifier Design and Linear Analysis

LAB EXERCISE 3 FET Amplifier Design and Linear Analysis ADS 2012 Workspaces and Simulation Tools (v.1 Oct 2012) LAB EXERCISE 3 FET Amplifier Design and Linear Analysis Topics: More schematic capture, DC and AC simulation, more on libraries and cells, using

More information

LT Spice Getting Started Very Quickly. First Get the Latest Software!

LT Spice Getting Started Very Quickly. First Get the Latest Software! LT Spice Getting Started Very Quickly First Get the Latest Software! 1. After installing LT Spice, run it and check to make sure you have the latest version with respect to the latest version available

More information

Introduction to SPICE. Simulator of Electronic devices

Introduction to SPICE. Simulator of Electronic devices Introduction to SPICE Simulator of Electronic devices Main steps: Download Instalation Open OrCAD capture CIS Lite Create a circuit. Place parts. Design a Simulation Profile Run PSpice F11 View simulation

More information

Fig. 1-1 show the main window of Orcad Capture. Every project you work on will start from Orcad Capture. Fig. 1-1 Orcad Capture Main window.

Fig. 1-1 show the main window of Orcad Capture. Every project you work on will start from Orcad Capture. Fig. 1-1 Orcad Capture Main window. T. K. Ha PSpice Lecture #1 1 Objective: By the end of this lecture, it is hope that the students will have a rudimentary knowledge of using and running PSpice. The student will be able to draw and edit

More information

14:332:223 Principles of Electrical Engineering I Instructions for using PSPICE Tools Sharanya Chandrasekar February 1, 2006

14:332:223 Principles of Electrical Engineering I Instructions for using PSPICE Tools Sharanya Chandrasekar February 1, 2006 14:332:223 Principles of Electrical Engineering I Instructions for using PSPICE Tools Sharanya Chandrasekar February 1, 2006 1. Getting Started PSPICE is available on the ECE Computer labs in EE 103, DSV

More information

ENEE207 Electric Circuits Lab Manual

ENEE207 Electric Circuits Lab Manual ENEE207 Electric Circuits Lab Manual Department of Engineering, Physical & Computer Sciences Montgomery College Version 3 Copyright Lan Xiang (Do not distribute without permission) 1 TABLE OF CONTENTS

More information

Since transmission lines can be modeled using PSpice, you can do your analysis by downloading the student version of this excellent program.

Since transmission lines can be modeled using PSpice, you can do your analysis by downloading the student version of this excellent program. PSpice Analysis Since transmission lines can be modeled using PSpice, you can do your analysis by downloading the student version of this excellent program. PSpice can be downloaded from the following

More information

Week 1: Preparing for PSpice Simulations

Week 1: Preparing for PSpice Simulations Week 1: Preparing for PSpice Simulations Week 1 is composed of two experiments from the lab manual Experiment 1: Breadboard Basics Experiment 3: Ohm s Law Separate lectures on Modules will be posted for

More information

FACULTY OF ENGINEERING LAB SHEET

FACULTY OF ENGINEERING LAB SHEET FACULTY OF ENGINEERING LAB SHEET CIRCUITS AND SIGNALS EEL 2186 TRIMESTER 1 (218/219) -Circuit analysis using ORCAD PSpice *Note: You will be given an assessment sheet during the lab session to be completed

More information

Chapter 12: Electronic Circuit Simulation and Layout Software

Chapter 12: Electronic Circuit Simulation and Layout Software Chapter 12: Electronic Circuit Simulation and Layout Software In this chapter, we introduce the use of analog circuit simulation software and circuit layout software. I. Introduction So far we have designed

More information

Background Theory and Simulation Practice

Background Theory and Simulation Practice CAD and Simulation Objectives Experiment Topic: CAD and Simulation PSpice 9.1 Student Version To obtain your free copy of the software and user s guide, go to Electronics Lab website ( http://www.electronics-lab.com/downloads/schematic/013/

More information

An Introductory Guide to Circuit Simulation using NI Multisim 12

An Introductory Guide to Circuit Simulation using NI Multisim 12 School of Engineering and Technology An Introductory Guide to Circuit Simulation using NI Multisim 12 This booklet belongs to: This document provides a brief overview and introductory tutorial for circuit

More information

Lab #2 First Order RC Circuits Week of 27 January 2015

Lab #2 First Order RC Circuits Week of 27 January 2015 ECE214: Electrical Circuits Laboratory Lab #2 First Order RC Circuits Week of 27 January 2015 1 Introduction In this lab you will investigate the magnitude and phase shift that occurs in an RC circuit

More information

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis All circuit simulation packages that use the Pspice engine allow users to do complex analysis that were once impossible to

More information

Using LTspice a Short Intro with Examples

Using LTspice a Short Intro with Examples Using LTspice a Short Intro with Examples LTspice, also called SwitcherCAD, is a powerful and easy to use schematic capture program and SPICE engine, which is a general-purpose circuit simulation program

More information

Experiment 2: Simulation of DC Resistive Circuits

Experiment 2: Simulation of DC Resistive Circuits Experiment 2: Simulation of DC Resistive Circuits Objectives: Simulate DC Resistive circuits using Orcad PSpice Software. Verify experimental and theoretically calculated results for a given resistive

More information

Electric Circuit Fall 2015 Pingqiang Zhou. ShanghaiTech University. School of Information Science and Technology. Professor Pingqiang Zhou

Electric Circuit Fall 2015 Pingqiang Zhou. ShanghaiTech University. School of Information Science and Technology. Professor Pingqiang Zhou ShanghaiTech University School of Information Science and Technology Professor Pingqiang Zhou LABORATORY 2 CAD Tools Guide Practical circuit design occurs in three stages: 1. Design of an appropriate circuit

More information

Introduction to Pspice

Introduction to Pspice 1. Objectives Introduction to Pspice The learning objectives for this laboratory are to give the students a brief introduction to using Pspice as a tool to analyze circuits and also to demonstrate the

More information

EXPERIMENT 9 Problem Solving: First-order Transient Circuits

EXPERIMENT 9 Problem Solving: First-order Transient Circuits EXPERIMENT 9 Problem Solving: First-order Transient Circuits I. Introduction In transient analyses, we determine voltages and currents as functions of time. Typically, the time dependence is demonstrated

More information

Laboratory #2 PSpice Analyses

Laboratory #2 PSpice Analyses Laboratory #2 PSpice Analyses I. Objectives 1. Know the development of SPICE. 2. Learn to install the PSpice software. 3. Learn to use the Capture CIS to draw circuit. 4. Learn to use the four analyses

More information

Xcircuit and Spice. February 26, 2007

Xcircuit and Spice. February 26, 2007 Xcircuit and Spice February 26, 2007 This week we are going to start with a new tool, namely Spice. Spice is a circuit simulator. The variant of spice we will use here is called Spice-Opus, and is a combined

More information

EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation

EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation Teacher: Robert Dick GSI: Shengshuo Lu Assigned: 5 September 2013 Due: 17 September 2013

More information

The analysis of the linear voltage regulators

The analysis of the linear voltage regulators The analysis of the linear voltage regulators 1. Theoretical aspects The voltage regulator is an electronic circuit which, ideally, it provides a constant output voltage. The value of the output voltage

More information

The default account setup for the class should allow you to run HSPICE without any further configuration. To verify this, type:

The default account setup for the class should allow you to run HSPICE without any further configuration. To verify this, type: UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences HW #1: Circuit Simulation NTU IC541CA (Spring 2004) 1 Objective The objective of this homework

More information

EECE Circuits and Signals: Biomedical Applications. Lab 3. Basic Instruments, Components and Circuits. Introduction to Spice and AC circuits

EECE Circuits and Signals: Biomedical Applications. Lab 3. Basic Instruments, Components and Circuits. Introduction to Spice and AC circuits EECE 2150 - Circuits and Signals: Biomedical Applications Lab 3 Basic Instruments, Components and Circuits. Introduction to Spice and AC circuits Introduction and Preamble: In this lab you will experiment

More information

Using LTSPICE to Analyze Circuits

Using LTSPICE to Analyze Circuits Using LTSPICE to Analyze Circuits Overview: LTSPICE is circuit simulation software that automatically constructs circuit equations using circuit element models (built in or downloadable). In its modern

More information

LTSpice Basic Tutorial

LTSpice Basic Tutorial Index: I. Opening LTSpice II. Drawing the circuit A. Making Sure You Have a GND B. Getting the Parts C. Placing the Parts D. Connecting the Circuit E. Changing the Name of the Part F. Changing the Value

More information

I1 19u 5V R11 1MEG IDC Q7 Q2N3904 Q2N3904. Figure 3.1 A scaled down 741 op amp used in this lab

I1 19u 5V R11 1MEG IDC Q7 Q2N3904 Q2N3904. Figure 3.1 A scaled down 741 op amp used in this lab Lab 3: 74 Op amp Purpose: The purpose of this laboratory is to become familiar with a two stage operational amplifier (op amp). Students will analyze the circuit manually and compare the results with SPICE.

More information

Microwave Circuit Design: Lab 5

Microwave Circuit Design: Lab 5 1. Introduction Microwave Circuit Design: Lab 5 This lab investigates how trade-offs between gain and noise figure affect the design of an amplifier. 2. Design Specifications IMN OMN 50 ohm source Low

More information

Lab 3: Very Brief Introduction to Micro-Cap SPICE

Lab 3: Very Brief Introduction to Micro-Cap SPICE Lab 3: Very Brief Introduction to Micro-Cap SPICE Starting Micro-Cap SPICE Micro-Cap SPICE is available on CoE machines under the Spectrum Software menu: Programs Spectrum Software Micro-Cap 10 Evaluation

More information

EELE 201 Circuits I. Fall 2013 (4 Credits)

EELE 201 Circuits I. Fall 2013 (4 Credits) EELE 201 Circuits I Instructor: Fall 2013 (4 Credits) Jim Becker 535 Cobleigh Hall 994-5988 Office hours: Monday 2:30-3:30 pm and Wednesday 3:30-4:30 pm or by appointment EMAIL: For EELE 201-related questions,

More information

FACULTY OF ENGINEERING LAB SHEET

FACULTY OF ENGINEERING LAB SHEET FACULTY OF ENGINEERING LAB SHEET CIRCUITS AND SIGNALS EEL 286 TRIMESTER (26/27) -Circuit analysis using ORCAD PSpice Experiment : Circuit analysis using ORCAD Pspice PRECAUTIONARY STEPS:. Read this experiment

More information

EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab. Prelab Part I: RC Circuit

EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab. Prelab Part I: RC Circuit EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab Prelab Part I: RC Circuit 1. Design a high pass filter (Fig. 1) which has a break point f b = 1 khz at 3dB below the midband level (the -3dB

More information

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Class #8: Experiment Diodes Part I

Class #8: Experiment Diodes Part I Class #8: Experiment Diodes Part I Purpose: The objective of this experiment is to become familiar with the properties and uses of diodes. We used a 1N914 diode in two previous experiments, but now we

More information

ELEC3106 Electronics. Lab 4: EMI simulations with SPICE. Objective. Material. Simulations

ELEC3106 Electronics. Lab 4: EMI simulations with SPICE. Objective. Material. Simulations ELEC3106 Electronics Lab 4: EMI simulations with SPICE Objective The objective of this laboratory session is to give the students a good understanding of the possibilities a circuit simulator (as SPICE)

More information

EE-3010 Lab # 5 Simulation of Operational Amplifier Circuits

EE-3010 Lab # 5 Simulation of Operational Amplifier Circuits EE-3010 Lab # 5 Simulation of Operational Amplifier Circuits Objectives Investigation of amplifier circuits containing operational amplifiers. (Note: This is a two-part lab and may be done in two consecutive

More information

ECE 220 Laboratory 3 Thevenin Equivalent Circuits, Constant Current Source, and Inverting Amplifier

ECE 220 Laboratory 3 Thevenin Equivalent Circuits, Constant Current Source, and Inverting Amplifier ECE 220 Laboratory 3 Thevenin Equivalent Circuits, Constant Current Source, and Inverting Amplifier Michael W. Marcellin The first portion of this document describes preparatory work to be completed in

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

LABORATORY 2: Bridge circuits, Superposition, Thevenin Circuits, and Amplifier Circuits

LABORATORY 2: Bridge circuits, Superposition, Thevenin Circuits, and Amplifier Circuits LABORATORY 2: Bridge circuits, Superposition, Thevenin Circuits, and Amplifier Circuits Note: If your partner is no longer in the class, please talk to the instructor. Material covered: Bridge circuits

More information

Electronics I LAB. Lab 1: Lab 1 : Introduction to PsPise

Electronics I LAB. Lab 1: Lab 1 : Introduction to PsPise Electronics I LAB Lab 1: Lab 1 : Introduction to PsPise 1-Introduction to PsPise : SPICE (Simulation Program for Integrated Circuits Emphasis.) is a po werful general purpo se analog and mixed-mode circuit

More information

Getting Started. with Easy Blue Print

Getting Started. with Easy Blue Print Getting Started with Easy Blue Print User Interface Overview Easy Blue Print is a simple drawing program that will allow you to create professional-looking 2D floor plan drawings. This guide covers the

More information

LABORATORY 3: Transient circuits, RC, RL step responses, 2 nd Order Circuits

LABORATORY 3: Transient circuits, RC, RL step responses, 2 nd Order Circuits LABORATORY 3: Transient circuits, RC, RL step responses, nd Order Circuits Note: If your partner is no longer in the class, please talk to the instructor. Material covered: RC circuits Integrators Differentiators

More information

A Short SPICE Tutorial

A Short SPICE Tutorial A Short SPICE Tutorial Kenneth H. Carpenter Department of Electrical and Computer Engineering Kanas State University September 15, 2003 - November 10, 2004 1 Introduction SPICE is an acronym for Simulation

More information

Experiment 1 Introduction to Simulink

Experiment 1 Introduction to Simulink 1 Experiment 1 Introduction to Simulink 1.1 Objective The objective of Experiment #1 is to familiarize the students with simulation of power electronic circuits in Matlab/Simulink environment. Please follow

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy EE320L Electronics I Laboratory Laboratory Exercise #6 Current-Voltage Characteristics of Electronic Devices By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las

More information

MultiSim and Analog Discovery 2 Manual

MultiSim and Analog Discovery 2 Manual MultiSim and Analog Discovery 2 Manual 1 MultiSim 1.1 Running Windows Programs Using Mac Obtain free Microsoft Windows from: http://software.tamu.edu Set up a Windows partition on your Mac: https://support.apple.com/en-us/ht204009

More information

Ansoft Designer Tutorial ECE 584 October, 2004

Ansoft Designer Tutorial ECE 584 October, 2004 Ansoft Designer Tutorial ECE 584 October, 2004 This tutorial will serve as an introduction to the Ansoft Designer Microwave CAD package by stepping through a simple design problem. Please note that there

More information

Introduction to NI Multisim & Ultiboard Software version 14.1

Introduction to NI Multisim & Ultiboard Software version 14.1 School of Engineering and Applied Science Electrical and Computer Engineering Department Introduction to NI Multisim & Ultiboard Software version 14.1 Dr. Amir Aslani August 2018 Parts Probes Tools Outline

More information

1. Hand Calculations (in a manner suitable for submission) For the circuit in Fig. 1 with f = 7.2 khz and a source vin () t 1.

1. Hand Calculations (in a manner suitable for submission) For the circuit in Fig. 1 with f = 7.2 khz and a source vin () t 1. Objectives The purpose of this laboratory project is to introduce to equipment, measurement techniques, and simulations commonly used in AC circuit analysis. In this laboratory session, each student will:

More information

A SPICE (PSPICE) Tutorial

A SPICE (PSPICE) Tutorial APPENDIX D A SPICE (PSPICE) Tutorial This is a brief summary of the SPICE, or its personal computer version PSPICE, electric circuit analysis program. SPICE is an acronym for simulation program with integrated-circuit

More information

SIMULATION WITH THE CUK TOPOLOGY ECE562: Power Electronics I COLORADO STATE UNIVERSITY. Modified in Fall 2011

SIMULATION WITH THE CUK TOPOLOGY ECE562: Power Electronics I COLORADO STATE UNIVERSITY. Modified in Fall 2011 SIMULATION WITH THE CUK TOPOLOGY ECE562: Power Electronics I COLORADO STATE UNIVERSITY Modified in Fall 2011 ECE 562 Cuk Converter (NL5 Simulation) Laboratory Page 1 PURPOSE: The purpose of this lab is

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering EE320L Electronics I Laboratory Laboratory Exercise #2 Basic Op-Amp Circuits By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las Vegas Objective: The purpose of

More information

Lab 4: Analysis of the Stereo Amplifier

Lab 4: Analysis of the Stereo Amplifier ECE 212 Spring 2010 Circuit Analysis II Names: Lab 4: Analysis of the Stereo Amplifier Objectives In this lab exercise you will use the power supply to power the stereo amplifier built in the previous

More information

DEPARTMENT OF ELECTRICAL ENGINEERING. Date: Assistant A2: PSpice 2 PC Pool

DEPARTMENT OF ELECTRICAL ENGINEERING. Date: Assistant A2: PSpice 2 PC Pool University of Applied Sciences Hamburg Group No : DEPARTMENT OF ELECTRICAL ENGINEERING Laboratory for Instrumentation and Measurement L1: in charge of the report PSpice 2 PC Pool Date: Assistant A2: Professor:

More information

BIO 365L Neurobiology Laboratory. Training Exercise 1: Introduction to the Computer Software: DataPro

BIO 365L Neurobiology Laboratory. Training Exercise 1: Introduction to the Computer Software: DataPro BIO 365L Neurobiology Laboratory Training Exercise 1: Introduction to the Computer Software: DataPro 1. Don t Panic. When you run DataPro, you will see a large number of windows, buttons, and boxes. In

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

SolidWorks 95 User s Guide

SolidWorks 95 User s Guide SolidWorks 95 User s Guide Disclaimer: The following User Guide was extracted from SolidWorks 95 Help files and was not originally distributed in this format. All content 1995, SolidWorks Corporation Contents

More information

Lab Reference Manual. ECEN 326 Electronic Circuits. Texas A&M University Department of Electrical and Computer Engineering

Lab Reference Manual. ECEN 326 Electronic Circuits. Texas A&M University Department of Electrical and Computer Engineering Lab Reference Manual ECEN 326 Electronic Circuits Texas A&M University Department of Electrical and Computer Engineering Contents 1. Circuit Analysis in PSpice 3 1.1 Transient and DC Analysis 3 1.2 Measuring

More information

RELEASE NOTES SIMETRIX 6.2 O VERVIEW WHAT S NEW GUI DVM SIMETRIX SIMULATOR SIMPLIS SIMULATOR SCRIPT LANGUAGE MODEL LIBRARY

RELEASE NOTES SIMETRIX 6.2 O VERVIEW WHAT S NEW GUI DVM SIMETRIX SIMULATOR SIMPLIS SIMULATOR SCRIPT LANGUAGE MODEL LIBRARY RELEASE NOTES SIMETRIX 6.2 O VERVIEW This document provides details of SIMetrix Version 6.2. WHAT S NEW GUI 1. Model selection by specification. Some types of library model can now be selected from their

More information

NGSPICE- Usage and Examples

NGSPICE- Usage and Examples NGSPICE- Usage and Examples Debapratim Ghosh deba21pratim@gmail.com Electronic Systems Group Department of Electrical Engineering Indian Institute of Technology Bombay February 2013 Debapratim Ghosh Dept.

More information

Integrators, differentiators, and simple filters

Integrators, differentiators, and simple filters BEE 233 Laboratory-4 Integrators, differentiators, and simple filters 1. Objectives Analyze and measure characteristics of circuits built with opamps. Design and test circuits with opamps. Plot gain vs.

More information

Lab 13 AC Circuit Measurements

Lab 13 AC Circuit Measurements Lab 13 AC Circuit Measurements Objectives concepts 1. what is impedance, really? 2. function generator and oscilloscope 3. RMS vs magnitude vs Peak-to-Peak voltage 4. phase between sinusoids skills 1.

More information

Example Application C H A P T E R 4. Contents

Example Application C H A P T E R 4. Contents C H A P T E R 4 Example Application This chapter provides an example application of how to perform steady flow water surface profile calculations with HEC-RAS. The user is taken through a step-by-step

More information

LAB 8: Activity P52: LRC Circuit

LAB 8: Activity P52: LRC Circuit LAB 8: Activity P52: LRC Circuit Equipment: Voltage Sensor 1 Multimeter 1 Patch Cords 2 AC/DC Electronics Lab (100 μf capacitor; 10 Ω resistor; Inductor Coil; Iron core; 5 inch wire lead) The purpose of

More information

OrCAD 17.2 Pspice Tutorial. High-Speed Circuits & Systems Lab. Yonsei University

OrCAD 17.2 Pspice Tutorial. High-Speed Circuits & Systems Lab. Yonsei University OrCAD 17.2 Pspice Tutorial High-Speed Circuits & Systems Lab. Yonsei University Installation Move to http://www.orcad.com/resources/orcaddownloads#demo Installation Click Download FREE-OrCAD 17.2 Lite

More information

CAD Orientation (Mechanical and Architectural CAD)

CAD Orientation (Mechanical and Architectural CAD) Design and Drafting Description This is an introductory computer aided design (CAD) activity designed to give students the foundational skills required to complete future lessons. Students will learn all

More information

Time-Varying Signals

Time-Varying Signals Time-Varying Signals Objective This lab gives a practical introduction to signals that varies with time using the components such as: 1. Arbitrary Function Generator 2. Oscilloscopes The grounding issues

More information

PSPICE A brief primer

PSPICE A brief primer PSPICE A brief primer Contents 1. Introduction 2. Use of PSpice with OrCAD Capture 2.1 Step 1: Creating the circuit in Capture 2.2 Step 2: Specifying the type of analysis and simulation BIAS or DC analysis

More information

Experiment 2 Introduction to PSpice

Experiment 2 Introduction to PSpice Experiment 2 Introduction to PSpice W.T. Yeung and R.T. Howe UC Berkeley EE 105 Fall 2004 1.0 Objective One of the CAD tools you will be using as a circuit designer is SPICE, a Berkeleydeveloped industry-standard

More information

Getting Started Guide

Getting Started Guide SOLIDWORKS Getting Started Guide SOLIDWORKS Electrical FIRST Robotics Edition Alexander Ouellet 1/2/2015 Table of Contents INTRODUCTION... 1 What is SOLIDWORKS Electrical?... Error! Bookmark not defined.

More information

Activity P52: LRC Circuit (Voltage Sensor)

Activity P52: LRC Circuit (Voltage Sensor) Activity P52: LRC Circuit (Voltage Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) AC circuits P52 LRC Circuit.DS (See end of activity) (See end of activity) Equipment Needed Qty

More information

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch Getting Started 1. Open up PTC Pro/Desktop by either double clicking the icon or through the Start button and in Programs. 2. Once Pro/Desktop is open select File > New > Design 3. Close the Pallet window

More information

ENGI0531 Lab 2 Tutorial

ENGI0531 Lab 2 Tutorial ENGI0531 Lab 2 Tutorial Transient Analysis, Operating Points, Parameters and other miscellany Lakehead University Greg Toombs Winter 2009 1. Constructing the Circuit Copying a Cell View Start Cadence as

More information

SIMULATIONS WITH THE BUCK-BOOST TOPOLOGY EE562: POWER ELECTRONICS I COLORADO STATE UNIVERSITY. Modified February 2006

SIMULATIONS WITH THE BUCK-BOOST TOPOLOGY EE562: POWER ELECTRONICS I COLORADO STATE UNIVERSITY. Modified February 2006 SIMULATIONS WITH THE BUCK-BOOST TOPOLOGY EE562: POWER ELECTRONICS I COLORADO STATE UNIVERSITY Modified February 2006 Page 1 of 13 PURPOSE: The purpose of this lab is to simulate the Buck-Boost converter

More information

Figure AC circuit to be analyzed.

Figure AC circuit to be analyzed. 7.2(1) MULTISIM DEMO 7.2: INTRODUCTION TO AC ANALYSIS In this section, we ll introduce AC Analysis in Multisim. This is perhaps one of the most useful Analyses that Multisim offers, and we ll use it in

More information

Lab 3: Circuit Simulation with PSPICE

Lab 3: Circuit Simulation with PSPICE Page 1 of 11 Laboratory Goals Introduce text-based PSPICE as a design tool Create transistor circuits using PSPICE Simulate output response for the designed circuits Introduce the Curve Tracer functionality.

More information

Experiment 8: An AC Circuit

Experiment 8: An AC Circuit Experiment 8: An AC Circuit PART ONE: AC Voltages. Set up this circuit. Use R = 500 Ω, L = 5.0 mh and C =.01 μf. A signal generator built into the interface provides the emf to run the circuit from Output

More information

An Introduction to Dimensioning Dimension Elements-

An Introduction to Dimensioning Dimension Elements- An Introduction to Dimensioning A precise drawing plotted to scale often does not convey enough information for builders to construct your design. Usually you add annotation showing object measurements

More information

Circuit Shop v December 2003 Copyright Cherrywood Systems. All rights reserved.

Circuit Shop v December 2003 Copyright Cherrywood Systems. All rights reserved. Circuit Shop v2.02 - December 2003 Copyright 1997-2003 Cherrywood Systems. All rights reserved. This manual is a printable version of Circuit Shop's help file. There are two parts to the manual: The first

More information

Name EET 1131 Lab #2 Oscilloscope and Multisim

Name EET 1131 Lab #2 Oscilloscope and Multisim Name EET 1131 Lab #2 Oscilloscope and Multisim Section 1. Oscilloscope Introduction Equipment and Components Safety glasses Logic probe ETS-7000 Digital-Analog Training System Fluke 45 Digital Multimeter

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

More information

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert This set of notes describes how to prepare a Bode plot using Mathcad. Follow these instructions to draw Bode plot for any transfer

More information

Department of Electrical & Computer Engineering Technology. EET 3086C Circuit Analysis Laboratory Experiments. Masood Ejaz

Department of Electrical & Computer Engineering Technology. EET 3086C Circuit Analysis Laboratory Experiments. Masood Ejaz Department of Electrical & Computer Engineering Technology EET 3086C Circuit Analysis Laboratory Experiments Masood Ejaz Experiment # 1 DC Measurements of a Resistive Circuit and Proof of Thevenin Theorem

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

Concept map Introduction E lectronics and Microelectronics Engineering have been highly strengthen by the micro and nanotechnology advances which have provided a wide range of applications and solutions

More information

House Design Tutorial

House Design Tutorial House Design Tutorial This House Design Tutorial shows you how to get started on a design project. The tutorials that follow continue with the same plan. When you are finished, you will have created a

More information

NETWORK THEORY (EE 223 F) LAB MANUAL

NETWORK THEORY (EE 223 F) LAB MANUAL NETWORK THEORY (EE 223 F) LAB MANUAL III SEMESTER Department Of Electrical & Electronics Engg Dronacharya College Of Engineering Khentawas, Gurgaon 123506 LIST OF EXPERIMENTS EXP NO. NAME OF THE EXPERIMENT

More information

This chapter shows various ways of creating matching networks by sweeping values and using optimization. Lab 5: Matching & Optimization

This chapter shows various ways of creating matching networks by sweeping values and using optimization. Lab 5: Matching & Optimization 5 This chapter shows various ways of creating matching networks by sweeping values and using optimization. Lab 5: Matching & Optimization OBJECTIVES Create an input match to the RF and an output match

More information

Chapter 6 Title Blocks

Chapter 6 Title Blocks Chapter 6 Title Blocks In previous exercises, every drawing started by creating a number of layers. This is time consuming and unnecessary. In this exercise, we will start a drawing by defining layers

More information