From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1223/CH5/EX5.8/Ex5_8.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 1223/CH5/EX5.8/Ex5_8.sce (limited to '1223/CH5/EX5.8') diff --git a/1223/CH5/EX5.8/Ex5_8.sce b/1223/CH5/EX5.8/Ex5_8.sce new file mode 100755 index 000000000..33738a22e --- /dev/null +++ b/1223/CH5/EX5.8/Ex5_8.sce @@ -0,0 +1,15 @@ +clear; +clc; +//Example 5.8 +Vtn=0.8; +Kn=0.05; +//I_D=Kn*(Vgs-Vtn)^2 +//Vds=Vgs=5-I_D*Rs +//combining these two equations we obtain 0.5(Vgs)^2+0.2Vgs-4.68 +Vgs=poly(0,'Vgs') +p=poly([-4.68 0.2 0.5],'Vgs','c') +printf('\npossible solutions ::%.3f V\n',roots(p)) +//assuming transistor is conducting ,Vgs must be greater than threshold voltage +Vgs=2.87; +I_D=Kn*(Vgs-Vtn)^2; +printf('\ndrain current=%.3f mA\n',I_D) -- cgit