ElectronicCircuitsLaboratoryEE462GLab#5

上传人:gb****c 文档编号:243010158 上传时间:2024-09-13 格式:PPT 页数:18 大小:173KB
返回 下载 相关 举报
ElectronicCircuitsLaboratoryEE462GLab#5_第1页
第1页 / 共18页
ElectronicCircuitsLaboratoryEE462GLab#5_第2页
第2页 / 共18页
ElectronicCircuitsLaboratoryEE462GLab#5_第3页
第3页 / 共18页
点击查看更多>>
资源描述
Click to edit Master title style,Body level,Second Level,Third Level,Fourth Level,Fifth Level,*,*,Electronic Circuits LaboratoryEE462GLab #5,Biasing MOSFET devices,1,n-Channel MOSFET,A Metal-Oxide-Semiconductor field-effect transistor (MOSFET) is presented for charge flowing in an n-channel:,+,V,GS,_,+,V,DS,_,D,G,S,B,B Body or Substrate,D Drain,G Gate,S Source,For many applications the body is connected to the source and thus most FETs are packaged that way.,n,n,p,I,D,G,D,S,2,FET Operation,The current flow between the drain and the source can be controlled by applying a positive gate voltage:,Three Regions of Operation:,Cutoff region,(,V,GS,V,tr,),Triode region,(,V,DS,V,GS,-,V,tr,),Saturation,(,V,GS,-,V,tr,V,DS,),n,n,p,+,V,GS,_,+,V,DS,_,-,-,-,-,-,-,V,GS,I,D,3,Cutoff Region,In this region,(,V,GS,V,tr,) the gate voltage is less than the threshold voltage and virtually no current flows through the reversed biased PN interface between the drain and body.,Typical values for,V,tr,(or,V,to,) range from 1 to several volts.,Cutoff region:,I,D,=0,n,n,p,+,V,GS,_,+,V,DS,_,I,D,+,+,+,-,-,-,4,Triode Region,In this region,(,V,GS,V,tr,and,V,DS,V,GS,-,V,tr,) the gate voltage exceeds the threshold voltage and pulls negative charges toward the gate. This results is an,n,-Channel whose width controls the current flow,I,D,between the drain and source.,Triode Region:,(,V,DS,V,GS,-,V,tr,),n,n,p,+,V,GS,_,+,V,DS,_,-,-,-,-,-,-,V,GS,I,D,where:,product of surface mobility of channel electrons,n,and gate capacitance per unit area,C,ox,in units of amps per volts squared,W,is the channel width, and,L,is channel length.,5,Saturation Region,In this region,(,V,GS,V,tr,and,V,GS,-,V,tr,V,DS,) the drain-source voltage exceeds the excess gate voltage and pulls negative charges toward the drain and reduces the channel area at the drain. This limits the current making it more insensitive/independent to changes in,V,DS,.,Saturation:,V,GS,-,V,tr,V,DS,+,V,GS,_,+,V,DS,_,n,n,p,-,-,-,-,-,I,D,The material parameters can be combined into one constant:,At the point of Saturation,for a given,V,GS, the following relation holds:,6,NMOS Transfer Characteristics,The relations between,I,D,and,V,DS,for the operational regions of the NMOS transistor can be used to generate its transfer characteristic. These can be conveniently coded in a Matlab function,function,ids = nmos(vds,vgs,KP,W,L,vto),% This function generates the drain-source current values ids for,% and NMOS Transistor as a function of the drain-source voltage vds.,% ids = nmos(vds ,vgs,KP,W,L,vto),% where vds is a vector of drain-source values,% vgs is the gate voltage,% KP is the device parameter,% W is the channel width,% L is the channel length,% vto is the threshold voltage,% and output ids is a vector of the same size of vds,% containing the drain-source current values.,7,NMOS Transfer Characteristics,ids = zeros(size(vds);,% Initialize output array with all zeros,k = (W/L)*KP/2;,% Combine devices material parameters,% For non-cutoff operation:,if vgs = vto,% Find points in vds that are in the triode region,ktri = find(vds= 0);,% Points less than (gate threshold voltage),% If points are found in the triode region compute ids with proper formula,if isempty(ktri),ids(ktri) = k*(2*(vgs-vto).*vds(ktri)-vds(ktri).2);,end,% Find points in staturation region,ksat = find(vds(vgs-vto) ,% Points greater than the excess voltage,% if points are found in the saturation region compute ids with proper formula,if isempty(ksat),ids(ksat) = k*(vgs-vto).2);,end,% If points of vds are outside these ranges then the ids values remain zero,end,8,NMOS Transfer Characteristics,Plot the transfer characteristics of an NMOS transistor where KP = 50,A/V,2, W= 160 m, L= 2 m, V,tr,= 2V, and for VGS = .5, 1, 2, 3, 4, 5, 6 volts. Also plot boundary between the saturation and triode regions,vgs = .5, 1, 2, 3, 4, 5, 6;,vds =0:.01:4;,for kc = 1:length(vgs),ids = nmos(vds,vgs(kc),50e-6,160e-6,2e-6,2);,figure(1); plot(vds, ids*1000),hold on,end,ids = (50e-6/2)*(160e-6/2e-6)*vds.2;,figure(1); plot(vds, ids*1000,g:),hold off,xlabel(VDS in V),ylabel(ID in mA),Boundary,Saturation Region,Triode Region,Boundary,IDS=K(VDS),2,VGS = 6,VGS = 5,VGS = 4,VGS = 3,VGS = 2, 1, & 0.5,9,Biasing NMOS Voltages,KVL can be applied to the following circuit to determine resistor values so that,V,DS,and,I,D,are set to a desired quiescent point,.,KVL,The above linear equation can be plotted with the MOSFETs TC to perform a load line analysis and find the quiescent point,V,DSQ,and,I,DQ,.,10,Load Line Analysis Example,Given,R,D,=,R,S,= 1k, and,V,DD,= 12 V, superimpose loadline on the TC for various,V,GS,values of MOSFET with K= 0.2 A/V,2,and,V,tr,= 2.5 V,% Set Parameters, K=.2; vto = 2.1;, W=1; L=1; KP=2*K;, VDD=12; RS=1e3; RD=1e3;, vds = 0:.05:VDD;,% Create X-Axis, idsll = -vds/(RD+RS) + VDD/(RD+RS);,% Generate Load Line, plot(vds, idsll, k:), hold on,% hold plot to superimpose other plots, ids50 = nmos(vds,vto+70e-3,KP,W,L,vto);,% TC for 70mV above threshold, plot(vds,ids50,r), ids50 = nmos(vds,vto+110e-3,KP,W,L,vto);,% TC for 110mV above threshold, plot(vds,ids50,c), ids50 = nmos(vds,vto+150e-3,KP,W,L,vto);,% TC for 150mV above threshold, plot(vds,ids50,b),11,Load Line Analysis Example,If changes about,V,GSQ,are consider the input, and changes in,V,DSQ,are considered the output, then the gain of this system is:,12,Biasing NMOS Voltages,KVL can be applied to relate the gate voltage to the drain-source currents:,Since virtually no current flows into the gate,V,GG,can be set by properly choosing,R,1,and,R,2,. KVL around the,V,GG,loop yields another important equation:,When biasing in the saturation region,V,GS,can also be related to the drain current by:,R,1,R,2,R,D,R,S,I,D,+,V,out,_,+,V,DD,_,G,S,D,+,V,GG,_,13,SPICE Analysis,Previous load line analysis may suggest setting the DC operating point at,I,DSQ,=3mA and,V,DSQ,=6 (center of load line). This requires that,V,GSQ,be set around 2.62 V, which results in the following circuit:,An operating point analysis in SPICE can be performed to verify the quiescent points throughout the circuit. The new aspect of the SPICE feature for this work is setting the MOSFET parameters. In this case the a level 1 nmos transistor can be selected from the device menu and the,Kp,and,vto,values set through the edit simulation parameters option (then click on shared properties tab).,14,SPICE Analysis,The MOSFET can be selected directly as the ZVN3306, which can be accessed through the “Browse for Parts” option under the “Devices” menu. Then on the edit simulation model, the parameters of,V,to,= 2.5 and KP=.2 can be set in the text-like appears (SPICE model in netlist syntax).,Run operating point analysis and observe quiescent values in the meters.,15,SPICE Analysis,Change to KP=.1 and then to .8 to observed relative changes in the operating point.,KP=.1,KP=.8,16,Iteration in Matlab,Matlab has 2 main instructions for setting up loops - the WHILE and FOR loops. Type,help while,or,help for,for information on how to use either of these.,17,Iteration in Matlab,To find the intersection between 2 curves, represented by sampled vectors, use the,min,command to find the CLOSEST 2 points:, minval, minindex = min(abs(tc-loadline);,The,min,command finds the minimum value in the vector. If a second output is requested as in the above expression, the index of where this minimum occurs is assigned to the second input. In the above expression,minval,is the minimum value of the point by point absolute difference between vectors,tc,and,loadline, and minindex,is the vector index at which this minimum occurs. Type,help min,for more information.,18,
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 图纸专区 > 大学资料


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!