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 --- 2102/CH6/EX6.14/exa_6_14.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 2102/CH6/EX6.14/exa_6_14.sce (limited to '2102/CH6/EX6.14/exa_6_14.sce') diff --git a/2102/CH6/EX6.14/exa_6_14.sce b/2102/CH6/EX6.14/exa_6_14.sce new file mode 100755 index 000000000..ad1c260a4 --- /dev/null +++ b/2102/CH6/EX6.14/exa_6_14.sce @@ -0,0 +1,23 @@ +// Exa 6.14 +clc; +clear; +close; +// Given data +I_DSS= 4;// in mA +I_DSS= I_DSS*10^-3;// in A +V_P= -2;// in V +V_DD= 10;// in V +V_SS= V_DD;// in V +V_GS2=0;// in V +I_D= I_DSS*(1-V_GS2/V_P)^2;// in A +// since I_D= I_DSS +V_GS= 0;// in volt +// Formula V_SS= V_DS-V_GS +V_DS= V_SS-V_GS;// in volt +disp(I_D*10^3,"The value of I_D in mA is :") +disp(V_GS,"The value of V_GS in volt is : ") +disp(V_DS,"The value of V_DS in volts is :") + +if V_DS > V_GS-V_P then + disp("The active region operation of the upper JFET is confirmed ") +end -- cgit