summaryrefslogtreecommitdiff
path: root/3775/CH2/EX2.3
diff options
context:
space:
mode:
Diffstat (limited to '3775/CH2/EX2.3')
-rw-r--r--3775/CH2/EX2.3/Ex2_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3775/CH2/EX2.3/Ex2_3.sce b/3775/CH2/EX2.3/Ex2_3.sce
new file mode 100644
index 000000000..c0ac9e02f
--- /dev/null
+++ b/3775/CH2/EX2.3/Ex2_3.sce
@@ -0,0 +1,18 @@
+//Ex 2.3 page 68
+
+clc;
+clear;
+close;
+
+m=16;// V/A (gradient)
+t_on=4;// us
+IG=500;// mA
+VS=15;// V
+
+VG=m*IG/1000;// V
+//Load line equation
+//VG=VS-IG*RS
+RS=(VS-VG)/(IG/1000) ;// ohm
+Pg=VS*(IG/1000)**2 ; // W
+printf('Gate power dissipation = %.f W',Pg)
+printf('\n Resistance to be connected = %.f ohm',RS)