Thursday 30 June 2016

use of BODY terminal in MOSFET

The body terminal is there whether we like it or not because of the construction of a MOSFET:
enter image description here

The gate voltage modifies the channel width. But the gate potential is measured relative to the substrate potential, and the channel is formed in the substrate material. Therefore the MOSFET behavior depends strongly on the substrate (body) potential.

If we did not make a contact to the body, it would be free to float, and we could not control the behavior of the transistor. We connect to the body to take control of this behavior. Normally we tie the body to either a most-positive or most-negative potential, like you say, because that gives the lowest |Vgs| relative to the appropriate supply and prevents forward biasing the source-body junction. If we did not contact the body, it would still be there, but we would not have control over its effect.

No comments:

Post a Comment

verilog code for multiple bit input demultiplexer

module demux_2x1(     input [31:0] a,     input s,     output [31:0] y0,y1     ); genvar i; for(i =0; i<=31;i=i+1) begin...