diff options
Diffstat (limited to '2288/CH6/EX6.9.2/ex6_9_2.sce')
-rwxr-xr-x | 2288/CH6/EX6.9.2/ex6_9_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2288/CH6/EX6.9.2/ex6_9_2.sce b/2288/CH6/EX6.9.2/ex6_9_2.sce new file mode 100755 index 000000000..2393a2ed0 --- /dev/null +++ b/2288/CH6/EX6.9.2/ex6_9_2.sce @@ -0,0 +1,12 @@ +// Exa 6.9.2
+clc;
+clear;
+close;
+// Given data
+I_DSS = 8;// in mA
+V_P = -4;// in V
+I_D = 3;// in mA
+V_GS = V_P * (1 - sqrt(I_D/I_DSS));// in V
+disp(V_GS,"The value of V_GS in V is");
+V_DS = V_GS - V_P;// in V
+disp(V_DS,"The value of V_DS in V is");
|