Common Source Stage Miller Approximation ZVTC Analysis Backgate Effect Claudio Talarico Gonzaga University

Size: px
Start display at page:

Download "Common Source Stage Miller Approximation ZVTC Analysis Backgate Effect Claudio Talarico Gonzaga University"

Transcription

1 Common Source Stage Miller Approximation ZVTC Analysis Backgate Effect Claudio Talarico Gonzaga University Sources: most of the figures were provided by B. Murmann

2 CS with Resistive Load V DD V out R D Bias Point (Q) v out i D = I D i d I d V OUT Signal v in V out = v OUT = V OUT v out V in Bias V IN - v in V IN V in v in - g m v in r o R D v out - A v = 2I D V OV R D r o 2I D V OV R D R g m often but not always!!! EE 303 Common Source Stage 2

3 Does r o matter? r o can be neglected in the gain calculation as long as the desired gain A v is much less than the intrinsic gain g m r o A V = g m (R D r o ) A V = g m R D g m r o g m R D = A V A V g m r o A V for A V <<g m r o v IN V in I B Vv OUT out Intrinsic Gain g m r o 2I D V OV = 2 λi D λv OV NOTE: The small signal parameters (that is g m and r o ) are determined by the DC bias point EE 303 Common Source Stage 3

4 Upper Bound on Gain In the basic common source stage R D performs two conflicting tasks it translates the device s drain current i d into the output voltage v out. it sets the drain bias voltage (V DS ) of the MOSFET This creates an upper bound on the achievable small signal voltage gain A V 2I D V OV R D = 2 V R D V OV V OUT A V max =2 V RDmax V OV min = 2 V DD V OV min V OV min 2 V DD V OV min V DD A B V IN V T NOTE: only a limited range of the VTC is useful for amplification V T C D For V IN large: V OUT V R DD ON (resistivedivider) R D R ON V IN V DD cutoff saturation triode EE 303 Common Source Stage 4

5 Voltage Gain and Drain Biasing Considerations () V IN I D V DS =V DD R D I D For a given I D if R D ( V DS ) the bias point Q moves toward triode region I D V IN5 Small R D Intercepts at V DD /R D Large R D D C Load line I D = (V DD -V OUT )/R D V IN4 V IN3 B V IN2 A V DD V IN V DS = V OUT EE 303 Common Source Stage 5

6 Voltage Gain and Drain Biasing Considerations (2) I d For a given I D if R D the voltage gain Intercepts at V DD /R D Small R D Q = (V DS,I D ) Large R D I D Q Q 2 I d =g m v in V out V DD v out EE 303 Common Source Stage 6

7 Importance of choosing the right bias point Deciding the location of the bias point Q affects: gain (the values of g m and r o depend on the DC bias) allowable signal swing at the output V out V out v out Q v out Q V in V in v in v in EE 303 Common Source Stage 7

8 Can we overcome the upper bound on gain? The upper bound comes from the fact that both gain and bias point depend on R D A Want large R D for large gain V max 2 V DD Want small R D to prevent device from entering triode region We can overcome the upper bound, if we can find a way to set V OUT V OV min independently of R D I d Large R D Small R D I D Q V OUT V out EE 303 Common Source Stage 8

9 CS stage with improved drain biasing scheme I d = I B V B V out R D at the point V out =V B we have I d =I B regardless the value of R D I B R D I d Ii d D v OUT V B V out I B Q v in V IN V B V out We wish to set I B =I D and V B =V OUT EE 303 Common Source Stage 9

10 Plot for I B =I D I d Large R D Small R D I D Q g m i d v out V out V OUT We can increase R D (and gain) without changing operating point EE 303 Common Source Stage 0

11 Infinite gain? It is tempting to think we can make R D nearly infinitely large and get close to infinite gain This is not possible in practice for two reasons Finite di d /dv ds of the transistor I B vv OUT out A V = g m r o 2I D V in v IN V OV λi D = 2 λv OV Sensitivity to mismatch between I D and I B will render the circuit impractical EE 303 Common Source Stage

12 Bias point shift due to mismatch in I B and I D For large values of R D, it becomes harder to absorb differences between I D and I B and still maintain an operating point that is close to the desired value I d /R D I B I D Q ΔI ΔV= ΔI R D V out V B V OUT EE 303 Common Source Stage 2

13 Solutions to bias point shift issue Limit R D to values such that expected mismatch in bias currents causes acceptable bias point variations Feedback Somehow sense V OUT and adjust I B (or I D ) such that the outputs sits at a proper operating point regardless of mismatch between I D and I B More later In a realistic circuit implementation, the auxiliary current source I B can be built, for example, using a pmos that operates in saturation More later (CS stage with current source load) EE 303 Common Source Stage 3

14 How fast can the CS stage go? There are two perspectives on how fast a circuit can go Which one of the two matters more is dependent on the application Time domain Apply a transient at the input (e.g. a voltage step), measure how fast the output settles Frequency domain Apply a sinusoid at the input, measure the gain and phase of the circuit transfer function across frequency Knowing the time domain response, we can estimate the frequency domain response, and vice versa EE 303 Common Source Stage 4

15 Common Source Stage revisited V B I B R R D Transducer V o v i R i V I R i models finite resistance in the driving circuit EE 303 Common Source Stage 5

16 Matlab Design Script % % C. Talarico % filename: csdesign.m % Design of CS amplifier using gm/id methodology % clc; clear all; close all; addpath('~/gm_id_starter_kit_204'); load 80n.mat; % specs. av0 = 0; Id = 400e-6; Ri = 0e3; RD = 2e3; Vdd =.8; VB = Vdd/2; % design choice Ln = 0.8e-6 % calculations gm = av0/rd gm_id = gm/id wt = lookup(nch, 'GM_CGG', 'GM_ID', gm_id, 'L', Ln); ft = wt/2/pi cgd_cgg = lookup(nch, 'CGD_CGG', 'GM_ID', gm_id, 'L', Ln); cdd_cgg = lookup(nch, 'CDD_CGG', 'GM_ID', gm_id, 'L', Ln); cgg = gm/wt; cgd = cgd_cgg*cgg cdd = cdd_cgg*cgg; cdb = cdd - cgd cgs = cgg - cgd gmro = lookup(nch, 'GM_GDS','GM_ID', gm_id, 'L', Ln) ro = gmro/gm % finding input bias VI = lookupvgs(nch, 'GM_ID', gm_id, 'L', Ln) % device sizing id_w = lookup(nch, 'ID_W', 'GM_ID', gm_id, 'L', Ln) W = Id/id_w % neglecting ro is not a very accurate assumption R = (/RD /ro)^- Av0 = gm*r Av0db = 20*log0(gm*R) % pole calculations (dominant pole assumption) b = Ri*(cgs cgd*(av0))r*(cdbcgd); b2 = Ri*R*(cgs*cdb cgs*cgd cdb*cgd); fp = /2/pi/b fp2 = /2/pi*b/b2 % zero calculation fz = /2/pi/cgd*gm! EE 303 Common Source Stage 6

17 What is the speed of the CS? V B Transducer R v i i V I I B R R D V o V DD =.8 V V B = V DD /2 = 0.9 V R i = 0KΩ R D = 2 KΩ V I = V I B = 400 µa W/L = 2.34 µm/0.8µm C gd v i R i v gs - C gs g m v gs r o R D R C db v o - C gd 0.28 ff C gs ff C db 5.72 ff R r o 7.63KΩ R = R D r o.58kω EE 303 Common Source Stage 7

18 CS Frequency Response AC Response 20 H(f) [db] 0 20 phase[h(f)] [deg] f [Hz] f [Hz] There seems to be two poles. Let s analyze the situation in detail. EE 303 Common Source Stage 8

19 Exact Analytical Analysis C gd 2 v i /R i R i v gs - C gs g m v gs r o R C db v o - Applying KCL at nodes and 2, and solving for v o /v i yields vo( s ) v ( s ) i g = 2 s db gd gs gd i m i gd m C R s g m [( C C ) R ( C C ) R g R RC ] s R R( C C C C C C ) gd i gs db gd db gs gd High entropy expression. Difficult to get any insight!!! EE 303 Common Source Stage 9

20 Issue We could in principle use this expression to plot the frequency response of the circuit and compute the 3-dB bandwidth The result would match the Spice simulation result exactly There are two issues with going in this direction for hand analysis The procedure is quite tedious Imagine how complex the equations would get for a multitransistor circuit The derived expression is useless for reasoning about the circuit from an intuitive design perspective By looking at this equation we cannot easily tell what exactly limits the bandwidth, or how we can improve it EE 303 Common Source Stage 20

21 Simulation Result Want to have a method that let s us estimate the dominant pole quickly using intuitive methods Without running into high entropy expressions that tell us things we are not interested in Non-dominant, high-frequency poles and zeros may or may not be important If they are, it may be OK to do a little more work H(f) [db] Dominant pole AC Response Non-dominant pole(s) and zero(s) f [Hz] EE 303 Common Source Stage 2

22 The Culprit The main reason for the high complexity in the derived expression is that C gd couples nodes and 2 For C gd =0, the circuit becomes 2 v i /R i R i v gs - C gs τ g m v gs R C db v o - τ 2 v o (s) v i (s) = v gs(s) v i (s) v o(s) v gs (s) = sr i C gs ( ) g m R ( src db ) = g mr ( sτ )( sτ 2 ) EE 303 Common Source Stage 22

23 A Promising Trick: Miller Theorem Z 2 General Linear V Network V K V 2 V 2 V - Z K General Linear Network Z K K V 2 - EE 303 Common Source Stage 23

24 Finding K(s) for Our Circuit C gd 2 v gs - g m v gs R C db v o - Applying KCL at node 2, and solving for v o /v gs yields: " K(s) = v (s) s C % gd $ ' o v gs (s) = g g m mr$ ' $ sr(c gd C db )' $ ' # & EE 303 Common Source Stage 24

25 Circuit After Applying Miller Theorem 2 v i /R i R i v gs - C gs C gd [-K(s)] g m v gs R C db C gd [-/K(s)] v o - K( s ) = v v o gs ( s ) ( s ) = g m Cgd s gm R sr( Cgd C db ) z = g m C gd p = R(C gd C db ) Intuitively, the zero is caused because at high frequency C gd shorts the gate and drain of the device together, providing a direct path from the amplifier s input to output. Hence, as frequency increases beyond w z, the circuit appears to have one less node and one less pole (with C gd acting like a short, C gs, C db, are in parallel). Because the sign of w z is negative, the zero is in the RHP and therefore causes phase lag (just like a pole) rather than phase lead. EE 303 Common Source Stage 25

26 Miller Approximation As long as ω << ω z = g C m gd and ω << ω p = ( C ) R C gd db It is appropriate to approximate K( s ) = v v o gs ( s ) ( s ) = g m Cgd s gm R sr( Cgd C db ) g m R Approximating the gain term K(s) with its low-frequency value K(0) is called the Miller approximation EE 303 Common Source Stage 26

27 Resulting Circuit Model 2 v i /R i R i v gs - C gs g m v gs C gd [g m R] R C db C gd [/g m R] v o - This circuit model suggests that there are two poles p = p R i "# C gs C gd ( g m R) $ 2 = % R"# C db C gd ( / g m R) $ % The pole p 2 lies beyond the frequency range for which this model is valid; it must be discarded ω p2 = << ω R!" C db C gd / g m R # p = $ ( ) R(C db C gd ) EE 303 Common Source Stage 27

28 How about p? ω p =? << ω R i!" C gs C gd g m R # p = $ ( ) R(C db C gd ) ω p =? << ω R i!" C gs C gd g m R # z = g m = g R m $ C gd ( ) RC gd Whether or not these inequalities hold depends on the parameter values of the specific circuit in question In our example, we have R i =0kΩ > R=2kΩ, g m R 7.92, C gs > C db, C gd Conditions are met!! EE 303 Common Source Stage 28

29 Model for Dominant Pole Calculation 2 v i /R i R i v gs - C gs C gd [g m R] g m v gs R v o - Using calculated values from MATLAB script f 3dB = 2π R i [C gs C gd ( g m R)] = 2π 0kΩ[33.26 ff 0.28 ff( 7.92)] =27.37MHz Simulation result was MHz; very good match!! (less than 3% discrepancy) EE 303 Common Source Stage 29

30 Conclusions The Miller approximation is a great tool that allows us to calculate the bandwidth of our CS circuit example on the back of an envelope An important caveat is that the Miller approximation is only useful as long as the dominant time constant is with the input network of the circuit (node ) Usually the case when R i is large, and there is no large capacitance attached to v o For calculations, you will typically start by assuming that this condition is met, and later check and make sure that the obtained dominant pole frequency lies indeed far below the pole(s) and zero(s) of K(s) With a little bit of experience you will be able to do this by inspection Very important The Miller approximation allows quick calculation of the dominant pole frequency only It is unsuitable for estimating the non-dominant pole frequency EE 303 Common Source Stage 30

31 Dominant Pole Approximation: ZVTC Analysis Motivation: we saw that the Miller approximation is a very useful tool that allows us to estimate the -3dB bandwidth of our CS stage quickly and intuitively Wouldn t it be nice to have a similar technique that works for a broader class of circuits? The zero-value time constant (ZVTC) method is a tool that meets this demand We will continue to use the CS amplifier to illustrate this method, along with its mathematical underpinnings EE 303 Common Source Stage 3

32 Analysis Revisited () C gd 2 v i /R i R i v gs - C gs g m v gs R C db v o - vo( s ) = v ( s ) s i = a v0 m 2 [( C C ) R ( C C ) R g R RC ] s R R( C C C C C C ) db s z b s b s gd 2 2 gs gd g i m C R s g m i gd gd i gs db gd db gs gd EE 303 Common Source Stage 32

33 Analysis Revisited (2) We know that The transfer function of our circuit has a dominant pole that sets the -3dB bandwidth The non-dominant pole and zero have little influence on the -3dB bandwidth of the circuit Can we somehow use this fact to simplify the analysis? Without circuit-specific tricks like the Miller approximation H(f) [db] Dominant pole AC Response Non-dominant pole(s) and zero(s) f [Hz] EE 303 Common Source Stage 33

34 EE 303 Common Source Stage 34 Dominant Pole Approximation () If our goal is to estimate the -3dB frequency only, we can discard the zero and write s b b s a s b b s z s a s ) ( v s ) ( v v v i o = p p s p s a p p s p s p s a p s p s a s ) ( v s ) ( v v v v i o = Next, use the fact that p 2 >> p, where p 2 is the non-dominant pole and p is the dominant pole that sets the -3dB frequency

35 EE 303 Common Source Stage 35 Dominant Pole Approximation (2) We can now compare to the original expression to find This means that in order to estimate the -3dB bandwidth of the circuit, all we need to know is b! p p b b p b b s b b s a p p s p s a s ) ( v s ) ( v v v i o = 3 0 b p ω p s a s ) ( v s ) ( v db - v i o

36 b in Our Circuit vo( s ) v ( s ) i g = 2 s db gd gs gd i m i gd m C R s g m [( C C ) R ( C C ) R g R RC ] s R R( C C C C C C ) gd i gs db gd db gs gd ( Cdb Cgd ) R ( Cgs Cgd ) Ri gmri RCgd = RCdb RCgd RiC gs ( gmr) RiC gd b = Plug in numbers for our example to see if this works Looks familiar? b =.58kΩ 5.72 ff.58kω 0.28 ff 0kΩ ff ( 7.92)0kΩ 0.28 ff = 24.84ps 6.24ps ps 96.98ps =290.7ps f 3dB = 2π ps =23.37MHz Very good match! (Spice: MHz, Miller: MHz) EE 303 Common Source Stage 36

37 Zero-Value Time Constant Analysis A step-by-step circuit analysis method that allows us to determine b (and only b ) without solving for the complete transfer function! Here's how it works Remove all but one capacitor (C j ) Short independent voltage sources Remove independent current sources Calculate resistance seen by capacitor (R j ) and compute t j =R j C j Repeat above steps for all remaining capacitors in the circuit The sum of all t j is equal to b b = τ j ω 3dB b = τ j EE 303 Common Source Stage 37

38 Example () C gd v i R i v gs - C gs g m v gs R C db v o - Step : R i R =R i g m v gs R v o - τ = R i C gs EE 303 Common Source Stage 38

39 Example (2) Step 2: i t v t - R i v gs - g m v gs R A little more tricky, but any linear circuit method will do (e.g. apply test current (i t ), write expression for v t, find R=v t /i t R 2 = v t i t = v gs R(g m v gs i t ) i t = i t R i R(g m i t R i i t ) i t τ 2 = ( R R g i v gs = R i i t m RR i ) C gd = R i R g m RR i sum product x g m EE 303 Common Source Stage 39

40 Example (3) Step 3: R = R 3 τ 3 = RC db Step 4: Add up all time constants τ j = τ τ2 τ3 = i gs ( R Ri gmrri ) Cgd RCdb R C Step 5: Compute estimate of -3dB frequency ω 3dB τ j Exactly the same result we found on slide 37 EE 303 Common Source Stage 40

41 Important Notes on ZVTC () The key advantages of this method are It provides an excellent shortcut for finding the -3dB frequency of a circuit In addition, the method provides us with insight about the limiting time constants in our circuit! Whenever you apply the ZVTC method, it is important to remember the assumptions for which it is accurate The circuit has a dominant pole The circuit does not have any zeros in the vicinity of its -3dB frequency The time constants computed in the ZVTC method do not correspond to poles! Remember that the sum of the time constants is equal to b EE 303 Common Source Stage 4

42 Important Notes on ZVTC (2) When the underlying assumptions are not precisely met, it may still be OK to work with ZVTC Provided that you clearly understand what you are doing Example : AC coupling caps or bypass caps Meant to be shorts at high frequencies, and do not degrade the signal bandwidth Typically OK to discard these caps to find the upper corner frequency of the circuit Example 2: Multiple poles of similar (or same) magnitude See next page EE 303 Common Source Stage 42

43 Two-Pole Example () R v i v x C g m v x R C - - v o Exact calculation of -3dB frequency vo( s ) = v ( s ) i 2 = ω g m R ( src) 2 3dB R 2 2 C 2 We do not have a dominant pole!! ω 3dB = 2 = RC RC EE 303 Common Source Stage 43

44 Two-Pole Example (2) R v i v x C g m v x R C - - v o ZVTC method ω τ RC RC 3 db = = 0. 5 RC Error = = 22% ZVTC bandwidth estimates tend to be conservative Actual bandwidth is almost always at least as high as estimate EE 303 Common Source Stage 44

45 Useful Expressions R gd R D R gs = R G R S g m R S R G R gs R S R ds R ds = r 0 R D R S g m R S R gd = R G R D G m R G R D g m G m = g m R S EE 303 Common Source Stage 45

46 Hspice Deck * Common source amplifier * filename: commonsource.sp * C. Talarico, Fall 204 *** device model.include../ece mod *** useful options.option post brief nomod accurate *** netlist vdd vdd 0.8 vb vb ib vdd vo 400u vi vi 0 dc ac mn vo vg 0 0 nmos w=2.34u l=0.8u RD vb vo 2k Ri vi vg 0K *** analysis.op.ac dec 0 00 T.pz v(vo) vi *** measurements.measure AC av0 find V(vo) at K.measure AC av0db find vdb(vo) at K.measure AC f3db when Vdb(vo)='av0db - 3'.end! EE 303 Common Source Stage 46

47 Plotting Hspice Results in Matlab % % cs_plot.m % clear all; close all; format short eng addpath('/usr/local/matlab/personal/hspicetoolbox'); y = loadsig('./commonsource.ac0'); lssig(y) figure(); subplot(2,,); freq = evalsig(y,'hertz'); vo = evalsig(y,'v_vo'); magdb = 20*log0(abs(vo)); phase = 80*unwrap(angle(vo))/pi; semilogx(freq, magdb,'linewidth',2, 'color', 'b', 'linestyle', '-'); grid on; ylabel(' H(f) [db]', 'Fontsize', 4); xlabel(' f [Hz]', 'Fontsize', 4); title('ac Response', 'Fontsize', 6); xmin = e4; xmax = e; xlim([xmin xmax]); ymax = 25; ymin = -40; ylim([ ymin ymax]); subplot(2,,2); semilogx(freq, phase,'linewidth',2, 'color', 'b', 'linestyle', '-'); grid on; ylabel(' phase[h(f)] [deg]', 'Fontsize', 4); xlabel(' f [Hz]', 'Fontsize', 4); xmin = e4; xmax = e; xlim([xmin xmax]); ymax = 200; ymin = 0; ylim([ ymin ymax]); avo = abs(vo()) av0db = magdb() f3db = interp(magdb, freq, magdb()-3, 'spline')! EE 303 Common Source Stage 47

48 Simulated DC Operating Point element 0:mn model 0:nmos region Saturati id u ibs 0. ibd 0. vgs m vds m vbs 0. vth m vdsat 5.878m vod m beta m gam eff m gm 4.920m gds 27.76u gmb.709m cdtot f cgtot f cstot f cbtot f cgs f cgd f cdtot C gd C db cgtot C gs C gd C gb cstot C gs C sb cbtot C gb C sb C db cgs C gs cgd C gd Good Agreement! Design values: g m = 5mS c dd = 26 ff c gg = ff c gd = 0.28 ff c gs = c gg c gd = = ff EE 303 Common Source Stage 48

49 Simulated AC Response AC Response Magnitude [db] gain = 8 db (7.8) f 3db = MHz % pole calculations (dominant pole assumption) b = Ri*(cgs cgd*(av0))r*(cdbcgd); b2 = Ri*R*(cgs*cdb cgs*cgd cdb*cgd); fp = /2/pi/b fp2 = /2/pi*b/b2 % zero calculation fz = /2/pi/cgd*gm! The design is essentially right on target!! Typical discrepancies are no more than 0%-20% Frequency [Hz] ****** pole/zero analysis input = 0:vi output = v(vo) poles (rad/sec) poles ( hertz) real imag real imag x x g g 0. zeros (rad/sec) zeros ( hertz) real imag real imag 469.7g g 0.! Calculated values: A V (7.98 db); fp 23.30MHz; fp2 2.37GHz; fz 77.43GHz EE 303 Common Source Stage 49

50 Matlab Script to plot the Simulation Results % % cs_cuteplot.m % clear all; close all; format short eng addpath('/usr/local/matlab/personal/hspicetoolbox'); y = loadsig('./commonsource.ac0'); lssig(y) figure(); freq = evalsig(y,'hertz'); vo = evalsig(y,'v_vo'); magdb = 20*log0(abs(vo)); phase = 80*unwrap(angle(vo))/pi; semilogx(freq, magdb,'linewidth',2, 'color', 'b', 'linestyle', '-'); grid on; ylabel(' Magnitude [db]', 'Fontsize', 6); xlabel(' Frequency [Hz]', 'Fontsize', 6); xmin = e4; xmax = e2; xlim([xmin xmax]); av0 = abs(vo()) av0db = magdb() f3db = interp(magdb, freq, magdb()-3, 'spline') % Annotate title str = sprintf('ac Response\n'); str2 = sprintf(' gain = %0.2g db (%0.2g) - f_{3db} = %3.2f MHz', av0db, av0, f3db*e-6); str = {str, str2}; title(str, 'fontsize', 6); EE 303 Common Source Stage 50

51 Practical Design Considerations () If the load capacitance is modest and the source resistance is high, the Miller effect is likely to be the major limitation in the amplifier BW BW can be improved by sizing the transistor as small as possible. For a fixed current this implies that the device will exhibit a relatively large V OV. This has two drawbacks: To keep the transistor in saturation we need a higher DC voltage drop across the transistor (reduced headroom) Mobility degradation If the load capacitance is large and the source resistance is low, the output time constant will dominate and become the major limitation in the amplifier BW Large device width and small values of V OV are preferred (having the device operating near sub threshold gives the best gain-bw tradeoff) For low-gain, high frequency, it may be desirable to use resistor loads (if they do not require much silicon area) because they have less parasitic capacitances associated with them. EE 303 Common Source Stage 5

52 CS summary The CS stage is a decent (voltage controlled) current source ( decent trans-conductance amplifier) The CS stage can be used to realize a basic voltage amplifier, but it makes a good voltage amplifier only when terminated with a high impedance R in = (very high) R out = r o (moderately high) R in C gd 2 R out v i /R i R i v gs - C gs g m v gs r o R C db v o - D EE 303 Common Source Stage 52

53 More CS stage variations CS with Current-Source Load (practical implementation) CS with Diode-Connected Load ( ratiometric CS stage) CS with Degeneration EE 303 Common Source Stage 53

54 CS with Current-Source Load Realistic implementation of the CS basic stage with improved drain biasing scheme Use a pmos operating in saturation as load I B i D R D v OUT V B V B Source: Razavi v in V IN A V = g m (r o r o2 ) R in = R out = r o r o 2 EE 303 Common Source Stage 54

55 Design Considerations The upper side of the output signal swing V DD V DS2min = V DD ( V GS2 V T2 ) can be improved by increasing the width of M 2 If r o2 is not sufficiently large (for the desired gain), the length of M 2 can be increased. Increasing L 2 while keeping W 2 constant increases r o2 and hence the voltage gain, but at the cost of a higher V DS2 required to maintain M 2 in saturation. To maintain the same overdrive voltage both W and L must be increased. The penalty is the large capacitance (C gs2 C db2 ) introduced by M 2 at the output node V OV = 2 µc ox I D! L $ # & " W % The intrinsic gain of M can be increased by increasing L. Since r o is proportional to L/I D the intrinsic gain increases because λ depends more strongly on L than g m does:! W $ g m r o = 2µC ox # & " L % However, if W is not increased proportionally, the overdrive voltage V GS -V T increases, limiting the lower side (V DSmin ) of the output signal swing I D λi D NOTE: g m r o decreases as I D increases EE 303 Common Source Stage 55

56 Issue The output bias voltage V OUT of the circuit is not well defined. The stage is reliably biased only if a feedback loop forces V OUT to a known value. To be continued Since the current through the two MOS must stay the same, even a small error will cause a large shift of the bias voltage V OUT and push one of the transistor away from saturation pmos pmos ( 0% bias error) nmos 250 I out [µa] V out [V] EE 303 Common Source Stage 56

57 CS with current source load - Example () V DD =.8V; I D =50µA; V OUT =0.8V L = 0.8µm % % C. Talarico % filename: cscs_design.m % Design bias for CS with current source load % clc; clear all; close all; addpath('~/gm_id_starter_kit_204'); V GS = 0.68 V g m =.5 ms W = 4.94µm r o = KΩ A V = 9.57 V GS2 = V g m2 = 0.76 ms W 2 = 4.94µm r o2 = KΩ % The NMOS load 80n.mat; Ln = 0.8e-6 Vds = 0.8 Ibias = 50e-6 for Vgs=0.5:0.0:0.9 Id = lookup(nch, 'ID', 'VGS', Vgs, 'VDS', Vds, 'L', Ln); if (Id >= Ibias) Id Vgs=Vgs break end end gm = lookup(nch, 'GM', 'VGS', Vgs, 'VDS', Vds, 'L', Ln) gm_id = gm/id id_w = lookup(nch, 'ID_W', 'GM_ID', gm_id, 'L', Ln) W = Id/id_w gmro = lookup(nch, 'GM_GDS','GM_ID', gm_id, 'L', Ln) ro = gmro/gm % The PMOS load 80p.mat Ln = 0.8e-6 Vds = 0.8 Ibias = 50e-6 for Vgs=0.5:0.0:.2 Id = lookup(pch, 'ID', 'VGS', Vgs, 'VDS', Vds, 'L', Ln); if (Id >= Ibias) Id Vgs2=Vgs break end end gm2 = lookup(pch, 'GM', 'VGS', Vgs, 'VDS', Vds, 'L', Ln) gm_id = gm2/id id_w = lookup(pch, 'ID_W', 'GM_ID', gm_id, 'L', Ln) W2 = Id/id_w gmro2 = lookup(pch, 'GM_GDS','GM_ID', gm_id, 'L', Ln) ro2 = gmro2/gm2 AV = gm/(/ro/ro2) EE 303 Common Source Stage 57

58 CS with current source load - Example (2) * cs with current source load * filename: cscs.sp * C. Talarico, Fall 204 *** device model.include../ece mod *** useful options.option post brief nomod.param supply =.8 *** circuit vdd vdd 0 'supply' vi vi 0 dc 0.68 ac vb vb m vo vg 0 0 nmos w=4.94u l=0.8u m2 vo vb vdd vdd pmos w=4.94u l=0.8u Ri vi vg 0K *** analysis and measurements.op.ac dec 0 00 T.measure AC av0 find V(vo) at K.measure AC av0db find vdb(vo) at K.measure AC f3db when Vdb(vo)='av0db - 3'.alter amplifier with error * -0% error vb vb 0 '0.9*0.96'.end element 0:m 0:m2 model 0:nmos 0:pmos region Saturati Saturati id u u ibs ibd vgs m m vds m m vbs vth m m vdsat m m vod m m beta m m gam eff m m gm.5079m u gds u u gmb u u cdtot 7.77f f cgtot 0.9f f cstot f f cbtot.9484f.4786f cgs f 7.357f cgd f 3.800f av0= av0db= f3db= x element 0:m 0:m2 model 0:nmos 0:pmos region Saturati Linear id u u ibs ibd vgs m m vds m vbs vth m m vdsat m m vod m m beta m m gam eff m m gm.6650m u gds u u gmb u u cdtot 6.77f f cgtot 0.208f f cstot f 3.476f cbtot.5480f f cgs 7.234f f cgd f f av0= 5.93 av0db= f3db= x -0% error on V B!! EE 303 Common Source Stage 58

59 CS with current source load - Signal swing 5.5 M off; M 2 triode CS with current source load: DC Response um Technology M sat M 2 triode V out (max) = V B V T V out [V] M sat M 2 sat V DD =5V V B = V W /L = 0mm/mm W 2 /L 2 = 20mm/mm V out (min) = V in -V T M triode M 2 sat V in [V] EE 303 Common Source Stage 59

60 Bulk Terminal and Backgate Effect Bulk Connection Bulk Connection Scenarios Well Capacitance (PMOS) Backgate Effect Modified small signal model EE 303 Common Source Stage 60

61 Bulk Connection *Be aware: Ask the technology folks Know what it means! In our technology (N-well), only the PMOS device has an isolated bulk connection Newer technologies* (e.g. 0.3mm CMOS) also tend to have NMOS devices with isolated bulk ("tripple-well" process) EE 303 Common Source Stage 6

62 Aside: Modern Triple-Well Process n p p Courtesy Shoichi Masui EE 303 Common Source Stage 62

63 Bulk Connection Scenarios NMOS V DD PMOS Can connect bulk to source or V DD EE 303 Common Source Stage 63

64 Well Capacitance (PMOS) NMOS PMOS EE 303 Common Source Stage 64

65 Example 0.8um 0.64um 0.64um 0/0.8 0um 0.5um 0.3um * HSpice Netlist.model dwell d cj0=2e-4 is=e-5 m=0.5 Area = um x 3.4um = 37.4um 2 * d g s b mp 0 in out out pmos L=0.8um W=0um * a k area d 0 out dwell 37.4p EE 303 Common Source Stage 65

66 Backgate Effect () V GS - I D - V DS V SB - Depletion layer for V SB = 0 n n Depletion layer for V SB > 0 With positive V SB, depletion region around source grows Increasing amount of negative fixed charge in depletion region tends to "repel" electrons coming from source Need larger V GS to compensate for this effect (i.e. Vt increases) EE 303 Common Source Stage 66

67 Backgate Effect (2) This effect is usually factored in as an effective increase in V t Detailed analysis shows V t = V t 0 γ ( 2φ f V SB 2φ ) f A change in V t also means a change in drain current Define small-signal backgate transconductance g mb = I V D BS I = V D SB g g mb m V = V t SB I V D t V I GS D = V V t SB = 2 V 2φ SB γ f - EE 303 Common Source Stage 67

68 MOS Level Equations (Saturation) I DS = KP 2 W ( V GS V t ) 2 ( λv DS ) L eff V t = V TO γ ( 2φ f V SB 2φ ) f ' KP µc OX GAMMA γ = 2φ f = 2kT q ln N bulk n i 2ε SqN bulk ' C OX SPICE Parameter Names: VTO TOX KP LAMBDA (λ) GAMMA (ϒ) PHI (2Φ f ) ' C OX = ε OX t OX L eff = L mask 2X J lateral EE 303 Common Source Stage 68

69 Modified Small Signal Model C gd New term G D S B v gs - - v bs C gb C sb C gs g m v gs C db g mb v bs r o C bsub (only for PMOS in n-well) SUB EE 303 Common Source Stage 69

70 CS with Diode-Connected Load Source: Razavi " A V = g m $ r o # R in = R out = r o g m2 g m2b r o2 r o2 g' m2 g' m2 g m2 % ' & g m g m2 g m2b = g m g m2 with g' m2 = g m2 g m2b η η = g m2b g m2 A V g m g m2 η = $ W ' 2µC ox & ) % L ( $ W ' 2µC ox & ) % L ( 2 I D I D η = $ & % $ & % W L W L ' ) ( ' ) ( 2 η As long as M stay in saturation (M 2 is diode connected so as long as is ON, it is always in saturation) the gain is not affected by fluctuations of the bias current and bias voltages The gain is ratiometric The input-output characteristic is relatively linear EE 303 Common Source Stage 70

71 Design Considerations () High gain requires a strong input device (M ) and a weak load device (M 2 ) Issues: For high gain we need: very wide M (large input capacitance) or very long M 2 (large load capacitance) For high gain, the allowable voltage swing is significantly limited A V (W / L) (W / L) 2 = V GS2 V T2 V GS V T EE 303 Common Source Stage 7

72 Design Considerations (2) For square law devices, the output signal swing can be predicted analytically V out (max) = V DD V T 2 V out (min) = V DD V T 2 V DD V T β 2 / β NOTE: This clearly shows why for high gain (β 2 small, β large) the negative signal swing gets significantly limited Equate the equation of I D for M (edge triode region) and the equation of I D for M 2 (saturation) and solve for V out The stage is relatively linear even for large signals 2 µc OX! # " W L $ & % (V in V T ) 2 = 2 µc! W OX # " L $ & % 2 (V DD V out V T 2 ) 2! # " W L $ & % (V in V T ) =! # " W L $ & % 2 (V DD V out V T 2 ) NOTE: The eq. of V out vs. V in is a straight line EE 303 Common Source Stage 72

73 CS with diode connected load: I/O DC sweep () For M in cut off (V in < V T ), the output voltage settle to V out = V DD V T V out Digital folks like to say: NMOS pass a degraded VDD C P For V in > V T the device M enters saturation and V out follows an approximately straight line V out V in (W / L) (W / L) 2 As V in exceeds V out V T (beyond point A), M enters triode region, and the characteristics becomes non linear EE 303 Common Source Stage 73

74 CS with diode connected load: I/O DC sweep (2) CS with diode connected load: DC Response um Technology A Vmax = V out (max)=v DD -V T M cut-off V out [V] M saturation V out (min)=v in -V T A M triode V in [V] W /L = 200µm/µm; W 2 /L 2 = 20µm/µm; A V EE 303 Common Source Stage 74

75 Hspice Deck * CS with diode connected load * filename: csdiode.sp * C. Talarico, Fall 204 *** device model.model simple_nmos nmos kp=50u vto=0.5 lambda=0. cox=2.3e-3 capop=2 cgdo=0.5n cgso=0.5n cj=0.m cjsw=0.5n pb=0.95 mj=0.5 mjsw=0.95 acm=3 cjgate=0 hdif=.5u gamma=0.6 PHI=0.8 *** useful options.option post brief nomod accurate *** long_channel device vdd vdd 0 5 * load device mn2 vdd vdd vo 0 simple_nmos w=20u l=u * amplifing device mn vo vi 0 0 simple_nmos w=200u l=u vi vi 0 dc ac *** large signal analysis (sweep Vi).OP.dc vi end! EE 303 Common Source Stage 75

76 Matlab Script % % csdiode_plot.m % clear all; close all; format short eng addpath('/usr/local/matlab/personal/hspicetoolbox'); x = loadsig('./csdiode.sw0'); lssig(x) figure(); vo = evalsig(x,'v_vo'); vi = evalsig(x,'v_vi'); vth = 0.5; plot(vi, vo,'linewidth',2, 'color', 'b', 'linestyle', '-'); grid on; ylabel(' V_{out} [V]', 'Fontsize', 6); xlabel(' V_{in} [V]', 'Fontsize', 6); xmin = 0; xmax = 5; xlim([xmin xmax]); ymax = 5; ymin = 0; ylim([ ymin ymax]); % compute when M enters triode region for i=:length(vi) if vo(i)vth-vi(i) < 0 index = i; break end end % horizontal line at Vi for which M enter triode pointa = vo(index-); % take index- for margin line([min(vi) vi(index)], [pointa pointa], 'linestyle', '--',... 'linewidth', 2, 'color', 'r'); % compute gain h = 0.0; Y = diff(vo)/h; AV = min(y) % gain is negative str = sprintf('cs with diode connected load: DC Response - um Technology'); str2 = sprintf(' A_{Vmax} = %0.2f', abs(av)); str = {str, str2}; EE 303 Common Source Stage 76

77 Diode connected load vs. resistive load Advantages Ratiometric Gain depends on ratio of similar parameters Effect of process and temperature variations is reduced First order cancellation of nonlinearities Disadvantage Reduced swing EE 303 Common Source Stage 77

78 Improving the CS with Diode-Connected Load Source: Razavi = 0.75 I Add a current source across the diode connected load Since I D2 = I /4 we have: A V g m g m2 = 4µ n (W / L) µ p (W / L) 2 = 4 V GS2 V T 2 V GS V T For a given overdrive voltage this circuit achieves a gain 4x that of the original stage. Alternatively, for a given gain, we need b /b 2 4x smaller, so this helps in terms of swing. (For a gain of 0, the overdrive of M 2 needs to be only 2.5 x that of M instead of 0 x like in the original circuit). EE 303 Common Source Stage 78

79 CS with Source Degeneration Examining the effect of source degeneration is important because it is widely used to increase the output resistance of MOS current sources However, source degeneration in MOS transistors amplifiers in not widely used (as emitter degeneration in bipolar transistors) The g m of MOS transistors is much lower than that of bipolar transistors, so a further reduction in the effective transconductance G m is usually not desirable Although degeneration increases the input resistance in the bipolar case, in the MOS case Ri even without degeneration This is a local series FB more later EE 303 Common Source Stage 79

80 Effective transconductance of CS with degeneration G m = i o v i = g m g' m R S R S r o g m g' m R S Super-MOS r o >> R s Not necessarily true!! Think of the case where R S is obtained via another transistor. EE 303 Common Source Stage 80

81 Output Resistance of CS with degeneration R o = v t = R S r o [ g' m R S ] r o [ g' m R S ] i t EE 303 Common Source Stage 8

82 Gain of CS with degeneration () A V = G m (R o R D ) G m R D g mr D g' m R S For R S >> /g m (and g m g m ) A V R D R S The degeneration soften (i.e., it linearizes) the drain current I D dependency on V in. A fraction of V in appears across R S rather than as gate-source overdrive, thus leading to a smoother variation of I D The linearization is obtained at the cost of lower gain and higher noise (more on noise later ) EE 303 Common Source Stage 82

83 Gain of CS with degeneration (2).8 DC Transfer Function V out [V] CS w/o degeneration CS with degeneration V in [V] V DD =.8V; R D =2KΩ; R S =KΩ; W/L=2.34µm/0.8µm EE 303 Common Source Stage 83

84 BW of CS with Degeneration f 3db (CS with degeneration) f 3dB (CS w/o degeneration) ( g m R S ) Why? we need to know more about FB. To be continued EE 303 Common Source Stage 84

85 Summary of CS with degeneration The source degeneration introduces series negative FB Compared to the basic CS stage Gain is reduced by a factor g m R S R S controls the magnitude of the signal v gs. It ensures that v gs does not become too large and causes unacceptably high non linear distortion. Input Resistance is increased by a factor g m R S (but since R in this is not a big deal) Output Resistance is increased by a factor g m R S BW is increased by a factor g m R S EE 303 Common Source Stage 85

Common Drain Stage (Source Follower) Claudio Talarico, Gonzaga University

Common Drain Stage (Source Follower) Claudio Talarico, Gonzaga University Common Drain Stage (Source Follower) Claudio Talarico, Gonzaga University Common Drain Stage v gs v i - v o V DD v bs - v o R S Vv IN i v i G C gd C+C gd gb B&D v s vv OUT o + V S I B R L C L v gs - C

More information

3. Basic building blocks. Analog Design for CMOS VLSI Systems Franco Maloberti

3. Basic building blocks. Analog Design for CMOS VLSI Systems Franco Maloberti Inverter with active load It is the simplest gain stage. The dc gain is given by the slope of the transfer characteristics. Small signal analysis C = C gs + C gs,ov C 2 = C gd + C gd,ov + C 3 = C db +

More information

Lecture 13 MOSFET as an amplifier with an introduction to MOSFET small-signal model and small-signal schematics. Lena Peterson

Lecture 13 MOSFET as an amplifier with an introduction to MOSFET small-signal model and small-signal schematics. Lena Peterson Lecture 13 MOSFET as an amplifier with an introduction to MOSFET small-signal model and small-signal schematics Lena Peterson 2015-10-13 Outline (1) Why is the CMOS inverter gain not infinite? Large-signal

More information

ECE 342 Electronic Circuits. 3. MOS Transistors

ECE 342 Electronic Circuits. 3. MOS Transistors ECE 342 Electronic Circuits 3. MOS Transistors Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jschutt@emlab.uiuc.edu 1 NMOS Transistor Typically L = 0.1 to 3 m, W = 0.2 to

More information

1/13/12 V DS. I d V GS. C ox ( = f (V GS ,V DS ,V SB = I D. + i d + I ΔV + I ΔV BS V BS. 19 January 2012

1/13/12 V DS. I d V GS. C ox ( = f (V GS ,V DS ,V SB = I D. + i d + I ΔV + I ΔV BS V BS. 19 January 2012 /3/ 9 January 0 Study the linear model of MOS transistor around an operating point." MOS in saturation: V GS >V th and V S >V GS -V th " VGS vi - I d = I i d VS I d = µ n ( L V V γ Φ V Φ GS th0 F SB F

More information

ECE-343 Test 1: Feb 10, :00-8:00pm, Closed Book. Name : SOLUTION

ECE-343 Test 1: Feb 10, :00-8:00pm, Closed Book. Name : SOLUTION ECE-343 Test : Feb 0, 00 6:00-8:00pm, Closed Book Name : SOLUTION C Depl = C J0 + V R /V o ) m C Diff = τ F g m ω T = g m C µ + C π ω T = g m I / D C GD + C or V OV GS b = τ i τ i = R i C i ω H b Z = Z

More information

ECE 546 Lecture 11 MOS Amplifiers

ECE 546 Lecture 11 MOS Amplifiers ECE 546 Lecture MOS Amplifiers Spring 208 Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jesa@illinois.edu ECE 546 Jose Schutt Aine Amplifiers Definitions Used to increase

More information

ECE-343 Test 2: Mar 21, :00-8:00, Closed Book. Name : SOLUTION

ECE-343 Test 2: Mar 21, :00-8:00, Closed Book. Name : SOLUTION ECE-343 Test 2: Mar 21, 2012 6:00-8:00, Closed Book Name : SOLUTION 1. (25 pts) (a) Draw a circuit diagram for a differential amplifier designed under the following constraints: Use only BJTs. (You may

More information

Chapter 13 Small-Signal Modeling and Linear Amplification

Chapter 13 Small-Signal Modeling and Linear Amplification Chapter 13 Small-Signal Modeling and Linear Amplification Microelectronic Circuit Design Richard C. Jaeger Travis N. Blalock 1/4/12 Chap 13-1 Chapter Goals Understanding of concepts related to: Transistors

More information

Lecture 15: MOS Transistor models: Body effects, SPICE models. Context. In the last lecture, we discussed the modes of operation of a MOS FET:

Lecture 15: MOS Transistor models: Body effects, SPICE models. Context. In the last lecture, we discussed the modes of operation of a MOS FET: Lecture 15: MOS Transistor models: Body effects, SPICE models Context In the last lecture, we discussed the modes of operation of a MOS FET: oltage controlled resistor model I- curve (Square-Law Model)

More information

6.012 Electronic Devices and Circuits Spring 2005

6.012 Electronic Devices and Circuits Spring 2005 6.012 Electronic Devices and Circuits Spring 2005 May 16, 2005 Final Exam (200 points) -OPEN BOOK- Problem NAME RECITATION TIME 1 2 3 4 5 Total General guidelines (please read carefully before starting):

More information

MOSFET: Introduction

MOSFET: Introduction E&CE 437 Integrated VLSI Systems MOS Transistor 1 of 30 MOSFET: Introduction Metal oxide semiconductor field effect transistor (MOSFET) or MOS is widely used for implementing digital designs Its major

More information

Exact Analysis of a Common-Source MOSFET Amplifier

Exact Analysis of a Common-Source MOSFET Amplifier Exact Analysis of a Common-Source MOSFET Amplifier Consider the common-source MOSFET amplifier driven from signal source v s with Thévenin equivalent resistance R S and a load consisting of a parallel

More information

University of Toronto. Final Exam

University of Toronto. Final Exam University of Toronto Final Exam Date - Dec 16, 013 Duration:.5 hrs ECE331 Electronic Circuits Lecturer - D. Johns ANSWER QUESTIONS ON THESE SHEETS USING BACKS IF NECESSARY 1. Equation sheet is on last

More information

CMOS Analog Circuits

CMOS Analog Circuits CMOS Analog Circuits L6: Common Source Amplifier-1 (.8.13) B. Mazhari Dept. of EE, IIT Kanpur 19 Problem statement : Design an amplifier which has the following characteristics: + CC O in R L - CC A 100

More information

Chapter 4 Field-Effect Transistors

Chapter 4 Field-Effect Transistors Chapter 4 Field-Effect Transistors Microelectronic Circuit Design Richard C. Jaeger Travis N. Blalock 5/5/11 Chap 4-1 Chapter Goals Describe operation of MOSFETs. Define FET characteristics in operation

More information

MOS Transistor Theory

MOS Transistor Theory MOS Transistor Theory So far, we have viewed a MOS transistor as an ideal switch (digital operation) Reality: less than ideal EE 261 Krish Chakrabarty 1 Introduction So far, we have treated transistors

More information

ECE 523/421 - Analog Electronics University of New Mexico Solutions Homework 3

ECE 523/421 - Analog Electronics University of New Mexico Solutions Homework 3 ECE 523/42 - Analog Electronics University of New Mexico Solutions Homework 3 Problem 7.90 Show that when ro is taken into account, the voltage gain of the source follower becomes G v v o v sig R L r o

More information

ECE 546 Lecture 10 MOS Transistors

ECE 546 Lecture 10 MOS Transistors ECE 546 Lecture 10 MOS Transistors Spring 2018 Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jesa@illinois.edu NMOS Transistor NMOS Transistor N-Channel MOSFET Built on p-type

More information

University of Pennsylvania Department of Electrical Engineering. ESE 570 Midterm Exam March 14, 2013 FORMULAS AND DATA

University of Pennsylvania Department of Electrical Engineering. ESE 570 Midterm Exam March 14, 2013 FORMULAS AND DATA University of Pennsylvania Department of Electrical Engineering ESE 570 Midterm Exam March 4, 03 FORMULAS AND DATA. PHYSICAL CONSTANTS: n i = intrinsic concentration undoped) silicon =.45 x 0 0 cm -3 @

More information

Lecture 04: Single Transistor Ampliers

Lecture 04: Single Transistor Ampliers Lecture 04: Single Transistor Ampliers Analog IC Design Dr. Ryan Robucci Department of Computer Science and Electrical Engineering, UMBC Spring 2015 Dr. Ryan Robucci Lecture IV 1 / 37 Single-Transistor

More information

Lecture 10 MOSFET (III) MOSFET Equivalent Circuit Models

Lecture 10 MOSFET (III) MOSFET Equivalent Circuit Models Lecture 10 MOSFET (III) MOSFET Equivalent Circuit Models Outline Lowfrequency smallsignal equivalent circuit model Highfrequency smallsignal equivalent circuit model Reading Assignment: Howe and Sodini;

More information

Advanced Current Mirrors and Opamps

Advanced Current Mirrors and Opamps Advanced Current Mirrors and Opamps David Johns and Ken Martin (johns@eecg.toronto.edu) (martin@eecg.toronto.edu) slide 1 of 26 Wide-Swing Current Mirrors I bias I V I in out out = I in V W L bias ------------

More information

Lecture 37: Frequency response. Context

Lecture 37: Frequency response. Context EECS 05 Spring 004, Lecture 37 Lecture 37: Frequency response Prof J. S. Smith EECS 05 Spring 004, Lecture 37 Context We will figure out more of the design parameters for the amplifier we looked at in

More information

Assignment 3 ELEC 312/Winter 12 R.Raut, Ph.D.

Assignment 3 ELEC 312/Winter 12 R.Raut, Ph.D. Page 1 of 3 ELEC 312: ELECTRONICS II : ASSIGNMENT-3 Department of Electrical and Computer Engineering Winter 2012 1. A common-emitter amplifier that can be represented by the following equivalent circuit,

More information

Circuits. L2: MOS Models-2 (1 st Aug. 2013) B. Mazhari Dept. of EE, IIT Kanpur. B. Mazhari, IITK. G-Number

Circuits. L2: MOS Models-2 (1 st Aug. 2013) B. Mazhari Dept. of EE, IIT Kanpur. B. Mazhari, IITK. G-Number EE610: CMOS Analog Circuits L: MOS Models- (1 st Aug. 013) B. Mazhari Dept. of EE, IIT Kanpur 3 NMOS Models MOS MODEL Above Threshold Subthreshold ( GS > TN ) ( GS < TN ) Saturation ti Ti Triode ( DS >

More information

ECE 415/515 ANALOG INTEGRATED CIRCUIT DESIGN

ECE 415/515 ANALOG INTEGRATED CIRCUIT DESIGN ECE 415/515 ANALOG INTEGRATED CIRCUIT DESIGN CMOS PROCESS CHARACTERIZATION VISHAL SAXENA VSAXENA@UIDAHO.EDU Vishal Saxena DESIGN PARAMETERS Analog circuit designers care about: Open-loop Gain: g m r o

More information

Stability and Frequency Compensation

Stability and Frequency Compensation 類比電路設計 (3349) - 2004 Stability and Frequency ompensation hing-yuan Yang National hung-hsing University Department of Electrical Engineering Overview Reading B Razavi hapter 0 Introduction In this lecture,

More information

MOS Transistor Theory

MOS Transistor Theory CHAPTER 3 MOS Transistor Theory Outline 2 1. Introduction 2. Ideal I-V Characteristics 3. Nonideal I-V Effects 4. C-V Characteristics 5. DC Transfer Characteristics 6. Switch-level RC Delay Models MOS

More information

EE 330 Lecture 16. Devices in Semiconductor Processes. MOS Transistors

EE 330 Lecture 16. Devices in Semiconductor Processes. MOS Transistors EE 330 Lecture 16 Devices in Semiconductor Processes MOS Transistors Review from Last Time Model Summary I D I V DS V S I B V BS = 0 0 VS VT W VDS ID = μcox VS VT VDS VS V VDS VS VT L T < W μc ( V V )

More information

DC and Transient. Courtesy of Dr. Daehyun Dr. Dr. Shmuel and Dr.

DC and Transient. Courtesy of Dr. Daehyun Dr. Dr. Shmuel and Dr. DC and Transient Courtesy of Dr. Daehyun Lim@WSU, Dr. Harris@HMC, Dr. Shmuel Wimer@BIU and Dr. Choi@PSU http://csce.uark.edu +1 (479) 575-604 yrpeng@uark.edu Pass Transistors We have assumed source is

More information

EE 560 MOS TRANSISTOR THEORY PART 2. Kenneth R. Laker, University of Pennsylvania

EE 560 MOS TRANSISTOR THEORY PART 2. Kenneth R. Laker, University of Pennsylvania 1 EE 560 MOS TRANSISTOR THEORY PART nmos TRANSISTOR IN LINEAR REGION V S = 0 V G > V T0 channel SiO V D = small 4 C GC C BC substrate depletion region or bulk B p nmos TRANSISTOR AT EDGE OF SATURATION

More information

Lecture 12: MOSFET Devices

Lecture 12: MOSFET Devices Lecture 12: MOSFET Devices Gu-Yeon Wei Division of Engineering and Applied Sciences Harvard University guyeon@eecs.harvard.edu Wei 1 Overview Reading S&S: Chapter 5.1~5.4 Supplemental Reading Background

More information

The Devices. Devices

The Devices. Devices The The MOS Transistor Gate Oxyde Gate Source n+ Polysilicon Drain n+ Field-Oxyde (SiO 2 ) p-substrate p+ stopper Bulk Contact CROSS-SECTION of NMOS Transistor Cross-Section of CMOS Technology MOS transistors

More information

EECS 141: FALL 05 MIDTERM 1

EECS 141: FALL 05 MIDTERM 1 University of California College of Engineering Department of Electrical Engineering and Computer Sciences D. Markovic TuTh 11-1:3 Thursday, October 6, 6:3-8:pm EECS 141: FALL 5 MIDTERM 1 NAME Last SOLUTION

More information

Lecture 5: DC & Transient Response

Lecture 5: DC & Transient Response Lecture 5: DC & Transient Response Outline q Pass Transistors q DC Response q Logic Levels and Noise Margins q Transient Response q RC Delay Models q Delay Estimation 2 Activity 1) If the width of a transistor

More information

Homework Assignment 09

Homework Assignment 09 Homework Assignment 09 Question 1 (Short Takes) Two points each unless otherwise indicated. 1. What is the 3-dB bandwidth of the amplifier shown below if r π = 2.5K, r o = 100K, g m = 40 ms, and C L =

More information

EE105 Fall 2015 Microelectronic Devices and Circuits Frequency Response. Prof. Ming C. Wu 511 Sutardja Dai Hall (SDH)

EE105 Fall 2015 Microelectronic Devices and Circuits Frequency Response. Prof. Ming C. Wu 511 Sutardja Dai Hall (SDH) EE05 Fall 205 Microelectronic Devices and Circuits Frequency Response Prof. Ming C. Wu wu@eecs.berkeley.edu 5 Sutardja Dai Hall (SDH) Amplifier Frequency Response: Lower and Upper Cutoff Frequency Midband

More information

EE105 Fall 2014 Microelectronic Devices and Circuits. NMOS Transistor Capacitances: Saturation Region

EE105 Fall 2014 Microelectronic Devices and Circuits. NMOS Transistor Capacitances: Saturation Region EE105 Fall 014 Microelectronic Devices and Circuits Prof. Ming C. Wu wu@eecs.berkeley.edu 511 Sutardja Dai Hall (SDH) 1 NMOS Transistor Capacitances: Saturation Region Drain no longer connected to channel

More information

Practice 3: Semiconductors

Practice 3: Semiconductors Practice 3: Semiconductors Digital Electronic Circuits Semester A 2012 VLSI Fabrication Process VLSI Very Large Scale Integration The ability to fabricate many devices on a single substrate within a given

More information

The Devices: MOS Transistors

The Devices: MOS Transistors The Devices: MOS Transistors References: Semiconductor Device Fundamentals, R. F. Pierret, Addison-Wesley Digital Integrated Circuits: A Design Perspective, J. Rabaey et.al. Prentice Hall NMOS Transistor

More information

Lecture 23 Frequency Response of Amplifiers (I) Common Source Amplifier. December 1, 2005

Lecture 23 Frequency Response of Amplifiers (I) Common Source Amplifier. December 1, 2005 6.02 Microelectronic Devices and Circuits Fall 2005 Lecture 23 Lecture 23 Frequency Response of Amplifiers (I) Common Source Amplifier December, 2005 Contents:. Introduction 2. Intrinsic frequency response

More information

EKV MOS Transistor Modelling & RF Application

EKV MOS Transistor Modelling & RF Application HP-RF MOS Modelling Workshop, Munich, February 15-16, 1999 EKV MOS Transistor Modelling & RF Application Matthias Bucher, Wladek Grabinski Electronics Laboratory (LEG) Swiss Federal Institute of Technology,

More information

ECE-342 Test 3: Nov 30, :00-8:00, Closed Book. Name : Solution

ECE-342 Test 3: Nov 30, :00-8:00, Closed Book. Name : Solution ECE-342 Test 3: Nov 30, 2010 6:00-8:00, Closed Book Name : Solution All solutions must provide units as appropriate. Unless otherwise stated, assume T = 300 K. 1. (25 pts) Consider the amplifier shown

More information

ECE 6412, Spring Final Exam Page 1 FINAL EXAMINATION NAME SCORE /120

ECE 6412, Spring Final Exam Page 1 FINAL EXAMINATION NAME SCORE /120 ECE 6412, Spring 2002 Final Exam Page 1 FINAL EXAMINATION NAME SCORE /120 Problem 1O 2O 3 4 5 6 7 8 Score INSTRUCTIONS: This exam is closed book with four sheets of notes permitted. The exam consists of

More information

Lecture 10 MOSFET (III) MOSFET Equivalent Circuit Models

Lecture 10 MOSFET (III) MOSFET Equivalent Circuit Models Lecture 1 MOSFET (III) MOSFET Equivalent Circuit Models Outline Lowfrequency smallsignal equivalent circuit model Highfrequency smallsignal equivalent circuit model Reading Assignment: Howe and Sodini;

More information

Design of Analog Integrated Circuits

Design of Analog Integrated Circuits Design of Analog Integrated Circuits Chapter 11: Introduction to Switched- Capacitor Circuits Textbook Chapter 13 13.1 General Considerations 13.2 Sampling Switches 13.3 Switched-Capacitor Amplifiers 13.4

More information

Microelectronics Main CMOS design rules & basic circuits

Microelectronics Main CMOS design rules & basic circuits GBM8320 Dispositifs médicaux intelligents Microelectronics Main CMOS design rules & basic circuits Mohamad Sawan et al. Laboratoire de neurotechnologies Polystim mohamad.sawan@polymtl.ca M5418 6 & 7 September

More information

EECS 105: FALL 06 FINAL

EECS 105: FALL 06 FINAL University of California College of Engineering Department of Electrical Engineering and Computer Sciences Jan M. Rabaey TuTh 2-3:30 Wednesday December 13, 12:30-3:30pm EECS 105: FALL 06 FINAL NAME Last

More information

MOS Transistors. Prof. Krishna Saraswat. Department of Electrical Engineering Stanford University Stanford, CA

MOS Transistors. Prof. Krishna Saraswat. Department of Electrical Engineering Stanford University Stanford, CA MOS Transistors Prof. Krishna Saraswat Department of Electrical Engineering S Stanford, CA 94305 saraswat@stanford.edu 1 1930: Patent on the Field-Effect Transistor! Julius Lilienfeld filed a patent describing

More information

ECE 438: Digital Integrated Circuits Assignment #4 Solution The Inverter

ECE 438: Digital Integrated Circuits Assignment #4 Solution The Inverter ECE 438: Digital Integrated Circuits Assignment #4 The Inverter Text: Chapter 5, Digital Integrated Circuits 2 nd Ed, Rabaey 1) Consider the CMOS inverter circuit in Figure P1 with the following parameters.

More information

EE105 Fall 2014 Microelectronic Devices and Circuits

EE105 Fall 2014 Microelectronic Devices and Circuits EE05 Fall 204 Microelectronic Devices and Circuits Prof. Ming C. Wu wu@eecs.berkeley.edu 5 Sutardja Dai Hall (SDH) Terminal Gain and I/O Resistances of BJT Amplifiers Emitter (CE) Collector (CC) Base (CB)

More information

ECE315 / ECE515 Lecture-2 Date:

ECE315 / ECE515 Lecture-2 Date: Lecture-2 Date: 04.08.2016 NMOS I/V Characteristics Discussion on I/V Characteristics MOSFET Second Order Effect NMOS I-V Characteristics ECE315 / ECE515 Gradual Channel Approximation: Cut-off Linear/Triode

More information

Amplifiers, Source followers & Cascodes

Amplifiers, Source followers & Cascodes Amplifiers, Source followers & Cascodes Willy Sansen KULeuven, ESAT-MICAS Leuven, Belgium willy.sansen@esat.kuleuven.be Willy Sansen 0-05 02 Operational amplifier Differential pair v- : B v + Current mirror

More information

ECE 497 JS Lecture - 12 Device Technologies

ECE 497 JS Lecture - 12 Device Technologies ECE 497 JS Lecture - 12 Device Technologies Spring 2004 Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jose@emlab.uiuc.edu 1 NMOS Transistor 2 ρ Source channel charge density

More information

Electronic Circuits Summary

Electronic Circuits Summary Electronic Circuits Summary Andreas Biri, D-ITET 6.06.4 Constants (@300K) ε 0 = 8.854 0 F m m 0 = 9. 0 3 kg k =.38 0 3 J K = 8.67 0 5 ev/k kt q = 0.059 V, q kt = 38.6, kt = 5.9 mev V Small Signal Equivalent

More information

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences PROBLEM SET #3 (SOLUTION)

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences PROBLEM SET #3 (SOLUTION) UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences R. W. Brodersen EECS 140 Fall 2004 PROBLEM SET #3 (SOLUTION) 3) In the above circuit, use V DD

More information

Lecture 3: CMOS Transistor Theory

Lecture 3: CMOS Transistor Theory Lecture 3: CMOS Transistor Theory Outline Introduction MOS Capacitor nmos I-V Characteristics pmos I-V Characteristics Gate and Diffusion Capacitance 2 Introduction So far, we have treated transistors

More information

EE 330 Lecture 16. MOS Device Modeling p-channel n-channel comparisons Model consistency and relationships CMOS Process Flow

EE 330 Lecture 16. MOS Device Modeling p-channel n-channel comparisons Model consistency and relationships CMOS Process Flow EE 330 Lecture 16 MOS Device Modeling p-channel n-channel comparisons Model consistency and relationships CMOS Process Flow Review from Last Time Operation Regions by Applications Id I D 300 250 200 150

More information

The Physical Structure (NMOS)

The Physical Structure (NMOS) The Physical Structure (NMOS) Al SiO2 Field Oxide Gate oxide S n+ Polysilicon Gate Al SiO2 SiO2 D n+ L channel P Substrate Field Oxide contact Metal (S) n+ (G) L W n+ (D) Poly 1 Transistor Resistance Two

More information

MOS Device Modeling. C.K. Ken Yang UCLA Courtesy of Agilent eesoft EE 215B

MOS Device Modeling. C.K. Ken Yang UCLA Courtesy of Agilent eesoft EE 215B MOS Device Modeling C.K. Ken Yang UCLA yangck@ucla.edu Courtesy of Agilent eesoft 1 Overview Reading Rabaey 3.3 W&H 2.2-2.4 Overview This class will look at the iv and CV characteristics of an MOS device

More information

The Devices. Jan M. Rabaey

The Devices. Jan M. Rabaey The Devices Jan M. Rabaey Goal of this chapter Present intuitive understanding of device operation Introduction of basic device equations Introduction of models for manual analysis Introduction of models

More information

Homework Assignment 08

Homework Assignment 08 Homework Assignment 08 Question 1 (Short Takes) Two points each unless otherwise indicated. 1. Give one phrase/sentence that describes the primary advantage of an active load. Answer: Large effective resistance

More information

EEC 118 Lecture #2: MOSFET Structure and Basic Operation. Rajeevan Amirtharajah University of California, Davis Jeff Parkhurst Intel Corporation

EEC 118 Lecture #2: MOSFET Structure and Basic Operation. Rajeevan Amirtharajah University of California, Davis Jeff Parkhurst Intel Corporation EEC 118 Lecture #2: MOSFET Structure and Basic Operation Rajeevan Amirtharajah University of California, Davis Jeff Parkhurst Intel Corporation Announcements Lab 1 this week, report due next week Bring

More information

The Devices. Digital Integrated Circuits A Design Perspective. Jan M. Rabaey Anantha Chandrakasan Borivoje Nikolic. July 30, 2002

The Devices. Digital Integrated Circuits A Design Perspective. Jan M. Rabaey Anantha Chandrakasan Borivoje Nikolic. July 30, 2002 Digital Integrated Circuits A Design Perspective Jan M. Rabaey Anantha Chandrakasan Borivoje Nikolic The Devices July 30, 2002 Goal of this chapter Present intuitive understanding of device operation Introduction

More information

Electronic Devices and Circuits Lecture 18 - Single Transistor Amplifier Stages - Outline Announcements. Notes on Single Transistor Amplifiers

Electronic Devices and Circuits Lecture 18 - Single Transistor Amplifier Stages - Outline Announcements. Notes on Single Transistor Amplifiers 6.012 Electronic Devices and Circuits Lecture 18 Single Transistor Amplifier Stages Outline Announcements Handouts Lecture Outline and Summary Notes on Single Transistor Amplifiers Exam 2 Wednesday night,

More information

Lecture 6: DC & Transient Response

Lecture 6: DC & Transient Response Lecture 6: DC & Transient Response Slides courtesy of Deming Chen Slides based on the initial set from David Harris CMOS VLSI Design Outline Pass Transistors DC Response Logic Levels and Noise Margins

More information

EE105 - Fall 2006 Microelectronic Devices and Circuits. Some Administrative Issues

EE105 - Fall 2006 Microelectronic Devices and Circuits. Some Administrative Issues EE105 - Fall 006 Microelectronic evices and Circuits Prof. Jan M. Rabaey (jan@eecs Lecture 8: MOS Small Signal Model Some Administrative Issues REIEW Session Next Week Tu Sept 6 6:00-7:30pm; 060 alley

More information

Lecture 18. Common Source Stage

Lecture 18. Common Source Stage ecture 8 OUTINE Basic MOSFET amplifier MOSFET biasing MOSFET current sources Common source amplifier eading: Chap. 7. 7.7. EE05 Spring 008 ecture 8, Slide Prof. Wu, UC Berkeley Common Source Stage λ =

More information

Using MOS Models. C.K. Ken Yang UCLA Courtesy of MAH EE 215B

Using MOS Models. C.K. Ken Yang UCLA Courtesy of MAH EE 215B Using MOS Models C.K. Ken Yang UCLA yangck@ucla.edu Courtesy of MAH 1 Overview Reading Rabaey 5.4 W&H 4.2 Background In the past two lectures we have reviewed the iv and CV curves for MOS devices, both

More information

MOS Transistor I-V Characteristics and Parasitics

MOS Transistor I-V Characteristics and Parasitics ECEN454 Digital Integrated Circuit Design MOS Transistor I-V Characteristics and Parasitics ECEN 454 Facts about Transistors So far, we have treated transistors as ideal switches An ON transistor passes

More information

EEE 421 VLSI Circuits

EEE 421 VLSI Circuits EEE 421 CMOS Properties Full rail-to-rail swing high noise margins» Logic levels not dependent upon the relative device sizes transistors can be minimum size ratioless Always a path to V dd or GND in steady

More information

Lecture 4: CMOS Transistor Theory

Lecture 4: CMOS Transistor Theory Introduction to CMOS VLSI Design Lecture 4: CMOS Transistor Theory David Harris, Harvey Mudd College Kartik Mohanram and Steven Levitan University of Pittsburgh Outline q Introduction q MOS Capacitor q

More information

Microelectronic Circuit Design 4th Edition Errata - Updated 4/4/14

Microelectronic Circuit Design 4th Edition Errata - Updated 4/4/14 Chapter Text # Inside back cover: Triode region equation should not be squared! i D = K n v GS "V TN " v & DS % ( v DS $ 2 ' Page 49, first exercise, second answer: -1.35 x 10 6 cm/s Page 58, last exercise,

More information

N Channel MOSFET level 3

N Channel MOSFET level 3 N Channel MOSFET level 3 mosn3 NSource NBulk NSource NBulk NSource NBulk NSource (a) (b) (c) (d) NBulk Figure 1: MOSFET Types Form: mosn3: instance name n 1 n n 3 n n 1 is the drain node, n is the gate

More information

EE 330 Lecture 16. MOSFET Modeling CMOS Process Flow

EE 330 Lecture 16. MOSFET Modeling CMOS Process Flow EE 330 Lecture 16 MOSFET Modeling CMOS Process Flow Model Extensions 300 Id 250 200 150 100 50 300 0 0 1 2 3 4 5 Vds Existing Model 250 200 Id 150 100 50 Slope is not 0 0 0 1 2 3 4 Actual Device Vds Model

More information

EE105 - Fall 2006 Microelectronic Devices and Circuits

EE105 - Fall 2006 Microelectronic Devices and Circuits EE105 - Fall 2006 Microelectronic Devices and Circuits Prof. Jan M. Rabaey (jan@eecs) Lecture 7: MOS Transistor Some Administrative Issues Lab 2 this week Hw 2 due on We Hw 3 will be posted same day MIDTERM

More information

ECE 342 Electronic Circuits. Lecture 6 MOS Transistors

ECE 342 Electronic Circuits. Lecture 6 MOS Transistors ECE 342 Electronic Circuits Lecture 6 MOS Transistors Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jesa@illinois.edu 1 NMOS Transistor Typically L = 0.1 to 3 m, W = 0.2

More information

and V DS V GS V T (the saturation region) I DS = k 2 (V GS V T )2 (1+ V DS )

and V DS V GS V T (the saturation region) I DS = k 2 (V GS V T )2 (1+ V DS ) ECE 4420 Spring 2005 Page 1 FINAL EXAMINATION NAME SCORE /100 Problem 1O 2 3 4 5 6 7 Sum Points INSTRUCTIONS: This exam is closed book. You are permitted four sheets of notes (three of which are your sheets

More information

ELEC 3908, Physical Electronics, Lecture 26. MOSFET Small Signal Modelling

ELEC 3908, Physical Electronics, Lecture 26. MOSFET Small Signal Modelling ELEC 3908, Physical Electronics, Lecture 26 MOSFET Small Signal Modelling Lecture Outline MOSFET small signal behavior will be considered in the same way as for the diode and BJT Capacitances will be considered

More information

Robert W. Brodersen EECS140 Analog Circuit Design

Robert W. Brodersen EECS140 Analog Circuit Design INTRODUCTION University of California Berkeley College of Engineering Department of Electrical Engineering and Computer Science Robert. Brodersen EECS40 Analog Circuit Design ROBERT. BRODERSEN LECTURE

More information

ECE 342 Electronic Circuits. Lecture 25 Frequency Response of CG, CB,SF and EF

ECE 342 Electronic Circuits. Lecture 25 Frequency Response of CG, CB,SF and EF ECE 342 Electronic Circuits ecture 25 Frequency esponse of CG, CB,SF and EF Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jesa@illinois.edu ECE 342 Jose Schutt Aine 1 Common

More information

2007 Fall: Electronic Circuits 2 CHAPTER 10. Deog-Kyoon Jeong School of Electrical Engineering

2007 Fall: Electronic Circuits 2 CHAPTER 10. Deog-Kyoon Jeong School of Electrical Engineering 007 Fall: Electronic Circuits CHAPTER 10 Digital CMOS Logic Circuits Deog-Kyoon Jeong dkjeong@snu.ac.kr k School of Electrical Engineering Seoul lnational luniversity it Introduction In this chapter, we

More information

EE5311- Digital IC Design

EE5311- Digital IC Design EE5311- Digital IC Design Module 1 - The Transistor Janakiraman V Assistant Professor Department of Electrical Engineering Indian Institute of Technology Madras Chennai October 28, 2017 Janakiraman, IITM

More information

EE 330. Lecture 35. Parasitic Capacitances in MOS Devices

EE 330. Lecture 35. Parasitic Capacitances in MOS Devices EE 330 Lecture 35 Parasitic Capacitances in MOS Devices Exam 2 Wed Oct 24 Exam 3 Friday Nov 16 Review from Last Lecture Cascode Configuration Discuss V CC gm1 gm1 I B VCC V OUT g02 g01 A - β β VXX Q 2

More information

CHAPTER 3: TRANSISTOR MOSFET DR. PHAM NGUYEN THANH LOAN. Hà Nội, 9/24/2012

CHAPTER 3: TRANSISTOR MOSFET DR. PHAM NGUYEN THANH LOAN. Hà Nội, 9/24/2012 1 CHAPTER 3: TRANSISTOR MOSFET DR. PHAM NGUYEN THANH LOAN Hà Nội, 9/24/2012 Chapter 3: MOSFET 2 Introduction Classifications JFET D-FET (Depletion MOS) MOSFET (Enhancement E-FET) DC biasing Small signal

More information

Microelectronics Part 1: Main CMOS circuits design rules

Microelectronics Part 1: Main CMOS circuits design rules GBM8320 Dispositifs Médicaux telligents Microelectronics Part 1: Main CMOS circuits design rules Mohamad Sawan et al. Laboratoire de neurotechnologies Polystim! http://www.cours.polymtl.ca/gbm8320/! med-amine.miled@polymtl.ca!

More information

MOS Amplifiers Dr. Lynn Fuller Webpage:

MOS Amplifiers Dr. Lynn Fuller Webpage: ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING Dr. Lynn Fuller Webpage: http://people.rit.edu/lffeee 82 Lomb Memorial Drive Rochester, NY 14623-5604 Email: Lynn.Fuller@rit.edu Department

More information

THE INVERTER. Inverter

THE INVERTER. Inverter THE INVERTER DIGITAL GATES Fundamental Parameters Functionality Reliability, Robustness Area Performance» Speed (delay)» Power Consumption» Energy Noise in Digital Integrated Circuits v(t) V DD i(t) (a)

More information

Introduction and Background

Introduction and Background Analog CMOS Integrated Circuit Design Introduction and Background Dr. Jawdat Abu-Taha Department of Electrical and Computer Engineering Islamic University of Gaza jtaha@iugaza.edu.ps 1 Marking Assignments

More information

Today s lecture. EE141- Spring 2003 Lecture 4. Design Rules CMOS Inverter MOS Transistor Model

Today s lecture. EE141- Spring 2003 Lecture 4. Design Rules CMOS Inverter MOS Transistor Model - Spring 003 Lecture 4 Design Rules CMOS Inverter MOS Transistor Model Today s lecture Design Rules The CMOS inverter at a glance An MOS transistor model for manual analysis Important! Labs start next

More information

DESIGN MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT. Dr. Eman Azab Assistant Professor Office: C

DESIGN MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT. Dr. Eman Azab Assistant Professor Office: C MICROELECTRONICS ELCT 703 (W17) LECTURE 3: OP-AMP CMOS CIRCUIT DESIGN Dr. Eman Azab Assistant Professor Office: C3.315 E-mail: eman.azab@guc.edu.eg 1 TWO STAGE CMOS OP-AMP It consists of two stages: First

More information

Lecture 23 - Frequency Resp onse of Amplifiers (I) Common-Source Amplifier. May 6, 2003

Lecture 23 - Frequency Resp onse of Amplifiers (I) Common-Source Amplifier. May 6, 2003 6.0 Microelectronic Devices and Circuits Spring 003 Lecture 3 Lecture 3 Frequency Resp onse of Amplifiers (I) CommonSource Amplifier May 6, 003 Contents:. Intro duction. Intrinsic frequency resp onse of

More information

6.776 High Speed Communication Circuits Lecture 10 Noise Modeling in Amplifiers

6.776 High Speed Communication Circuits Lecture 10 Noise Modeling in Amplifiers 6.776 High Speed Communication Circuits Lecture 10 Noise Modeling in Amplifiers Michael Perrott Massachusetts Institute of Technology March 8, 2005 Copyright 2005 by Michael H. Perrott Notation for Mean,

More information

Circle the one best answer for each question. Five points per question.

Circle the one best answer for each question. Five points per question. ID # NAME EE-255 EXAM 3 November 8, 2001 Instructor (circle one) Talavage Gray This exam consists of 16 multiple choice questions and one workout problem. Record all answers to the multiple choice questions

More information

EE 240B Spring Advanced Analog Integrated Circuits Lecture 2: MOS Transistor Models. Elad Alon Dept. of EECS

EE 240B Spring Advanced Analog Integrated Circuits Lecture 2: MOS Transistor Models. Elad Alon Dept. of EECS EE 240B Spring 2018 Advanced Analog Integrated Circuits Lecture 2: MOS Transistor Models Elad Alon Dept. of EECS Square Law Model? Assumptions made to come up with this model: Charge density determined

More information

Lecture 28 Field-Effect Transistors

Lecture 28 Field-Effect Transistors Lecture 8 Field-Effect Transistors Field-Effect Transistors 1. Understand MOSFET operation.. Analyze basic FET amplifiers using the loadline technique. 3. Analyze bias circuits. 4. Use small-signal equialent

More information

ECE315 / ECE515 Lecture 11 Date:

ECE315 / ECE515 Lecture 11 Date: ecture 11 Date: 15.09.016 MOS Differential Pair Quantitative Analysis differential input Small Signal Analysis MOS Differential Pair ECE315 / ECE515 M 1 and M are perfectly matched (at least in theory!)

More information

Lecture 5 Review Current Source Active Load Modified Large / Small Signal Models Channel Length Modulation

Lecture 5 Review Current Source Active Load Modified Large / Small Signal Models Channel Length Modulation Lecture 5 Review Current Source Active Load Modified Large / Small Signal Models Channel Length Modulation Text sec 1.2 pp. 28-32; sec 3.2 pp. 128-129 Current source Ideal goal Small signal model: Open

More information

Lecture 5: CMOS Transistor Theory

Lecture 5: CMOS Transistor Theory Lecture 5: CMOS Transistor Theory Slides courtesy of Deming Chen Slides based on the initial set from David Harris CMOS VLSI Design Outline q q q q q q q Introduction MOS Capacitor nmos I-V Characteristics

More information