blob: f90c171688c621d61dbcb574606940624b09e06e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//scilab 5.4.1
//Windows 7 operating system
//chapter 13 Field-Effect Transistors
clc
clear
IDS=-15//IDS=drain saturation current in terms of mA
Vp=5//Vp=pinch-off voltage
IDSS=-40//IDSS=saturation drain current in mA when VGS(gate-to-source voltage)=0V
//By Shockley's equation
//IDS=IDSS*(1-(VGS/Vp))^2
VGS=Vp*(1-sqrt(IDS/IDSS))//VGS=gate-to-source voltage
disp("V",VGS,"The gate-to-source voltage VGS is=")
|