Free Essay

Logic Circuit

In:

Submitted By tjmanny
Words 2523
Pages 11
LOGIC GATES
In electronics, a logic gate is an idealized or physical device implementing a Boolean function; that is, it performs a logical operation on one or more logical inputs, and produces a single logical output. Depending on the context, the term may refer to an ideal logic gate, one that has for instance zero rise time and unlimited fan-out, or it may refer to a non-ideal physical device[1] (see Ideal and real op-amps for comparison).
Logic gates are primarily implemented using diodes or transistors acting as electronic switches, but can also be constructed using electromagnetic relays (relay logic), fluidic logic, pneumatic logic, optics, molecules, or even mechanical elements. With amplification, logic gates can be cascaded in the same way that Boolean functions can be composed, allowing the construction of a physical model of all of Boolean logic, and therefore, all of the algorithms and mathematics that can be described with Boolean logic.
Logic circuits include such devices as multiplexers, registers, arithmetic logic units (ALUs), and computer memory, all the way up through complete microprocessors, which may contain more than 100 million gates. In practice, the gates are made from field-effect transistors (FETs), particularly MOSFETs (metal–oxide–semiconductor field-effect transistors).
Compound logic gates AND-OR-Invert (AOI) and OR-AND-Invert (OAI) are often employed in circuit design because their construction using MOSFETs is simpler and more efficient than the sum of the individual gates.[2]
In reversible logic, Toffoli gates are used.
Electronic gates
Main article: Logic family
To build a functionally complete logic system, relays, valves (vacuum tubes), or transistors can be used. The simplest family of logic gates using bipolar transistors is called resistor-transistor logic (RTL). Unlike simple diode logic gates (which do not have a gain element), RTL gates can be cascaded indefinitely to produce more complex logic functions. RTL gates were used in early integrated circuits. For higher speed and better density, the resistors used in RTL were replaced by diodes resulting in diode-transistor logic (DTL). Transistor-transistor logic (TTL) then supplanted DTL. As integrated circuits became more complex, bipolar transistors were replaced with smaller field-effect transistors (MOSFETs); see PMOS and NMOS. To reduce power consumption still further, most contemporary chip implementations of digital systems now use CMOS logic. CMOS uses complementary (both n-channel and p-channel) MOSFET devices to achieve a high speed with low power dissipation.
For small-scale logic, designers now use prefabricated logic gates from families of devices such as the TTL 7400 series by Texas Instruments, the CMOS 4000 series by RCA, and their more recent descendants. Increasingly, these fixed-function logic gates are being replaced by programmable logic devices, which allow designers to pack a large number of mixed logic gates into a single integrated circuit. The field-programmable nature of programmable logic devices such as FPGAs has removed the 'hard' property of hardware; it is now possible to change the logic design of a hardware system by reprogramming some of its components, thus allowing the features or function of a hardware implementation of a logic system to be changed.
Electronic logic gates differ significantly from their relay-and-switch equivalents. They are much faster, consume much less power, and are much smaller (all by a factor of a million or more in most cases). Also, there is a fundamental structural difference. The switch circuit creates a continuous metallic path for current to flow (in either direction) between its input and its output. The semiconductor logic gate, on the other hand, acts as a high-gain voltage amplifier, which sinks a tiny current at its input and produces a low-impedance voltage at its output. It is not possible for current to flow between the output and the input of a semiconductor logic gate.
Another important advantage of standardized integrated circuit logic families, such as the 7400 and 4000 families, is that they can be cascaded. This means that the output of one gate can be wired to the inputs of one or several other gates, and so on. Systems with varying degrees of complexity can be built without great concern of the designer for the internal workings of the gates, provided the limitations of each integrated circuit are considered.
The output of one gate can only drive a finite number of inputs to other gates, a number called the 'fanout limit'. Also, there is always a delay, called the 'propagation delay', from a change in input of a gate to the corresponding change in its output. When gates are cascaded, the total propagation delay is approximately the sum of the individual delays, an effect which can become a problem in high-speed circuits. Additional delay can be caused when a large number of inputs are connected to an output, due to the distributed capacitance of all the inputs and wiring and the finite amount of current that each output can provide.
Symbols

A synchronous 4-bit up/down decade counter symbol (74LS192) in accordance with ANSI/IEEE Std. 91-1984 and IEC Publication 60617-12.
There are two sets of symbols for elementary logic gates in common use, both defined in ANSI/IEEE Std 91-1984 and its supplement ANSI/IEEE Std 91a-1991. The "distinctive shape" set, based on traditional schematics, is used for simple drawings, and derives from MIL-STD-806 of the 1950s and 1960s. It is sometimes unofficially described as "military", reflecting its origin. The "rectangular shape" set, based on IEC 60617-12 and other early industry standards, has rectangular outlines for all types of gate and allows representation of a much wider range of devices than is possible with the traditional symbols.[3] The IEC's system has been adopted by other standards, such as EN 60617-12:1999 in Europe and BS EN 60617-12:1999 in the United Kingdom.
The goal of IEEE Std 91-1984 was to provide a uniform method of describing the complex logic functions of digital circuits with schematic symbols. These functions were more complex than simple AND and OR gates. They could be medium scale circuits such as a 4-bit counter to a large scale circuit such as a microprocessor. IEC 617-12 and its successor IEC 60617-12 do not explicitly show the "distinctive shape" symbols, but do not prohibit them.[3] These are, however, shown in ANSI/IEEE 91 (and 91a) with this note: "The distinctive-shape symbol is, according to IEC Publication 617, Part 12, not preferred, but is not considered to be in contradiction to that standard." This compromise was reached between the respective IEEE and IEC working groups to permit the IEEE and IEC standards to be in mutual compliance with one another.
A third style of symbols was in use in Europe and is still preferred by some, see the column "DIN 40700" in the table in the German Wikipedia.
In the 1980s, schematics were the predominant method to design both circuit boards and custom ICs known as gate arrays. Today custom ICs and the field-programmable gate array are typically designed with Hardware Description Languages (HDL) such as Verilog or VHDL.
Type Distinctive shape Rectangular shape Boolean algebra between A & B Truth table AND or & INPUT | OUTPUT | A | B | A AND B | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 |
OR
INPUT | OUTPUT | A | B | A OR B | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 |
NOT or ~ INPUT | OUTPUT | A | NOT A | 0 | 1 | 1 | 0 |
In electronics a NOT gate is more commonly called an inverter. The circle on the symbol is called a bubble, and is used in logic diagrams to indicate a logic negation between the external logic state and the internal logic state (1 to 0 or vice versa). On a circuit diagram it must be accompanied by a statement asserting that the positive logic convention or negative logic convention is being used (high voltage level = 1 or high voltage level = 0, respectively). The wedge is used in circuit diagrams to directly indicate an active-low (high voltage level = 0) input or output without requiring a uniform convention throughout the circuit diagram. This is called Direct Polarity Indication. See IEEE Std 91/91A and IEC 60617-12. Both the bubble and the wedge can be used on distinctive-shape and rectangular-shape symbols on circuit diagrams, depending on the logic convention used. On pure logic diagrams, only the bubble is meaningful. NAND or INPUT | OUTPUT | A | B | A NAND B | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
NOR or INPUT | OUTPUT | A | B | A NOR B | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 |
XOR
INPUT | OUTPUT | A | B | A XOR B | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
XNOR or INPUT | OUTPUT | A | B | A XNOR B | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 |

INTRODUCTION
Boolean functions may be practically implemented by using electronic gates. The following points are important to understand. * Electronic gates require a power supply. * Gate INPUTS are driven by voltages having two nominal values, e.g. 0V and 5V representing logic 0 and logic 1 respectively. * The OUTPUT of a gate provides two nominal values of voltage only, e.g. 0V and 5V representing logic 0 and logic 1 respectively. In general, there is only one output to a logic gate except in some special cases. * There is always a time delay between an input being applied and the output responding.
TRUTH TABLES
Truth tables are used to help show the function of a logic gate.

Logic gates
Digital systems are said to be constructed by using logic gates. These gates are the AND, OR, NOT, NAND, NOR, EXOR and EXNOR gates. The basic operations are described below with the aid of truth tables.
AND gate The AND gate is an electronic circuit that gives a high output (1) only if all its inputs are high. A dot (.) is used to show the AND operation i.e. A.B. Bear in mind that this dot is sometimes omitted i.e. AB OR gate The OR gate is an electronic circuit that gives a high output (1) if one or more of its inputs are high. A plus (+) is used to show the OR operation. NOT gate The NOT gate is an electronic circuit that produces an inverted version of the input at its output. It is also known as an inverter. If the input variable is A, the inverted output is known as NOT A. This is also shown as A', or A with a bar over the top, as shown at the outputs. The diagrams below show two ways that the NAND logic gate can be configured to produce a NOT gate. It can also be done using NOR logic gates in the same way.

NAND gate This is a NOT-AND gate which is equal to an AND gate followed by a NOT gate. The outputs of all NAND gates are high if any of the inputs are low. The symbol is an AND gate with a small circle on the output. The small circle represents inversion. NOR gate This is a NOT-OR gate which is equal to an OR gate followed by a NOT gate. The outputs of all NOR gates are low if any of the inputs are high.
The symbol is an OR gate with a small circle on the output. The small circle represents inversion. EXOR gate The 'Exclusive-OR' gate is a circuit which will give a high output if either, but not both, of its two inputs are high. An encircled plus sign () is used to show the EOR operation.
EXNOR gate The 'Exclusive-NOR' gate circuit does the opposite to the EOR gate. It will give a low output if either, but not both, of its two inputs are high. The symbol is an EXOR gate with a small circle on the output. The small circle represents inversion. The NAND and NOR gates are called universal functions since with either one the AND and OR functions and NOT can be generated.
Note:
A function in sum of products form can be implemented using NAND gates by replacing all AND and OR gates by NAND gates.
A function in product of sums form can be implemented using NOR gates by replacing all AND and OR gates by NOR gates.
Table 1: Logic gate symbols

Table 2 is a summary truth table of the input/output combinations for the NOT gate together with all possible input/output combinations for the other gate functions. Also note that a truth table with 'n' inputs has 2n rows. You can compare the outputs of different gates.
Table 2: Logic gates representation using the Truth table

Example
A NAND gate can be used as a NOT gate using either of the following wiring configurations.

QUESTIONS
This is a multiple choice quiz. You need to click the appropriate radio button in after each question to make your choice.
1. What does an EXOR gate do?
Give a high output when one or more of its inputs are high
Give a high output when only one of its inputs are high
Give a low output when one or more of its inputs are high
Give a low output when only one of its inputs are high
2. Which of the following symbols represents a NOR gate?
A B
C D
3. Which one of the following truth tables represents the behavoir a NAND gate?
A B C D
4. What does connecting together the inputs of NAND and NOR gates do? * Help produce multi-input gates * Produce and EXNOR gate * Produce a NOT gate * Damage the gate
5. How do you make a NAND gate out of an AND gate using inverters (NOT gates)? * Invert the output from the AND gate * Invert both the inputs to the AND gate * Invert one of the inputs to the AND gate * Invert both the inputs and output of the AND gate
6. What type of logic gate does this symbol represent?

* Exclusive OR * Exclusive NOR * OR * NOR
7. How do you make a NOR gate out of an NAND gate using inverters (NOT gates)? * Invert the output from the NAND gate * Invert both the inputs to the NAND gate * Invert one of the inputs to the NAND gate * Invert both the inputs and output of the NAND gate
8. What type of logic gate's behaviour does this truth table represent?

* 2 input OR * 3 input OR * 3 input EXOR * 4 input EXOR

9. What type of logic gate does this logic circuit configuration produce?

* NAND gate * NOR gate * EXOR gate * EXNOR gate
10. How do you make an AND gate out of an OR gate using inverters (NOT gates)? * Invert the output from the NAND gate * Invert both the inputs to the NAND gate * Invert one of the inputs to the NAND gate * Invert both the inputs and output of the NAND gate

Similar Documents

Free Essay

Clap

...have to combine the  touch sensor(monostable mode of 555 and the transistorized dark sensor circuits. Whenever there is loud sound produced near the electret condenser mic, pin 2 of 555 gets triggered and it switches on the LED D1. The LED remains on for a definite time determined by R1 and C1. We can adjust the sensitivity of the circuit using a variable resistor in place of fixed resistor R5. You can check the circuit with 1K or 10K. - See more at: http://www.buildcircuit.com/clap-switch2/#sthash.XShIrDIv.dpuf The schematic of clap switch: You can see the steps for making clap switch on the video given below. - See more at: http://www.buildcircuit.com/clap-switch2/#sthash.XShIrDIv.dpuf If you want to glow a bulb operating at 220V, use the following schematic: clap switch operating 220V bulb Before you make this project, read carefully about RELAYS: http://www.buildcircuit.com/how-to-use-a-relay/ If you are not confident at making circuits, don’t work with 220V, it can be dangerous and harm you. READ ABOUT RECENTLY PUBLISHED CLAP SWITCH CHECK “CLAP SWITCH WITH TOGGLE FEATURE”. - See more at: http://www.buildcircuit.com/clap-switch2/#sthash.XShIrDIv.dpuf As what i understand, this clap switch can detect false triggering from claps where it protects your circuit from turning on and off due to unnecessary sounds or unintended sounds or claps. Very nice clap circuit actually but needs some...

Words: 282 - Pages: 2

Premium Essay

Mr Waleed

...Chapter 4 10. Assume a JFET has the transconductance curve shown in Figure 4–76. (a) What is IDSS? (b) What is VGS(off)? (c) What is the transconductance at a drain current of 2.0 mA? ID= 2.3 mA VGs = -2 v VD= Vpp – ID( RS+RD) 15 – 2.3m (1k +3.3 K) 15 – 2.3 (4.3 K) VDS= 5.11 2.3 m * 1 k Vs= 2.3 V 11. Assume the JFET with the transconductance curve shown in Figure 4–76 is connected in the circuit shown in Figure 4–77. (a) What is VS? (b) What is ID? (c) What is VDS? VD = VDD - ID*RD = 15V - (2.1mA) (3.3k Ω) = 8.07V ID = IS 2.1mA VS = IS * RS = 2.1mA * 1k Ω 2.1V ID = IDSS ( 1- (VGS/VGSoff))2 6.4 ( 1 - ( -2.1 / -5 )2 2.1 mA VDS = VDD - ID(RD + RS) 15V - (2.1MA) ( 4.3k Ω ) 15V - 9.03 = 5.97V 13. For each circuit in Figure 4–78, determine VDS and VGS. VD = VDD – ID times RD VS = IS times RS VDS = VDD - ID(RD + RS) VGS = VG - VS a) VD = 12V - (1mA) (4.7k Ω) = 7.3V VS = (1mA) (1k Ω) = 1V VDS = 12V - (1mA)(5.7k Ω) = 6.3V VGS = 0V - 1V = -1V b) VD = 9V - (3mA) (470 Ω) = 7.59V VS = (3mA) (100 Ω) = .3V VDS = 9V - (3mA)(570k Ω) = 7.29V VGS = 0V - .3V = -.3V c) VD = -15V - (5mA) (2.2k Ω) = -26V VS =...

Words: 408 - Pages: 2

Premium Essay

Mgbjhg Fghjfb Bhjss Af

...16 pin connector to scan tools * Incorrect data intered in to scan tools * The ignition switch not switched on * The control unit may be wiped out * The control unit may be in sleeping mode (b) Discuss the importance of updating scan tools on a regular basis. * The manufacturer requred you to update the scan tools * Using out of date software can wiped out the ecu data * When you contact help line if you don’t have updated software they want talk to you * For safety percaustion reasons (c) Outline the safety precautions that should be adhered to when carrying out diagnosis on an airbag electrical circuit. * Airbag can developed when you work on ai bag electrical line checking circuit * Working on the streering area checking ciriciut * Proper tools and equipments have to be used working on the circuit * Employee should be follow their duites under safety act (a) Multiplexing is widely used in modern motor vehicles. List the advantages of this type of wiring compared to conventional methods 1. Less wiring 2. More application can be fiitted possible 3. Lighter wiring diagram for the vehicle 4. Easier faults dagnoisis 5. Cheaper to munfacture 6. 7. . 8. (c) Draw afull wiring diagram of an Electronic Distributorless System (E.D.I.S. used in a four cylinder engine. The diagram should include all the necessary wiring, ignition switch, L.T. and H.T. coils, spark plugs, battery...

Words: 393 - Pages: 2

Free Essay

Nec Drawings

...associated with this type of calculation repeatedly need clarification: * Voltage The voltage to use for your calculations depends on the system design voltage. Thus when you calculate branch-circuit, feeder, and service loads, you must use a nominal system voltage of 120V, 120/240V, 208Y/120V, 240V, 347V, 480Y/277V, 480V, 600Y/347V, or 600V unless otherwise specified (220.2) (Fig. 1 below). * Rounding Refer to 200.2(B) to end the rounding mystery. When the ampere calculation exceeds a whole number by 0.5 or more, round up to the next whole number. If the extra is 0.49 or less, round down to the next whole number. For, example, round 29.5A up to 30A, but round 29.45A down to 29A. Specific loads. Art. 220 doesn't cover all specific loads. For example, you'll find motors in Art. 430 and air conditioners in Art. 440. To know if you should look in another Article, use the NEC index. <b>Fig. 1.</b> Don’t make the mistake of using actual field measurements of system voltage in your calculations. Unless specified otherwise, loads shall be computed using the nominal system voltage such as 120V, 120/240V, 208Y/120V, 240V, 347V, 480Y/277V, 480V, 600Y/347V or 600V. Art. 220 has specific requirements for most loads, including the following: Dryers. Size the branch-circuit conductors and overcurrent protection device for commercial dryers to the appliance nameplate rating. Calculate the feeder demand load for dryers at 100% of the...

Words: 1557 - Pages: 7

Free Essay

Integrator and Summing Opamp

...UNIVERSITY OF THE EAST COLLEGE OF ENGINEERING ELECTRONICS ENGINEERING DEPARTMENT NEC 327 - ECE2 COMPUTER-AIDED ELECTRONIC CIRCUIT DESIGN WED / 2:30 – 5:30 / EN308 ACTIVITY #6: OP-AMP INTERGRATOR ACTIVITY #7: SUMMING OP-AMP RATING RATING 3, 2 QUIAMBAO, PATRICIA MAE M. 20140169557 FERNANDO VICTOR V. DE VERA, ECE, M.TECH MARCH 16, 2016 Activity No 6: OP-AMP Integrator 6.1 Objectives To capture and simulate a circuit where a waveform conversion is present while the output voltage is proportional to its integral voltage input of the amplifier. 6.2 Theoretical Discussion The integrator circuit is mostly used in analog computers, analog-to-digital converters and wave-shaping circuits. A common wave-shaping use is as a charge amplifier and they are usually constructed using an operational amplifier though they can use high gain discrete transistor configurations. The integrator basically works like this: whatever current I you get flowing in R1, gets integrated across capacitor C1. The output voltage Vo is simply the voltage across C1. One great application of the integrator is generating a ramp voltage. You can do this by placing a fixed voltage at VS that forces a constant current through R1. The capacitor then integrates this current creating a ramping voltage. The action is just like a garden hose running water at a constant rate causing the level in a bucket to rise steadily. The smaller the diameter bucket (smaller capacitor), the faster the...

Words: 872 - Pages: 4

Free Essay

Mr John

...------------------------------------------------- ECET-402 Week 2 Lab – Acquiring Temperature & Signal Conditioning This lab actually consists of two separate but related labs. They will be presented in Parts A and B. Objective: The objective of this lab is to use an LM34 temperature sensor to acquire temperature and display it in an 8-bit binary number using LEDs and designing simple signal conditioning circuits using op-amps. Parts Needed: 1. Multisim 8 (or higher) 2. LM34 Temperature Sensor 3. ADC0809 4. 8 LEDs 5. Wires, wire cutter, and wire stripper 6. Adjustable DC Power Supply 7. Function Generator and DMM Part A – Temperature Sensor We will use an LM34 temperature sensor IC to measure temperature in Fahrenheit degrees. We will then convert the analog output voltage of the sensor to an 8-bit digital signal using the Analog to Digital converter ADC0809. Finally we will use 8 LEDs to display an 8-bit binary number representing the temperature. LM34: The LM34 series are precision integrated-circuit temperature sensors. The output voltage is directly proportional to temperature in Fahrenheit degrees. Output voltage increases by 10 mV for every one degree Fahrenheit. For example, an output voltage of 720 mV (0.72 V) indicates a temperature of 72 F. LM34 has a range of -50 to +300° F and can be operated with a voltage supply of 5 to 30 VDC. It draws only 75 µA from its supply. ADC0809: This analog to digital...

Words: 934 - Pages: 4

Free Essay

Thevins Theorem

...build a circuit to confirm the law b. Use Ohms and Kirchhoff’s laws to calculate the desired measurements B. Equipment c. DC Power Source d. Breadboard e. Extech instruments voltmeter f. 1000 resistor g. 3900 resistor h. 1200 resistor i. 3300 resistor j. 2200 resistor k. Wires C. Procedure l. Review Ohms and Kirchhoff’s laws m. Find the theoretical values for the circuit in Figure 3 n. Use the 1000 W, 3300 W, and 2200 W resistors to create the circuit in Figure 3 o. Set the voltage to 6.9 v and measure the values from the circuit with the Extech instruments voltmeter p. Use the found values to create the Thevenin circuit q. Check the values and confirm that the circuits are the same D. Schematic Diagrams E. Data Tables | VTh | IShort | RTh | Theoretical | 6.875 v | 1.69 mA | 4.05K | Measured | 6.8 v | 1.7 mA | 4K | F. Questions Pre Lab: 1) Find the Thevenin's and Norton's equivalent circuits of network in figure 3, excluding RL. VTh = Open Circuit Voltage VTh = (2.2 / 1 + 2.2) x 10 = 6.875 v What is theoretical IShort for the Figure 4? G. Conclusion In this lab I learned the features and how to operate both an oscilloscope and function generator. I also learned how to create a circuit using...

Words: 320 - Pages: 2

Free Essay

Hy5H

...Logbook My cicuit training program is going to be a 12 week plan, to improve my overall physique and muscular endurance.i will be doing 2 different circuits, one beng a body weight circuit and the other a free weight circuit.my programme will include 3 sessions per week and start with 3 sets of 8 repetitions, after each set I will have a minute rest.i will measure my progression by decreasing e=rest periods and increasing the amount of reps. Also if I gradually start to find my sessions easier it will show my progression, as my cardiovascular endurance will have increased. My short term goals My short term goals, are what I hope to achieve at the end of each training session. These will be to… * relieve stress and become more focused * improve my self esteem and confidence long term goals long term goals are what my whole program is working towards, these goals are… * to improve my muscular strength and endurance * to improve my physique and muscualar appearance * to lower my risk of health diseases like high cholestral and obesity my program needs to be SMART Specific-my circuit is specific to improving my personal sport being football, I would like to increase my muscle mass and endurance and my cv endurance, to improve my stamina on the pitch and my tackling strength. Measurable- I will use the fit method, frequency,intensity and time.by doing this I will make my sessions more frequent and increase the intensity by having shorter rest periods...

Words: 272 - Pages: 2

Free Essay

Lab Final

...------------------------------------------------- Lab Final Unit 11 Lab Final: Voltage Regulator with Constant Current Limiting (PORTFOLIO) Scope and Intention of the Project: The Lab Final Project is a self-directed project with specific requirements provided. You will be given a design task which utilizes a standard circuit in the textbook. You will apply knowledge that has been acquired in lecture, assignments, and previous labs. Task: Your task is to design, simulate, build and test a voltage regulator with constant current limiting as shown in Fig. 11-7 on page 559, Chapter 12 in the textbook. In addition to providing a circuit which operates to the specified functionality, you will submit a project report with required format and contents. D1 D1 This circuit is to be built according to the following specifications: * Input Voltage Range: + 9 V DC to +15 V DC * Q1 and Q2: 2N3904 Transistor * D1: 1N4733 Zener Diode * R1 = 1.0 kΩ, R2 = 10 kΩ, R3 = 10 kΩ, R4 = 1.0 Ω * Nominal Output Voltage: + 10 V DC * Max. Output Current: 500 mA Required Test Data: 1. Line regulation for input voltage changes from +9 V to +15 V 2. Load regulation for load changes from open circuit to 1000 Ohm load resistance 3. Graph of output voltages for at least 5 different input voltages, using a 150 Ohm load resistor 4. (Y-axis scaled for output voltage, x-axis scaled for resistive load) 5. Graph of output voltages for at least 5 different loads (include “no load”) at...

Words: 626 - Pages: 3

Free Essay

Boolean Operator

...In logic, a logical connective (also called a logical operator) is a symbol or word used to connect two or more sentences (of either a formal or a natural language) in a grammatically valid way, such that the sense of the compound sentence produced depends only on the original sentences. The most common logical connectives are binary connectives (also called dyadic connectives) which join two sentences which can be thought of as the function's operands. Also commonly, negation is considered to be a unary connective. Logical connectives along with quantifiers are the two main types of logical constants used in formal systems such as propositional logic and predicate logic. Semantics of a logical connective is often, but not always, presented as a truth function. A logical connective is similar to but not equivalent to a conditional operator. [1] Contents [hide] 1 In language 1.1 Natural language 1.2 Formal languages 2 Common logical connectives 2.1 List of common logical connectives 2.2 History of notations 2.3 Redundancy 3 Properties 4 Order of precedence 5 Computer science 6 See also 7 Notes 8 References 9 Further reading 10 External links In language[edit] Natural language[edit] In the grammar of natural languages two sentences may be joined by a grammatical conjunction to form a grammatically compound sentence. Some but not all such grammatical conjunctions are truth functions. For example, consider the following sentences: A: Jack went up...

Words: 2282 - Pages: 10

Free Essay

Gay Marriage

...multiplexers - Verification of the circuit behavior with a CAD tool 2. Problem description Design the synchronous 4-bit counter which outputs follow the predetermined repeated sequence of states. The sequence of states represents the sequence of decimal digits of your ID number with the following exceptions: (1) digits which appear more than ones have to be deleted; (2) digit 9 has to be added at the end of the sequence if your ID has no 9. For example, for ID number 105123456 the second 1 and 5 are deleted and 9 is added at the end resulting in sequence 10523469. In the binary form the sequence is shown in Figure 1. The initial state is not critical. State 9 should be decoded to generate special signal SYNC shown in denominator in Figure 1. In the prelab: the circuit behavior has to be verified in OrCAD. The maximum clock frequency has to be calculated using timing specs of the flip-flops and multiplexers (logical gates) from datasheet. In the experiment: first, the functionality of the counter has to be tested with a pushbutton that controls the clock and a 7-segment LED display connected to the outputs. Finally, the counter sequence should be demonstrated with the logic analyzer synchronized with SYNC signal, 4inputs of the logic analyzer should be grouped into a bus. 3. Approaches Outputs of four D-flip-flops Q3Q2Q1Q0 serve as outputs of the counter. Next states Q*3Q*2Q*1Q*0 are formed from present states Q3Q2Q1Q0 with combinational excitation circuits. By design we understand determination...

Words: 1781 - Pages: 8

Premium Essay

Mitel the History

...1 Executive Summary In 1971, Michael Cowpland and Terry Matthews incorporated and formed the company Mitel. They achieved immediate success with products that were composed of semiconductors, while they also sold semiconductors. They quickly achieved market dominance in the communications sector. As the communications sector became increasingly regulated by government, some of Mitel’s major customers lost market share resulting in fewer sales for Mitel. This resulted in Mitel’s competitors advancing ahead of them in industry dominance. Over time, Mitel was sold and resold with its share value increased, decreased, and then increased again but to only a fraction of what it used to be. Mitel continued to be a company that stayed rooted to its initial specialities in the communications industry. As other sectors developed to the extent that the communications sector only occupied 0.5 per cent of the overall market, Mitel has been unable to diversify such that its future is again dependant on unforeseen changes in the industry. It is critical that Mitel achieve the ability to secure product to enable further product development and enhance its research and development so it may diversify its products and balance its products among various markets, so that event changes in a particular market will not compromise the entirety of Mitel. 2 Overview In the 1960s, semiconductors were developed and quickly became the “backbone of all electronic devices. Consumer electronics...

Words: 2535 - Pages: 11

Premium Essay

Mini Project

...EE2031 Circuit and Systems Design Lab Mini-Project Report Voice Disguiser Presented by: Friday Room 3 Group 7 Wang Ke (A0105276J) Wu Jianxiao (A0099910W) 1.Introduction 1.1 Aim During the 6 hands-on individual labs before this mini project, we have learnt the design and implementation of filter and oscillator, together with applied characterization of different components. The objective of Mini-Project was for students to demonstrate their innovative design skills and implement knowledge learnt in lectures to real-life product design. Therefore, we aimed to integrate what we learnt in individual labs into one single product, which is a Voice Disguiser that can solve practical problems of witness protection. 1.2 Motivations and Inspiration According to Maslow’s Hierarchy of Needs, safety is the second most basic need of human being. However, in some lawsuit trail and media interviews, the safety of witnesses is at risk when they come forward to disclose the truth. A study of Columbia University shows that 71% of witnesses said they feel threatened by the offenders (Brendan & Rajiv, 2007). Therefore, it is necessary to use a Voice disguiser to protect witnesses from being recognized based on their originally identifiable voice. And this issue inspires me to design a voice disguiser. After consulting lab TAs and lecturer, we found that this idea is feasible based on limited lab conditions and time constrains 1.3 List of Materials No. 1 3 4 5 ...

Words: 2070 - Pages: 9

Free Essay

Abcd

...ANALYSIS OF CIRCUIT (EE001-3-1) Instructions: • This assignment is to be carried out individually Learning Outcomes ON COMPLETION OF THE MODULE YOU SHOULD BE ABLE TO DEMONSTRATE THE FOLLOWING LEARNING OUTCOMES: | | |ABLE TO UNDERSTAND, AND BE ABLE TO APPLY BOTH ANALYSIS AND DESIGN THE OVERALL PROCESS OF DESIGN, INCLUDING MODELING AND COMPONENT | |DESCRIPTION. | | | |ABLE TO UNDERSTAND PASSIVE AND ACTIVE COMPONENTS. | | | |ABLE TO UNDERSTAND AND APPLY KIRCHHOFF’S LAWS, NODAL AND MESH ANALYSIS. | | | |ABLE TO UNDERSTAND THE OPERATION AND APPLICATIONS OF OPERATIONAL AMPLIFIER. | | ...

Words: 782 - Pages: 4

Free Essay

Crime and Philosophy

...1. Getting started It is a matter of some interest that logic and the law should share so many of their foundational concepts – concepts such as proof, evidence, truth, inference, probability, plausibility, presumption and reasonableness – and yet should have had very little to say to one another within living memory. It is not especially surprising that logic and the law should have suffered (I use the word in its Latin sense) this alienation. With regard to its foundational concepts – for example, the concept of proof beyond a reasonable doubt, the concept of the balance of probabilities, the concept of the reasonable person – the law embeds am implied epistemology of implicity. There exists among practitioners, especially judges, the view that definitions and formalizations of such notions are both unnecessary and is liable to conceptual distortion. But definitions and formalizations are mother’s milk to logicians. Where the law favours approximation and contextually sensitive nuance, logicians thrive on exactitude and rigour. So why wouldn’t the lawyers and logicians go about their business without the regard of the one for the other? It would be wrong to leave the impression that there is no analytical exactitude in the law. It would also be a mistake to suggest that there has been no contact with the formal disciplines. Trials are often complex and judgements often embed exhaustive and detailed analyses of relevant points of law. In recent years probability theorists have...

Words: 14399 - Pages: 58