數位邏輯 ( 一 ) Text: : Charles H. Roth, Jr. Fundamentals of Logic Design 5th Edition THOMSON BROOKS/COLE. Review units 1-9 1

Size: px
Start display at page:

Download "數位邏輯 ( 一 ) Text: : Charles H. Roth, Jr. Fundamentals of Logic Design 5th Edition THOMSON BROOKS/COLE. Review units 1-9 1"

Transcription

1 數位邏輯 ( 一 ) Text: : Charles H. Roth, Jr. Fundamentals of Logic Design 5th Edition 2004 THOMSON BROOKS/COLE Review units 1-9 1

2 Digital Systems and Switching Circuits Digital system The physical quantities or signals can assume only discrete values Greater accuracy Analog system The physical quantities or signals may vary continuously over a specified range Review units 1-9 2

3 Review units 1-9 3

4 Digital Systems and Switching Circuits Design of digital systems System design Breaking the overall system into subsystems Specifying the characteristics of each subsystem E.g. digital computer : memory units, arithmetic unit, I/O devices, control unit Logic design Determining how to interconnect basic logic building blocks to perform a specific function E.g. arithmetic unit : binary addition: logic gates, Flip-Flops, Flops, interconnections Circuit design Specifying the interconnection of specific components such as resistors, diodes, and transistors to form a gate, flip-flop flop or other logic building block E.g. Flip-Flop: Flop: resistors, diodes, transistors Review units 1-9 4

5 Digital Systems and Switching Circuits Many of subsystems of a digital system take the form of a switching network Switching Networks Combinational Networks No memory Sequential Networks Combinational Circuits + Memory Review units 1-9 5

6 Basic Operations The basic operations of Boolean algebra are AND, OR, and NOT (complement, or inverse). NOT (Complement) 0 = 1 1 = 0 X = 1 if X = 0 and X = 0 if X = 1 Inverter Review units 1-9 6

7 Basic Operations AND Operation Omit the symbol.,, A. B=AB AND Gate Review units 1-9 7

8 Basic Operations OR operation OR Gate Review units 1-9 8

9 Exclusive-OR and Equivalence Operations Exclusive-OR: 0 1 = 1 Truth table and gate for 0 0 = = = X Y 0 X Y =1 if and only if X=1 or Y=1 and X and Y are not both 1. Review units 1-9 9

10 Exclusive-OR and Equivalence Operations The equivalence operation ( ) is defined by The truth table for X Y is ( X Y) = 1 X = Y if and only if. Review units

11 Exclusive-OR and Equivalence Operations ( X Y ) = XY + X Y Equivalence is the complement of exclusive-or OR: ( X Y ) = ( X Y + XY ) = ( X + Y )( X + Y ) = XY + X Y = ( X Y ) Alternate symbol for the equivalence gate The equivalence gate is also called an exclusive-nor gate. Review units

12 NAND and NOR Gates NAND gate: An AND gate followed by an NOT gate n-input NAND gates: F = ) n=2 ( AB = A + B n=3 F = ( ABC) = A + B + C F =... ( X1X 2... X n) = X1 + X X n Review units

13 NAND and NOR Gates NOR gate: An OR gate followed by an NOT gate n-input NOR gates: F = ( A + B) = A B n=2 n=3 F = ( A + B + C) = A B C F =... ( X1 + X X n) = X1X 2 X n Review units

14 Boolean Expressions and Truth Tables Order in which the operations are perform Parentheses Complentation Complentation AND OR Circuits for expressions A B + C [ A ( C + D) ] + BE Review units

15 Truth Table If an expression has n variables, the number of different combinations of values of the variables is 2 n. Therefore, a truth table for n-variable n expression will have 2 n rows. (2 ) There are functions of n variables. 2 n Review units

16 Sum-of of-products (SOP) An expression is said to be in sum-of of-products form when all products are the products of only single variables. AB + CD E + AC E, A + B + C + D E are ( A + B)CD + EF is not in SOP form. Product-of of-sums (POS) in SOP form, An expression is said to be in product-of of-sums form when all sums are the sums of only single variables. ( A + B )( C + D + E)( A + C + E ), AB C( D + (A + B)(C + D) + EF is not in POS form. E) are in POS form, Review units

17 Combinational Logic Design Using a Truth Table Example: : Design a switching circuit with three inputs A, B, and C and one output f. The input A,B, and C represent the first, second,, and third bits, respectively, for a binary number N. f=1 if N and f=0 if N < Sol-1: Review units

18 Combinational Logic Design Using a Truth Table Sol-1 1 (cont.): Derive an algebraic expression for f from the truth table by using the combinations of values of A,B, and C for which f=1. =1. f = A BC + AB C + AB C + ABC + ABC = A BC + AB + AB = A BC + A = A + BC The circuit is Review units

19 Combinational Logic Design Using a Truth Table f Sol-2: First write f as a sum of products, and then complement the result. f is 1 for input combinations ABC=000, 001, 010, so = = ( f = ( A + = ( A + A + BC f = A B C + A B C + A BC ) = ( A B C + A B C B + C)( A + B)( A + B + C) B + C )( A + + A BC ) B + C) ( Three 3-input OR gates and one 3-input AND gate) [Two OR gates and one AND gate] Review units

20 Minterm and Maxterm Expansions Minterm A minterm of n variables is a product of n literals in which each variable appears exactly once in either true or complement form, but not both. Maxterm A maxterm of n variables is a sum of n literals in which each variable appears exactly once in either true or complement form, but not both. Review units

21 Minterm and Maxterm Expansions Minterm and Maxterm for three variables Review units

22 Minterm and Maxterm Expansions Minterm expansion or Standard sum of products When a function is written as a sum of minterms,, this is referred to as a minterm expansion or standard sum of products. Examples: f ( A, B, C) = A BC + AB C + AB C + ABC + f ( A, B, C) = m + m + m + m + m ABC f ( A, B, C) m = (3,4,5,6,7 ) Review units

23 Minterm and Maxterm Expansions Maxterm expansion or Standard product of sums When a function is written as a product of maxterms, this is referred to as a maxterm expansion or standard product of sums. Example: f ( A, B, C) = ( A + B + C)( A + B + C )( A + B + C) f ( A, B, C) = M M M f ( A, B, C) M = (0,1,2 ) Review units

24 Minterm and Maxterm Expansions Complement of a function f. Example: f ( A, B, C) = m + m + m + m + m f = ( m m ) 7 = m 4 + m5 + m6 + m = 3m4m5m 6m7 M 3M 4M 5M 6M 7 f ( A, B, C) = M M1M 2 f = ( M = M + M + M = m + m + m 0 0 M1M 2) Review units

25 Incompletely Specified Functions Incompletely Specified Function A function contains don t t care terms. Example 1: The output of subcircuit N 1 drives the input of the subcircuit N 2. Assume that there are no combinations of values for w,x,y, and z which cause A,B, and C to assume values of 001 or The function F is incompletely specified. Review units

26 Incompletely Specified Functions Example 1(cont.): 1. Assign 0 to both X sx 2. Assign 1 to the first X and 0 to the second --- simplest solution 3. Assign 0 to the first X and 1 to the second F F F = A B C + A BC + ABC = A B C + = m( 0,3,7) + d(1,6 ) = M ( 2,4,5) D(1,6 ) BC F = A B C + A B C + A BC + ABC = A B + BC F = A B C + A BC + ABC + ABC = A B C + A BC + AB 4. Assign 1 to both X sx F = ABC + ABC + ABC + ABC + ABC= AB + BC+ AB Review units

27 Examples of Truth Table Construction Example 2: Design an adder which adds two 2-bit binary numbers to give a 3-bit 3 binary sum. The circuit has 4 inputs and 3 outputs : Review units

28 Examples of Truth Table Construction Example 2(cont.): The output functions are : X ( A, B, C, D) Y ( A, B, C, D) = = m(7,10,11,13,14,15) m(2,3,5,6,8,9,12,15) Z( A, b, C, D) = m(1,3,4,6,9,11,12,14) Review units

29 Design of Binary Adders and Subtracters Half Adder: Review units

30 Design of Binary Adders and Subtracters Full Adder: Review units

31 Design of Binary Adders and Subtracters The logic equation for the full adder: Review units

32 Design of Binary Adders and Subtracters The logic circuit of full adder: Review units

33 Design of Binary Adders and Subtracters 4-Bit Parallel Adder Adds two 4-bit 4 unsigned binary numbers Review units

34 Design of Binary Adders and Subtracters 4-Bit Parallel Adder Review units

35 Unit 5 Karnaugh Maps

36 Two- and Three- Variable Karnaugh Maps 2- variable Karnaugh Maps Example: Review units

37 Two- and Three- Variable Karnaugh Maps 2- variable Karnaugh Maps Example: Review units

38 Two- and Three- Variable Karnaugh Maps 3-variable Karnaugh Maps Review units

39 Two- and Three- Variable Karnaugh Maps Adjacent Cells Two cell which differ in just one variable are said to be adjacent. 2 k adjacent calls can be combined. Review units

40 Two- and Three- Variable Karnaugh Maps If F is given as a minterm (maxterm)) expansion, the map by placing 1 s(0 s) ) in the squares which correspond to the minterm ( maxterm) ) and then by filling in the remaining squares with 0 s(1 s). Example: F ( a, b, c) = m1 + m3 + m5 = M0M2M4M6M7 Review units

41 Two- and Three- Variable Karnaugh Maps If a function is given in algebraic form, plot it s Karnaugh Map. Example: f ( a, b, c) = abc + b c + a Review units

42 Two- and Three- Variable Karnaugh Maps Simplify a function using Karnaugh Map Example: F = m(1,3,5 ) Review units

43 Two- and Three- Variable Karnaugh Maps Simplify a function using Karnaugh Map Example: Simplify the complement of F = m(1,3,5 ) Review units

44 Two- and Three- Variable Karnaugh Maps Illustrate the Consensus Theorem Example: xy + x z + yz = xy + x z Review units

45 Two- and Three- Variable Karnaugh Maps Minimum sum-of of-products is not unique. Example: f = m(0,1,2,5,6,7 ) Review units

46 Four- Variable Karnaugh Maps 4-Variable Karnaugh Maps Review units

47 Four- Variable Karnaugh Maps Example: f ( a, b, c, d) = acd + a b + d Review units

48 Four- Variable Karnaugh Maps Example: Simplify f 1 = m(1,3,4,5,10,12,13) f 2 = m(0,2,3,5,6,7,8,10,11,14,15) Review units

49 Four- Variable Karnaugh Maps Simplify a function with don t t care Example: f m( 1,3,5,7,9) + d = (6,12,13) All the 1 s 1 s must be covered,, but the X s are only used if they will simplify the resulting expression. Review units

50 Four- Variable Karnaugh Maps Find a minimum product-of of-sums 1. Find a minimum sum-of of-products for F F 2. Complement F F using DeMorgan s Theorem Example: Find a minimum product-of of-sums for f = x z + wyz + w y z + x y f = y z + wxz + w xy f = ( f ) = ( y+ z )( w + x + z)( w+ x + y ) Review units

51 Determination of Minimum Expansions Using Essential Prime Implicants Cover: A switching function f(x 1,x 2,,x n ) is said to cover another function g(x 1,x 2,,x n ), if f assumes the value 1 whenever g does. Cover: Implicant : Given a function F of n variables, a product term P is an implicant of F iff for every combination of values of the n variables for which P=1, F is also equal 1.That is, P=1 implies F=1. Prime Implicant: A prime prime implicant of a function F is a product term implicart which is no longer an implicant if any literal is deleted from it. Essential Prime Implicant: If If a minterm is covered by only one prime implicant,, then that prime implicant is called an essential prime implicant. Review units

52 Implicant : 函數 f 在卡諾圖中任何單一個 1 或任何一組 1 可以被合併在一起而形成一個積項, 則被稱為 F 的含項 Prime Implicant: 若一個積項不能再和其他項合併消去變數則稱為質含項 Essential Prime Implicant: 某些最小項 (minterm 全及項 ) 只被單一個質含項包含, 如果一個最小項只被一個質含項包含, 則包含此最小項的質含項稱為基本質含項 Review units

53 Determination of Minimum Expansions Using Essential Prime Implicants On a Karnaugh Map Any single 1 or any group of 1 s 1 s (2 k 1 s, k=0,1,2, ) which can be combined together on a map of the function F represents a product term which is called an implicant of F. A product term implicant is called a prime implicant if it cannot be combined with another term to eliminate a variable. If a minterm is covered by only one prime implicant, then that prime implicant is called an essential prime implicant. Review units

54 Determination of Minimum Expansions Using Essential Prime Implicants Examples f=wx+yz wx+yz,, g=wxy wxy g=1 (w=1,x=1,y=0) implies f= z=1, f covers g. g is a product term, g is an implicant of f. f g is not a prime implicant.. The literal y y is deleted from wxy,, the resulting term wx is also an implicant of f. h=wx is a prime implicant.. The deletion of any literal (w or x) results a new product (x or w) which is not covered by f. [w=1 does not imply f=1 (w=1,x=0,y=0,z=0 imply f=0)] Review units

55 5-Variable Karnaugh Maps 5-variable Karnaugh Map Review units

56 5-Variable Karnaugh Maps Example : Simplify the function F( A, B, C, D, E) m(0,1,4,5,13,15,20,21,22,23,24,26,28,30,31) = Review units

57 Unit 7 Multi-Level Gate Circuits NAND and NOR Gates

58 Multi-Level Gate Circuits Increasing/reducing the number of levels Increasing the number of levels Reduce the required number of gates Reduce the number of gate inputs Increase gate delays Reducing the number of levels Reduce gate delays, speed up the operation of the digital system Review units

59 Multi-Level Gate Circuits Example: 4 levels 6 gates 13 gate inputs Review units

60 Functionally Complete A set of logic operations is said to be functionally complete if any Boolean function can be expressed in terms of this set of operations. {AND,OR,NOT} is functionally complete. Any set of logic gates which can realize AND,OR, and NOT is also functionally complete. {NAND} is functionally complete. {NOR} is functionally complete. {AND,OR} is not functionally complete. Review units

61 Functionally Complete {AND,NOT} is functionally complete. {OR,NOT} is functionally complete. Review units

62 Functionally Complete {NAND} is functionally complete. Any switching function can be realized using only NAND gates. Review units

63 Functionally Complete {NOR} is functionally complete. Any switching function can be realized using only NOR gates. Review units

64 Design of Two-level Circuits Using NAND and NOR Gates Example (cont.): Review units

65 Design of Two-level Circuits Using NAND and NOR Gates Example (cont.): Review units

66 Design of Two-Level, Multiple- Output Circuits Example: Design a circuit with four inputs and three outputs which realizes the functions F ( A, B, C, D) = m(11,12,13,14,15) Example: F F ( A, B, C, D) ( A, B, C, D) = = m(3,7,11,12,13,15) m(3,7,12,13,14,15) Sol: Each function is realized individually. The cost of the resulting circuit is 9 gates and 21 gate inputs. Review units

67 Design of Two-Level, Multiple- Output Circuits Sol (cont.): F ( A, B, C, D) = 1 F (A,B,C,D) = 2 F (A,B,C,D) = 3 m(11,12,13,14,15) = AB + ACD m( 3, ,,,, ) = ABC + CD m( 3, ,,,, ) = A CD + AB Review units

68 Design of Two-Level, Multiple- Output Circuits Sol (cont.): Review units

69 Design of Two-Level, Multiple- Output Circuits Sol (cont.): Use the Use the common terms to save gates. F 1 =AB+ACDACD F 2 =ABC +CD=ABC +A CD+ACD F 3 =A CD+AB Review units

70 Design of Two-Level, Multiple- Output Circuits Sol (cont.): 4 AND gates 3 OR gates In realizing multiple-output circuits, the use of a minimum sum-of of-product implicants for each function does not necessarily lead to a minimum cost solution for the circuit as a whole. Review units

71 Unit 08 Combinational Circuit Design and Simulation Using Gates

72 Gate Delays and Timing Diagrams Propagation delay : If the change in output is delayed by time, ε, with respect to the input, we say that this gate has a propagation delay of ε. Propagation delay in an inverter Review units

73 Gate Delays and Timing Diagrams Timing Diagram Example: Assume that each gate has a propagation delay of 20 ns (nanoseconds). Review units

74 Gate Delays and Timing Diagrams Example: Circuit with and delay element Review units

75 Hazards in Combinational Logic The unwanted switching transients may appear in the output when different paths from input to output have different propagation delays. Static 1-1 hazard: If, in response to any single input change and for some combination of propagation delays,, a circuit output may momentarily go to 0 when it should remain a constant 1, we say that the circuit has a static 1-hazard. Static 0- hazard: If, in response to any single input change and for some combination of propagation delays,, a circuit output may momentarily go to 1 when it should remain a constant 0,, we say that the circuit has a static 0-hazard. Static 0 Review units

76 Hazards in Combinational Logic Dynamic hazard: If, when If, when output is supposed to change from 0 to 1 (or 1 to 0), the output may change three or more times,, we say that the circuit has a dynamic hazard. Review units

77 Hazards in Combinational Logic Example: Circuit with a static 1-hazard Assume that each gate has a propagation delay of 10 ns. If A=C=1, then F=B+B =1. =1. F should remain a constant 1 when B changes from 1 to 0. Review units

78 Hazards in Combinational Logic Procedure for detecting hazards in a two-level AND-OR circuit 1.Write down the SOP expression for the circuit. 2.Plot each term on the map and loop it. 3.If any two adjacent 1 s 1 s are not covered by the same loop, a 1-hazard 1 exists for the transition between the two 1 s. 1. For an n- variable map, this transition occurs when one variable changes and the other n-1 variables are held constant. Review units

79 Hazards in Combinational Logic Eliminating hazards Add a loop to cover two adjacent 1 s. 1 Review units

80 Hazards in Combinational Logic Example: A circuit with several 0-hazards0 F=(A+C)(A +D +D )(B +C +D) +D) Example: A=0, B=1, D=0, C changes from 0 to 1 Gate delay : 3 ns for NOT, 5 ns for AND/OR Review units

81 Hazards in Combinational Logic Example (cont.): Review units

82 Hazards in Combinational Logic Example (cont.): Review units

83 Hazards in Combinational Logic Example (cont.): Eliminating the 0 Eliminating the 0-hazards by looping additional prime implicants that cover the adjacent 0 s 0 s that are not covered by a common loop. F = ( A+ C)( A + D )( B + C + D)( C + D )( A+ B + D)( A + B + C ) Review units

84 Unit 9 Multiplexers, Decoders, and Programmable Logic Devices

85 Multiplexers Multiplexers (MUX( MUX,, or data selector) A MUX has a group of data inputs and a group of control inputs. The control inputs are used to select one of the data inputs and connect it to the output terminal. 2-to 1 MUX A=0, Z=I 0 A=1, Z=I 1 Z=A I 0 +AI 1 Review units

86 Multiplexers 4-to-1, 8-to8 to-1, 2 n -to-11 MUX Logic equation for 8-to8 to-1 1 MUX Z = + A B C I 0 AB C I A B CI 1 AB CI A BC I ABC I A BCI ABCI Review units

87 Multiplexers Logic Diagram for 8-to8 to-1 1 MUX Review units

88 Multiplexers Logic equation for 2 n -to-11 MUX Z = n 2 1 k= 0 m k I k m k where is a minterm of the n control variables and I k is the corresponding data input Review units

89 Multiplexers Quad Multiplexer Used to Select Data A=0, (z 0 z 1 z 2 z 3 )=(x 0 x 1 x 2 x 3 ) A=1, (z 0 z 1 z 2 z 3 )=(y 0 y 1 y 2 y 3 ) Review units

90 Multiplexers Quad Multiplexer with Bus Input and Output A=0, Z=X A=1, Z=Y Review units

91 Three-State Buffers A gate output can only be connected to a limited number of other device inputs without degrading the performance of a digital system. A buffer may be used to increase the driving capability of a gate output. F = C Review units

92 Three-State Buffers A logic circuit will not operate correctly if the outputs of two or more gates or other logic devices are directly connected to each other. Use of three-state logic permits the outputs of two or more gates or other logic devices to be connected together. Review units

93 Three-State Buffers Three-state buffer (Tri-state buffer) Enable input B=1, output C=A, when B=0, C acts like an open circuit,, C is effectively disconnected from the buffer output so that no current can flow. This is referred to a Hi-Z Z (high-impedance) impedance) state of the output because the circuit offers a very high resistance or impedance to the flow of current. Review units

94 Three-State Buffers Data Selection Using Three-State Buffers D=B A+BC Review units

95 Three-State Buffers Circuit with Two Three-State Buffers Review units

96 Three-State Buffers Three-state Bus A bus is driven by three-state buffers 4-Bit Adder with four sources for one operand Use a 4-to4 to-1 1 MUX to select one of several sources Set up a three-state bus Review units

97 Three-State Buffers Bi-directional I/O Pin Buffer is enabled, Output Buffer is disabled, Input Review units

98 Decoders and Encoders Decoder Generates all of minterms Exactly one of the outputs lines will be 1 for each combination of the values of the input variables. 3-to-88 Decoder Review units

99 Decoders and Encoders 4-to-10 Line Decoder with Inverted Output Review units

100 Decoders and Encoders 4-to-10 Line Decoder Review units

101 Decoders and Encoders n-to-2 n line decoder Generate all 2 n minterms (or maxterms) ) of the n input variables Outputs Noninverted y i =m i, i=0,1,2,,2,2 n -1 Inverted y i =m i =M i, i=0,1,2,,2,2 n -1 Review units

102 Decoders and Encoders Use decoder and gates to realize a function Example: Realize the following functions using a decoder. Example: f f 1 2 ( a, b, c, d) ( a, b, c, d) = = m 1 m m 2 m 7 + m4 + m 9 Sol: f f 1 2 = = ( m m m 1 ) ( m m m ) Review units

103 Decoders and Encoders Sol: f f 1 2 = ( m m m ) = ( m m m ) 9 Review units

104 Decoders and Encoders Encoder The inverse function of a decoder 8-to-33 Priority Encoder Review units

105 Read-Only Memories Read-Only Memory (ROM) Consists of semiconductor devices that interconnected to store binary data Review units

106 Read-Only Memories A n m ROM can realize m functions (F 1,F 2, F n ) of n variables. A ROM consists of a decoder and a memory array. 2 m Review units

107 Read-Only Memories Multiple-output combinational circuits can be realized using ROMs. Example: Realize the following functions using ROM. Review units

108 Read-Only Memories Sol: Review units

109 Read-Only Memories Example: Design a Design a code converter that converts a 4-bit 4 binary number to a hexadecimal digit and outputs the 7-bit 7 ASCII code. Review units

110 Read-Only Memories Sol: Because A 5 = A4, A6 = A 4, the ROM needs only five outputs. The ROM size is 16 words by 5 bits. The decoder is a 4-to4 to-16 decoder. Review units

111 Read-Only Memories Types of ROMs Mask-programmable ROMs Programmable ROMs (PROMs( PROMs) Electrically Erasable Programmable ROMs (EEPROMs,, E 2 PROMs) Flash memories Flash memory has built-in in programming and erase capability so that data can be written to it while it is in place in a circuit without the need for a separate programmer. Review units

(i) * / - (ii)2 3 $ $ * / - (c) Enlist the applications of Queue. Explain Priority Queue. [04]

(i) * / - (ii)2 3 $ $ * / - (c) Enlist the applications of Queue. Explain Priority Queue. [04] SILVER OAK COLLEGE OF ENGINEERING & TECHNOLOGY BE - SEMESTER III MID SEMESTER-I EXAMINATION WINTER 2018 SUBJECT: Data Structure (2130702) (CE/IT) Enroll. No. DATE: 08/08/2018 TIME:10:00 AM to11:30 AM TOTAL

More information

1. Explain the architecture and technology used within FPGAs. 2. Compare FPGAs with alternative devices. 3. Use FPGA design tools.

1. Explain the architecture and technology used within FPGAs. 2. Compare FPGAs with alternative devices. 3. Use FPGA design tools. Higher National Unit Specification General information for centres Unit code: DG3P 35 Unit purpose: This Unit is designed to enable candidates to gain some knowledge and understanding of the architecture

More information

1. Explain the architecture and technology used within PLDs. 2. Compare PLDs with alternative devices. 3. Use PLD design tools.

1. Explain the architecture and technology used within PLDs. 2. Compare PLDs with alternative devices. 3. Use PLD design tools. Higher National Unit Specification General information for centres Unit code: DG52 35 Unit purpose: This Unit is designed to enable candidates to gain some knowledge and understanding of the principles

More information

DIGITAL SYSTEM DESIGN LAB. L T P CLASS WORK : EXAM :25 TOTAL :50 DURATION OF EXAM :3 Hrs LIST OF EXPERIMENTS

DIGITAL SYSTEM DESIGN LAB. L T P CLASS WORK : EXAM :25 TOTAL :50 DURATION OF EXAM :3 Hrs LIST OF EXPERIMENTS LAB MANUAL D.S.D. DIGITAL SYSTEM DESIGN LAB L T P CLASS WORK : 25 0 0 2 EXAM :25 TOTAL :50 DURATION OF EXAM :3 Hrs 1. Design all the gates using VHDL. LIST OF EXPERIMENTS 2. Write VHDL programs for the

More information

Digital System Design

Digital System Design Digital System Design by Dr. Lesley Shannon Email: lshannon@ensc.sfu.ca Course Website: http://www.ensc.sfu.ca/~lshannon/courses/ensc350 Simon Fraser University Slide Set: 1 Date: January 12, 2009 Slide

More information

An Overview of Delay-Area Efficient Carry-Select Adder

An Overview of Delay-Area Efficient Carry-Select Adder An Overview of Delay-Area Efficient Carry-Select Adder Ranjit Chandrakant Gawande 1, Prof Vinodkumar P. Patil 2 PG Scholar, Department of E&TC Engg., NES's Gangamai COE, Nagaon, Dhule, M.S., India 1 Assistant

More information

VLSI Design and Implementation of Ternary Logic Gates and Ternary SRAM Cell

VLSI Design and Implementation of Ternary Logic Gates and Ternary SRAM Cell International Journal of Electronics and Computer Science Engineering 610 Available Online at www.ijecse.org ISSN- 2277-1956 VLSI Design and Implementation of Ternary Logic Gates and Ternary SRAM Cell

More information

UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering. EEC180A DIGITAL SYSTEMS I Winter 2006

UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering. EEC180A DIGITAL SYSTEMS I Winter 2006 UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering EEC180A DIGITAL SYSTEMS I Winter 2006 LAB 8: ARITHMETIC CIRCUIT DESIGN The purpose of this lab is to use the Altera circuit

More information

An Analysis of Delay and Area Efficient Carry-Select Adder

An Analysis of Delay and Area Efficient Carry-Select Adder An Analysis of Delay and Area Efficient Carry-Select Adder Vinod A. Malpure 1, Prof.Gurpreet Singh 2 PG Scholar, Department of VLSI Engg., Trinity Institute Of Technology And Research, Bhopal M.P., India

More information

OCCLUSION Generic Occlusion Algorithm Recursive Algorithm Recursive Algorithm with Look-ahead

OCCLUSION Generic Occlusion Algorithm Recursive Algorithm Recursive Algorithm with Look-ahead USING OCCLUSION TO EVALUATE CIRCUITS William Bricken February 200 CONTENTS ABSTRACT OCCLUSION Generic Occlusion Algorithm Recursive Algorithm Recursive Algorithm with Look-ahead OCCLUSION ARRAY MODEL (OAM)

More information

Ternary Logic Gates and Ternary SRAM Cell Implementation in VLSI

Ternary Logic Gates and Ternary SRAM Cell Implementation in VLSI Ternary Logic Gates and Ternary SRAM Cell Implementation in VLSI Punnam Nagaraju 1, Neerati Vishnuvardhan 2 1 SSIT Sathupalli, JNT University Hyderabad, Kukatpalli, Telangana, India 2 Auraros Technological

More information

Design for Low-Power at the Electronic System Level Frank Schirrmeister ChipVision Design Systems

Design for Low-Power at the Electronic System Level Frank Schirrmeister ChipVision Design Systems Frank Schirrmeister ChipVision Design Systems franks@chipvision.com 1. Introduction 1.1. Motivation Well, it happened again. Just when you were about to beat the high score of your favorite game your portable

More information

Energy, Power, and Transportation Technology 11

Energy, Power, and Transportation Technology 11 Energy, Power, and Transportation Technology 11 Unifying Concepts By the end of the course, students will be expected to demonstrate an understanding of energy, power, and transportation technology. Students

More information

Sl. No. Subject Code Subject Credits

Sl. No. Subject Code Subject Credits III Semester Sl. No. Subject Code Subject Credits 1 UMAXXXC Engineering Mathematics III 4.0 2 UEC322C Electronic Devices and Circuits 4.0 3 UEC323C Digital Electronics and Logic Design 4.0 4 UEC324C Network

More information

^DDD. (12) United States Patent Bill et al. (io) Patent No.: US 6,459,625 Bl (45) Date of Patent: Oct. 1,2002 US B1 \ / \

^DDD. (12) United States Patent Bill et al. (io) Patent No.: US 6,459,625 Bl (45) Date of Patent: Oct. 1,2002 US B1 \ / \ (12) United States Patent Bill et al. US006459625B1 (io) Patent No.: US 6,459,625 Bl (45) Date of Patent: Oct. 1,2002 (54) THREE METAL PROCESS FOR OPTIMIZING LAYOUT DENSITY (75) Inventors: Colin S. Bill,

More information

ELECTRICAL TECHNOLOGY TECHNOLOGY CODE: 667

ELECTRICAL TECHNOLOGY TECHNOLOGY CODE: 667 BANGLADESH TECHNICAL EDUCATION BOARD Agargaon, Dhaka-1207 4-YEAR DIPLOMA-IN-ENGINEERING PROGRAM SYLLABUS (PROBIDHAN-2016) ELECTRICAL TECHNOLOGY TECHNOLOGY CODE: 667 5th SEMESTER DIPLOMA IN ENGINEERING

More information

13. Back-End Design Flow for HardCopy Series Devices

13. Back-End Design Flow for HardCopy Series Devices 13. Back-End esign Flow for HardCopy Series evices H51019-1.4 Introduction This chapter discusses the back-end design flow executed by the HardCopy esign Center when developing your HardCopy series device.

More information

Homework Set 7 一 選擇題 經濟學原理與實習上 ( 作業 )

Homework Set 7 一 選擇題 經濟學原理與實習上 ( 作業 ) Homework Set 7 一 選擇題 1. Which of the following is not a characteristic of a competitive market? a. Buyers and sellers are price takers. b. Each firm sells a virtually identical product. c. Free entry is

More information

UTC Engineering Department Learning Cycles 2019 Year 13 Course Outline. Cycle 2.6 Cycle 2.7 Cycle 2.8 Cycle 2.9 Cycle 2.10

UTC Engineering Department Learning Cycles 2019 Year 13 Course Outline. Cycle 2.6 Cycle 2.7 Cycle 2.8 Cycle 2.9 Cycle 2.10 Unit 2 - Delivery of Engineering Processes Safely as a Team A1 Common engineering A2 Health and Safety requirements UTC Engineering Department Learning Cycles 2019 Year 13 Course Outline Cycle 2.6 Cycle

More information

Fairchild Semiconductor Application Note June 1983 Revised March 2003

Fairchild Semiconductor Application Note June 1983 Revised March 2003 Fairchild Semiconductor Application Note June 1983 Revised March 2003 High-Speed CMOS (MM74HC) Processing The MM74HC logic family achieves its high speed by utilizing microcmos Technology. This is a 3.5

More information

DNA Logic Gates to Design a 4*4 bit Carry Select Adder Circuit

DNA Logic Gates to Design a 4*4 bit Carry Select Adder Circuit DNA Logic Gates to Design a 4*4 bit Carry Select Adder Circuit Seeja V M Bannari Amman Institute of Technology Sathyamangalam, Erode seejavm@gmail.com Daniel Raj A Bannari Amman Institute of Technology

More information

Molecular Docking. Chao-Sheng Cheng. Department of Life Science, National Tsing Hua University

Molecular Docking. Chao-Sheng Cheng. Department of Life Science, National Tsing Hua University Molecular Docking Chao-Sheng Cheng Department of Life Science, National Tsing Hua University Computational ligand design Target Structure unknow known Ligand-based approaches (Pharmacophore + QSAR) Structure-based

More information

Design Problem 3 Solutions

Design Problem 3 Solutions CSE 260 Digital Computers: Organization and Logical Design Design Problem 3 Solutions Jon Turner Due 3/30/06 1. (100 points). In this problem, you will design a crossbar switch. This circuit has two data

More information

FPGA Programming. Tutorial. Wojciech Jalmuzna Technical Univeristy of Lodz

FPGA Programming. Tutorial. Wojciech Jalmuzna Technical Univeristy of Lodz FPGA Programming Tutorial Wojciech Jalmuzna Technical Univeristy of Lodz INTRODUCTION What is an FPGA Short FPGA History Programming Language vs. Hardware Description Language Conclusions? Files can be

More information

4. Back-End Timing Closure for HardCopy Series Devices

4. Back-End Timing Closure for HardCopy Series Devices 4. Back-End Timing Closure for HardCopy Series Devices H51013-2.4 Introduction Back-end implementation of HardCopy series devices meet design requirements through a timing closure process similar to the

More information

於選票上印上訂明團體的名稱及標誌的登記申請 APPLICATION FOR REGISTRATION OF THE NAME AND EMBLEM OF A PRESCRIBED BODY TO BE PRINTED ON BALLOT PAPERS

於選票上印上訂明團體的名稱及標誌的登記申請 APPLICATION FOR REGISTRATION OF THE NAME AND EMBLEM OF A PRESCRIBED BODY TO BE PRINTED ON BALLOT PAPERS 於選票上印上訂明團體的名稱及標誌的登記申請 APPLICATION FOR REGISTRATION OF THE NAME AND EMBLEM OF A PRESCRIBED BODY TO BE PRINTED ON BALLOT PAPERS 根據 選票上關於候選人的詳情 ( 立法會及區議會 ) 規例 第 8 條之規定 SPECIFIED PURSUANT TO SECTION 8 OF THE

More information

7 Dislocation & strengthening Mechanism in Metals

7 Dislocation & strengthening Mechanism in Metals 7 Dislocation & strengthening Mechanism in Metals vacancy diffusion (substutional) Dislocation & plastic deformation 7.2 Basic concept Plastic deformation motion of larger number of dislocation Motion

More information

Course Report Engineering Science Level National 5

Course Report Engineering Science Level National 5 Course Report 2018 Subject Engineering Science Level National 5 This report provides information on the performance of candidates. Teachers, lecturers and assessors may find it useful when preparing candidates

More information

ADVANCED VLSI COURSE IN PHYSICAL DESIGN

ADVANCED VLSI COURSE IN PHYSICAL DESIGN ADVANCED VLSI COURSE IN PHYSICAL DESIGN Course covers all advanced topics as prescribed by industry requirements Address: #11, 1st Floor, JCR Tower, Anantha Ram Reddy Layout, Behind Vinyaka Skoda Showroom,

More information

conductor - gate insulator source gate n substrate conductor - gate insulator gate substrate n open switch closed switch however: closed however:

conductor - gate insulator source gate n substrate conductor - gate insulator gate substrate n open switch closed switch however: closed however: MOS Transistors Readings: Chapter 1 N-type drain conductor - gate insulator source gate drain source n p n substrate P-type drain conductor - gate insulator source drain gate source p p substrate n 42

More information

Section II. HardCopy Design Center Migration Process

Section II. HardCopy Design Center Migration Process Section II. HardCopy Design Center Migration Process This section provides information about software support for HardCopy Stratix devices. This section contains the following: Chapter 3, Back-End Design

More information

11. Timing Closure in HardCopy Devices

11. Timing Closure in HardCopy Devices 11. Timing Closure in HardCopy Devices qii52010-2.0 Introduction Timing analysis is performed on an FPGA design to determine that the design s performance meets the required timing goals. This analysis

More information

Device Marking Device Device Package Reel Size Tape width Quantity 138 BSS138 SOT-23 Ø180mm 8 mm 3000 units. Parameter Symbol Limit Unit

Device Marking Device Device Package Reel Size Tape width Quantity 138 BSS138 SOT-23 Ø180mm 8 mm 3000 units. Parameter Symbol Limit Unit http://www.ncepower.com NCE N-Channel Enhancement Mode Power MOSFET GENERAL FEATURES V DS = 50V,I D = 0.22A R DS(ON) < 3Ω @ V GS =4.5V R DS(ON) < 2Ω @ V GS =10V Lead free product is acquired Surface Mount

More information

Single Ended Pass-Transistor Logic A comparison with CM OS and CP L

Single Ended Pass-Transistor Logic A comparison with CM OS and CP L Single Ended Pass-Transistor Logic A comparison with CM OS and CP L Mihai Munteanu, Peter A. Ivey, Luke Seed, Marios Psilogeorgopoulos, Neil Powell, Istvan Bogdan University of Sheffield, E.E.E. Department,

More information

Why Care? 因何关注. Thoughts for the two great economic superpowers and those who aspire to such power 有关两个经济超级大国及其追随者的思索

Why Care? 因何关注. Thoughts for the two great economic superpowers and those who aspire to such power 有关两个经济超级大国及其追随者的思索 Why Care? 因何关注 Thoughts for the two great economic superpowers and those who aspire to such power 有关两个经济超级大国及其追随者的思索 Gerry Stokes, Battelle Beijing October 2007 My topic 我的议题 Why should the United States

More information

First Commercial Demonstration of an Emerging Memory Technology for Embedded flash using CBRAM

First Commercial Demonstration of an Emerging Memory Technology for Embedded flash using CBRAM adesto TECHNOLOGIES First Commercial Demonstration of an Emerging Memory Technology for Embedded flash using CBRAM P. Blanchard, C. Gopalan, J. Shields, W. Lee, Y. Ma, S. Park, B. Guichet, S. Hsu, T. Gallo,

More information

Inviting Reputable Contractors / Suppliers Code Category Code Category Address: Mailing Address Company Website:

Inviting Reputable Contractors / Suppliers Code Category Code Category  Address: Mailing Address Company Website: Inviting Reputable Contractors / Suppliers K&K Property is one of the fastest growing property developer with more than 20 years of real estate investments and development in Asia Pacific. We are currently

More information

Point out that when you compare two sets by using fractions, the objects in the sets do not need to be the same size or even the same kind.

Point out that when you compare two sets by using fractions, the objects in the sets do not need to be the same size or even the same kind. Fractions What are some of the ways we use fractions every day? Fractions represent a part of a whole object or unit. (Provide some sets of objects for students to work with to help them understand the

More information

國立彰化師範大學 104 學年度碩士班招生考試試題

國立彰化師範大學 104 學年度碩士班招生考試試題 共 8 頁, 第 1 頁 選擇題 :( 請選出最佳答案,70%) 1. Planning consists of all of these areas EXCEPT: (A) predicting results under various alternatives (B) deciding how to attain the desired goals (C) selecting organizational

More information

G.C.E. (A/L) Examination June 2017 Conducted by Field Work Center, Thondaimanaru. Information & Communication Technology (ICT)

G.C.E. (A/L) Examination June 2017 Conducted by Field Work Center, Thondaimanaru. Information & Communication Technology (ICT) G.C.E. (A/L) Examination June 2017 Conducted by Field Work Center, Thondaimanaru. In Collaboration with the Northern Provincial Department of Education Information & Communication Technology (ICT) Grade

More information

Design of Full Adder and Full Subtractor using DNA Computing

Design of Full Adder and Full Subtractor using DNA Computing Design of Full Adder and Full Subtractor using DNA Computing Ashish Lamaniya Department of Computer Sc. & Engineering, SRIT, RGPV University, Jabalpur, India Prof Brajesh Patel Head of Computer Sc. & Engineering

More information

1.2 Geometry of a simplified two dimensional model molecule Discrete flow of empty space illustrated for two dimensional disks.

1.2 Geometry of a simplified two dimensional model molecule Discrete flow of empty space illustrated for two dimensional disks. 1.1 Geometric models of protein surfaces. 3 1.2 Geometry of a simplified two dimensional model molecule. 5 1.3 The family of alpha shapes or dual simplicial complexes for a two-dimensional toy molecule.

More information

TERMS AND CONDITIONS IN RESPECT OF KLUB 11 Summer Redemption Program (Start from 30 Jun 2018 )

TERMS AND CONDITIONS IN RESPECT OF KLUB 11 Summer Redemption Program (Start from 30 Jun 2018 ) TERMS AND CONDITIONS IN RESPECT OF KLUB 11 Summer Redemption Program (Start from 30 Jun 2018 ) 1 Applicable Activity By participation in the activity organized by K11 Loyalty Program Limited ( KLUB 11

More information

Convolutional Coding

Convolutional Coding // Convolutional Coding In telecommunication, a convolutional code isatypeoferror- correcting code in which m-bit information symbol to be encoded is transformed into n-bit symbol. Convolutional codes

More information

Smith Meter AccuLoad III Unloading

Smith Meter AccuLoad III Unloading Electronic Preset Delivery System Smith Meter AccuLoad III Unloading Issue/Rev. 0.1 (10/10) Bulletin AB06055 Overview Note: This feature is only available when using AccuLoad III-X Revision 10.01 firmware

More information

1. Course title Logic Design 2. Course number

1. Course title Logic Design 2. Course number Course Syllbus 1. Course title Logic Design 2. Course number 1901204 3. Credit hours (theory, prcticl) 3 Contct hours (theory, prcticl) 3 4. Prerequisites/corequisites Discrete Mthemtics (1901101) 5. Progrm

More information

Sexual Reproduction, Meiosis, and Genetic Recombination

Sexual Reproduction, Meiosis, and Genetic Recombination Chapter 20 Sexual Reproduction, Meiosis, and Genetic Recombination OUTLINE Sexual Reproduction Meiosis Genetic Variability: Segregation and Assortment of Alleles Genetic Variability: Recombination and

More information

Research Article Modified 16-b Square-root Low Power Area Efficient Carry Select Adder

Research Article Modified 16-b Square-root Low Power Area Efficient Carry Select Adder Research Journal of Applied Sciences, Engineering and Technology 8(21): 222-2226, 214 DOI:1.1926/rjaset.8.1221 ISSN: 24-7459; e-issn: 24-7467 214 Maxwell Scientific Publication Corp. Submitted: September

More information

THE CHINESE UNIVERSITY OF HONG KONG

THE CHINESE UNIVERSITY OF HONG KONG THE CHINESE UNIVERSITY OF HONG KONG Outsourcing Policy in CUHK (Abridged Version for the Web) 1. The Chinese University of Hong Kong (CUHK), as a publicly-funded institution and a good and responsible

More information

RFID 標準推動論壇. EPCglobal HF V2.0 VS. ISO 主講 : 劉穎昌. 11, Oct, 2007 正隆 RFID 應用驗測中心

RFID 標準推動論壇. EPCglobal HF V2.0 VS. ISO 主講 : 劉穎昌. 11, Oct, 2007 正隆 RFID 應用驗測中心 RFID 標準推動論壇 EPCglobal HF V2.0 VS. ISO 18000-3 主講 : 劉穎昌 11, Oct, 2007 正隆 RFID 應用驗測中心 簡報綱要 RFID HF 相關標準簡介 ISO 18000-3 3 VS. EPCglobal HF V2.0 優劣點比較 結論 RFID HF 國際標準 ISO 18000-3 ISO 15693 ISO 14443A ISO 14443B

More information

Fuzzy Based Hybrid Solar-Wind Energy Harvesting Using Mppt Control Technique

Fuzzy Based Hybrid Solar-Wind Energy Harvesting Using Mppt Control Technique Indian Journal of Science and Technology, Vol 9 S(1), DOI: 10.17485/ijst/2016/v9iS(1)/108444 December 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Fuzzy Based Hybrid Solar-Wind Energy Harvesting

More information

MAINTENANCE MANUAL BACKPLANE BOARD P29/ (344A3927P35) AND SPREADER BOARD P29/ (344A3927P21) TABLE OF CONTENTS

MAINTENANCE MANUAL BACKPLANE BOARD P29/ (344A3927P35) AND SPREADER BOARD P29/ (344A3927P21) TABLE OF CONTENTS MAINTENANCE MANUAL P29/7720029000 (344A3927P35) AND SPREADER BOARD P29/5000064000 (344A3927P21) TABLE OF CONTENTS Page DESCRIPTION... 1... 1 SPREADER BOARD... 2 OUTLINE AND SCHEMATIC DIAGRAMS... 4 SPREADER

More information

Assembly Language Fundamentals of Assembly language

Assembly Language Fundamentals of Assembly language Assembly Language Fundamentals of Assembly language 1 Instruction Execution and Addressing Instruction address = Code Segment address (CS) + Instruction Offset (IP) Data address = Data Segment address

More information

Is Now Part of To learn more about ON Semiconductor, please visit our website at

Is Now Part of To learn more about ON Semiconductor, please visit our website at Is Now Part of To learn more about ON Semiconductor, please visit our website at www.onsemi.com ON Semiconductor and the ON Semiconductor logo are trademarks of Semiconductor Components Industries, LLC

More information

DNA Circuits for Analog Computing

DNA Circuits for Analog Computing DNA Circuits for Analog Computing Tianqi Song Department of Computer Science Duke University 1 Outline Motivation What is DNA computing? Why are we interested in DNA computing? What has been done? Why

More information

Slide Set 12, Handouts Page 1. Overview. Slide Set 12: More about Timing. Review: Delay through a Series of Gates.

Slide Set 12, Handouts Page 1. Overview. Slide Set 12: More about Timing. Review: Delay through a Series of Gates. Overview Slide Set 1: More about Timing Steve Wilton Dept. of EE University of British olumbia stevew@ece.ubc.ca In this lecture we will look at delay estimation in more detail, as well as explain how

More information

Anadigm FPAA Solutions Training Class II

Anadigm FPAA Solutions Training Class II Anadigm FPAA Solutions Training Class II AnadigmApex On Line Customer Seminar Series Nov 2016 page 1 Learning goals AnadigmApex FPAA switched capacitor technology AnadigmApex silicon components and architecture

More information

George Gross Department of Electrical and Computer Engineering University of Illinois at Urbana-Champaign

George Gross Department of Electrical and Computer Engineering University of Illinois at Urbana-Champaign ECE 333 GREEN ELECTRIC ENERGY 14. PV Systems George Gross Department of Electrical and Computer Engineering University of Illinois at Urbana-Champaign ECE 333 2002 2017 George Gross, University of Illinois

More information

管理科學銘傳大學八十八學年度金融研究所碩士班招生考試國際企業管理第三節 經濟學試題

管理科學銘傳大學八十八學年度金融研究所碩士班招生考試國際企業管理第三節 經濟學試題 管理科學銘傳大學八十八學年度金融研究所碩士班招生考試國際企業管理第三節 經濟學試題 一. True or False ( 是非題, 每題 2 分, 共 20 分, 不倒扣 ): (1) A company produces an intermediate good on the last year. if it is sold, GDP will not increase, but if it is

More information

8. Description, Architecture, and Features

8. Description, Architecture, and Features 8. Description, Architecture, and Features H51007-2.3 Introduction HardCopy APEX TM devices extend the flexibility of high-density FPGAs to a cost-effective, high-volume production solution. The migration

More information

Single Phase Grid Connected Photovoltaic System

Single Phase Grid Connected Photovoltaic System Single Phase Grid Connected Photovoltaic System 1 Kavya S A, 2 Komal T, 3 Pooja A, 3 Sahana S N and 4 Mr Sachin Angadi 1 ankalakote.kavya@gmail.com Abstract Due to global environmental concerns, photovoltaic

More information

MOS GP Computer 8 I C TY PES INC PU

MOS GP Computer 8 I C TY PES INC PU MOS GP Computer by R. K. BOOHER North American RockweU Corporation Anaheim, California INTRODUCTION \Vhen the 2-phase, 20-bit shift registers using P-channel enhancement mode MOS-FET's were first introduced

More information

Design and Implementation of Genetic Algorithm as a Stimulus Generator for Memory Verification

Design and Implementation of Genetic Algorithm as a Stimulus Generator for Memory Verification International Journal of Emerging Engineering Research and Technology Volume 3, Issue 9, September, 2015, PP 18-24 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) Design and Implementation of Genetic

More information

Swiss Server Client Command Protocol

Swiss Server Client Command Protocol =============================================================================== Swiss Server Client Command Protocol 2016-10-26 Peter S'heeren, Axiris -------------------------------------------------------------------------------

More information

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER

MODBUS-RTU Applied to the XR10CX Control WATER HEATER DIGITAL OPERATING CONTROLLER MODBUS-RTU Applied to the Control WATER HEATER DIGITAL OPERATING CONTROLLER PVI INDUSTRIES, LLC - Fort Worth, Texas 76111 - Web www.pvi.com - Phone 1-800-433-5654 PV500-67 03/17 Table of Contents 1. THIS

More information

Microelectronics Devices

Microelectronics Devices Microelectronics Devices Yao-Joe Yang 1 Outline Basic semiconductor physics Semiconductor devices Resistors Capacitors P-N diodes BJT/MOSFET 2 Type of Solid Materials Solid materials may be classified

More information

Design of Arithmetic and Control Cells for a DNA Binary Processor

Design of Arithmetic and Control Cells for a DNA Binary Processor 2015 International Conference on Computational Science and Computational Intelligence Design of Arithmetic and Control Cells for a DNA Binary Processor Aby K George Electrical and Computer Engineering

More information

Inventory Management 101 Basic Principles SmartOps Corporation. All rights reserved Copyright 2005 TeknOkret Services. All Rights Reserved.

Inventory Management 101 Basic Principles SmartOps Corporation. All rights reserved Copyright 2005 TeknOkret Services. All Rights Reserved. Inventory Management 101 Basic Principles 1 Agenda Basic Concepts Simple Inventory Models Batch Size 2 Supply Chain Building Blocks SKU: Stocking keeping unit Stocking Point: Inventory storage Item A Loc

More information

CMOS VLSI Design. Introduction. All materials are from the textbook Weste and Harris, 3 rd Edition CMOS VLSI DESIGN. Introduction

CMOS VLSI Design. Introduction. All materials are from the textbook Weste and Harris, 3 rd Edition CMOS VLSI DESIGN. Introduction CMOS VLSI Design Introduction ll materials are from the textbook Weste and Harris, 3 rd Edition CMOS VLSI DESIGN Introduction Chapter previews the entire field, subsequent chapters elaborate on specific

More information

Platform-Based Design of Heterogeneous Embedded Systems

Platform-Based Design of Heterogeneous Embedded Systems Platform-Based Design of Heterogeneous Embedded Systems Ingo Sander Royal Institute of Technology Stockholm, Sweden ingo@kth.se Docent Lecture August 31, 2009 Ingo Sander (KTH) Platform-Based Design August

More information

Daiwa Roynet Hotel Naha Kokusaidori. DoubleTree by Hilton Hotel Naha. Hotel Gracery Naha - 135

Daiwa Roynet Hotel Naha Kokusaidori. DoubleTree by Hilton Hotel Naha. Hotel Gracery Naha - 135 訂購乘搭國泰航空 / 國泰港龍航空之本自由行套票 *, 即可以 88 折加購 JR 鐵路周遊券或昇龍道巴士周遊券或享用本租車 2+1 優惠 * 每個預訂只可享用一種優惠 本優惠不可與其他優惠共用 現凡於 5 月 31 前訂購 7 月 8 前出發之國泰沖繩套 票, 每位即可享以下優惠一次 : 1. 於 Steak 88 用餐, 可享指定額外餐點一份 ; 2. 於 EN Okinawa 用餐, 可享指定免費刺身一份

More information

Model 3185E DUAL TONE DECODER INSTRUCTION MANUAL

Model 3185E DUAL TONE DECODER INSTRUCTION MANUAL Model 3185E DUAL TONE DECODER INSTRUCTION MANUAL Monroe Electronics 100 Housel Ave Lyndonville NY 14098 phone 585-765-2254 fax 585-765-9330 monroe-electronics.com Printed in USA Copyright Monroe Electronics,

More information

SUPPLY NETWORK ANALYZER CVM-SP SERIES INSTRUCTION MANUAL ( M / 01A

SUPPLY NETWORK ANALYZER CVM-SP SERIES INSTRUCTION MANUAL ( M / 01A SUPPLY NETWORK ANALYZER CVM-SP SERIES INSTRUCTION MANUAL ( M 981 310 / 01A ) (c) CIRCUTOR S.A. ----- CVM-SP & CVM-SP-RS485-C -------- --- Page No. 1 1.- MAIN FEATURES... 2 1.1.- Parameters measured and

More information

第 7,8 章烯烴和炔烴 : 性質, 命名, 合成及加成反應

第 7,8 章烯烴和炔烴 : 性質, 命名, 合成及加成反應 第 7,8 章烯烴和炔烴 : 性質, 命名, 合成及加成反應 C 3 Ethene Propene Ethyne sp 2 sp 一 ) 烯烴的 E, Z 命名系統 : 3 C C 3 C 3 cis-2-butene 3 C trans-2-butene cis- trans- 系統對某些烯烴類化合物, 不能給予明確的命名, 例如 : Cl F 在 (E)-, (Z), 命名系統中, 先確立雙鍵同一碳上基團的優先順序,

More information

Platform-Based Design of Heterogeneous Embedded Systems

Platform-Based Design of Heterogeneous Embedded Systems Platform-Based Design of Heterogeneous Embedded Systems Ingo Sander Royal Institute of Technology Stockholm, Sweden ingo@kth.se Docent Lecture August 31, 2009 Ingo Sander (KTH) Platform-Based Design August

More information

BMC-7 CONTROLLER MANUAL

BMC-7 CONTROLLER MANUAL BMC-7 CONTROLLER MANUAL 1-1-3236-900-00 REV L May 6, 2013 *Please check with the factory for latest version of this controller manual* IMPORTANT PLEASE OBSERVE ALL MOTOR POLYGON ASSEMBLY (MPA) SPECIFICATIONS

More information

COMPUI'ER-AIDED DESIGN WHAT IS REALLY WORTHWHILE?

COMPUI'ER-AIDED DESIGN WHAT IS REALLY WORTHWHILE? 3 January 1972 Earl M Vraa COMPUI'ER-AIDED DESIGN WHAT IS REALLY WORTHWHILE? Computer-Aided Design, Automated Design, Design Automation are terms which are freely interchanged by people in the computer

More information

CBS-8 SERIES INSTRUCTION MANUAL

CBS-8 SERIES INSTRUCTION MANUAL RELAY STATION CBS-8 SERIES INSTRUCTION MANUAL ( M98158101-20-06C-GB) (c) CIRCUTOR S.A. ----- Relay Station CBS-8 -------- --- Page No. 1 CBS-8 ANALYZER INDEX Page No. 1.- CHECKS ON RECEIPT...3 2.- GENERAL

More information

The Sealed Bid Auction Experiment:

The Sealed Bid Auction Experiment: The Sealed Bid Auction Experiment: This is an experiment in the economics of decision making. The instructions are simple, and if you follow them carefully and make good decisions, you may earn a considerable

More information

OHMEGA-PLY INTEGRAL PLANAR RESISTORS: THE LOWER COST ALTERNATIVE By Daniel Brandler Ohmega Technologies, Inc.

OHMEGA-PLY INTEGRAL PLANAR RESISTORS: THE LOWER COST ALTERNATIVE By Daniel Brandler Ohmega Technologies, Inc. OHMEGA-PLY INTEGRAL PLANAR RESISTORS: THE LOWER COST ALTERNATIVE By Daniel Brandler Ohmega Technologies, Inc. Printed circuit board designers are being forced to interconnect electronic devices of increasing

More information

Dwarfing peach trees and development of fruit quality by maintaining partially ringed bark strips as an innovative process in dwarfing technology

Dwarfing peach trees and development of fruit quality by maintaining partially ringed bark strips as an innovative process in dwarfing technology Botanical Studies (2006) 47: 251-257. PHYSIOLOGY Dwarfing peach trees and development of fruit quality by maintaining partially ringed bark strips as an innovative process in dwarfing technology A.B.M.

More information

Chapter 6 Inventories 高立翰

Chapter 6 Inventories 高立翰 Chapter 6 Inventories 高立翰 Preview of Chapter 6 會計學 ( 一 ) http://ppt.cc/mjfq 2 Study Objectives 1. Describe the steps in determining inventory quantities. 2. Explain the accounting for inventories and apply

More information

Designers Describe Next-Generation Application- Specific Devices

Designers Describe Next-Generation Application- Specific Devices End-User Analysis Designers Describe Next-Generation Application- Specific Devices Abstract: Systems designers rate third-party tool integration as one of the top factors in choosing an ASIC vendor, along

More information

Risk Management for Global Supply Chain

Risk Management for Global Supply Chain Risk Management for Global Supply Chain Yi-Chih Yang Associate Professor, Department of Shipping and Transportation Management, National Kaoshiung Marine University, Taiwan Outline Definition of supply

More information

G.C.E. (A/L) Examination November 2015 Conducted by Field Work Center, Thondaimanaru.

G.C.E. (A/L) Examination November 2015 Conducted by Field Work Center, Thondaimanaru. G.C.E. (A/L) Examination November 2015 Conducted by Field Work Center, Thondaimanaru. In Collaboration with the Zonal Education Office, Jaffna Information & Communication Technology (ICT) Grade - 13 (A/L)

More information

Introduction to PowerWorld Simulator: Interface and Common Tools

Introduction to PowerWorld Simulator: Interface and Common Tools Introduction to PowerWorld Simulator: Interface and Common Tools through Interconnected System Operation 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com

More information

International ejournals

International ejournals ISSN 2249 5460 Available online at www.internationalejournals.com International ejournals International Journal of Mathematical Sciences, Technology and Humanities 21 (2011) 205 212 ENERGY CONTROL CENTER

More information

Successful managers must be able to accurately predict the prices and production. Demand, Supply, and Market Equilibrium. Chapter

Successful managers must be able to accurately predict the prices and production. Demand, Supply, and Market Equilibrium. Chapter 2 Chapter Demand, Supply, and Market Equilibrium After reading this chapter, you will be able to: 2.1 Identify demand functions and distinguish between a change in demand and a change in quantity demanded.

More information

Analog Arts High Performance Instruments Comprehensive Instruction Manual

Analog Arts High Performance Instruments Comprehensive Instruction Manual P a g e 1 Overview Analog Arts Inc. www.analongarts.com Analog Arts High Performance Instruments Comprehensive Instruction Manual Contents P a g e 2 Overview OVERVIEW ------------------------------------------------------------------------------------------------------------12

More information

Russell County Schools 3rd Grade Math Pacing

Russell County Schools 3rd Grade Math Pacing 06-07 Operations and Algebraic Thinking [OA] Represent and solve problems involving multiplication and division. Understand properties of multiplication and the relationship between multiplication and

More information

NCE4618SP. NCE Common-Drain Dual N-Channel Enhancement Mode Field Effect Transistor. Description.

NCE4618SP. NCE Common-Drain Dual N-Channel Enhancement Mode Field Effect Transistor.   Description. NCE Common-Drain Dual N-Channel Enhancement Mode Field Effect Transistor Description The uses advanced trench technology to provide excellent R SS(ON), low gate charge and operation with gate voltages

More information

ECE 448 Lecture 9. FPGA Design Flow. George Mason University

ECE 448 Lecture 9. FPGA Design Flow. George Mason University ECE 448 Lecture 9 FPGA Design Flow George Mason University FPGA Design process (1) Design and implement a simple unit permitting to speed up encryption with RC5-similar cipher with fixed key set on 8031

More information

College of information technology Department of software

College of information technology Department of software University of Babylon Undergraduate: third class College of information technology Department of software Subj.: Application of AI lecture notes/2011-2012 ***************************************************************************

More information

Sharif University of Technology Introduction to ASICs

Sharif University of Technology Introduction to ASICs SoC Design Lecture 3: Introduction to ASICs Shaahin Hessabi Department of Computer Engineering Sharif University of Technology IC Technology The term ASIC is often reserved for circuits that are fabricated

More information

Analog Devices ADSP KS-160 SHARC Digital Signal Processor

Analog Devices ADSP KS-160 SHARC Digital Signal Processor Construction Analysis Analog Devices ADSP-21062-KS-160 SHARC Digital Signal Processor Report Number: SCA 9712-575 Global Semiconductor Industry the Serving Since 1964 17350 N. Hartford Drive Scottsdale,

More information

號碼 (No.) CT/2017/81449 日期 (Date) 2017/09/08 頁數 (Page) 2 of 5 測試結果 (Test Results) 測試部位 (PART NAME)No.1 測試部位 (PART NAME)No.2 測試部位 (PART NAME)No.3 白色塑膠 (

號碼 (No.) CT/2017/81449 日期 (Date) 2017/09/08 頁數 (Page) 2 of 5 測試結果 (Test Results) 測試部位 (PART NAME)No.1 測試部位 (PART NAME)No.2 測試部位 (PART NAME)No.3 白色塑膠 ( 號碼 (No.) CT/2017/81449 日期 (Date) 2017/09/08 頁數 (Page) 1 of 5 以下測試樣品係由申請廠商所提供及確認 (The following sample(s) was/were submitted and identified by/on behalf of the applicant as) 送樣廠商 (Sample Submitted By) 樣品名稱

More information

VLSI INTRODUCTION P.VIDYA SAGAR ( ASSOCIATE PROFESSOR) Department of Electronics and Communication Engineering, VBIT

VLSI INTRODUCTION P.VIDYA SAGAR ( ASSOCIATE PROFESSOR) Department of Electronics and Communication Engineering, VBIT VLSI INTRODUCTION P.VIDYA SAGAR ( ASSOCIATE PROFESSOR) contents UNIT I INTRODUCTION: Introduction to IC Technology MOS, PMOS, NMOS, CMOS & BiCMOS technologies. BASIC ELECTRICAL PROPERTIES : Basic Electrical

More information

ROEVER COLLEGE OF ENGINEERING AND TECHNOLOGY Elambalur, Perambalur

ROEVER COLLEGE OF ENGINEERING AND TECHNOLOGY Elambalur, Perambalur ROEVER COLLEGE OF ENGINEERING AND TECHNOLOGY Elambalur, Perambalur - 621220 DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year & Semester : IV / VIII Subject Code : GE 6151 Subject Name : COMPUTER PROGRAMMING

More information

VHDL Introduction. EL 310 Erkay Savaş Sabancı University

VHDL Introduction. EL 310 Erkay Savaş Sabancı University VHDL Introduction EL 310 Erkay Savaş Sabancı University 1 What is VHDL? VHDL stands for VHSIC Hardware Description Language VHSIC =Very High-Speed Integrated Circuit Initialized by US DoD as a sponsored

More information

植物生物技術與食品. Transgenic plants why we need them? 吳彰哲 (Chang-Jer Wu) Department of Food Science National Taiwan Ocean University

植物生物技術與食品. Transgenic plants why we need them? 吳彰哲 (Chang-Jer Wu) Department of Food Science National Taiwan Ocean University 植物生物技術與食品 吳彰哲 (Chang-Jer Wu) Department of Food Science National Taiwan Ocean University Transgenic plants why we need them? 1 Transgenic plants why we need them? 82% of all transgenic food in the world

More information