summaryrefslogtreecommitdiff
path: root/2102/CH6/EX6.25/exa_6_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH6/EX6.25/exa_6_25.sce')
-rwxr-xr-x2102/CH6/EX6.25/exa_6_25.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2102/CH6/EX6.25/exa_6_25.sce b/2102/CH6/EX6.25/exa_6_25.sce
new file mode 100755
index 000000000..932e202ad
--- /dev/null
+++ b/2102/CH6/EX6.25/exa_6_25.sce
@@ -0,0 +1,14 @@
+// Exa 6.25
+clc;
+clear;
+close;
+// Given data
+ro=10;// in kΩ
+ro= ro*10^3;// in Ω
+r=90;// in kΩ
+r= r*10^3;// in Ω
+V_P= 5;// in V
+// r= ro/(1-V_GS/V_P)^2;// in Ω
+V_GS= V_P*(1-sqrt(ro/r));// in V
+disp(V_GS,"The value of V_GS in volts is :")
+