summaryrefslogtreecommitdiff
path: root/3636/CH11/EX11.2
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH11/EX11.2')
-rw-r--r--3636/CH11/EX11.2/Ex11_2.sce15
-rw-r--r--3636/CH11/EX11.2/Ex11_2.txt4
2 files changed, 19 insertions, 0 deletions
diff --git a/3636/CH11/EX11.2/Ex11_2.sce b/3636/CH11/EX11.2/Ex11_2.sce
new file mode 100644
index 000000000..0e3294a3e
--- /dev/null
+++ b/3636/CH11/EX11.2/Ex11_2.sce
@@ -0,0 +1,15 @@
+clear;
+clc;
+VDD=25 //voltage axis intersection point in V
+ID=4 //current in A
+
+//Calculation
+RD=VDD/ID
+ID=VDD/(2*RD)
+VDS=VDD-(ID*RD)
+PT=VDS*ID
+
+mprintf("Drain Resistance= %1.2f ohm\n",RD)
+mprintf("Drain current at maximum power ditribution point= %i A\n",ID)
+mprintf("drain-to-source voltage at maximum power dissipation point= %2.1f V\n",VDS)
+mprintf("Maximum power dissipation= %i W",PT)
diff --git a/3636/CH11/EX11.2/Ex11_2.txt b/3636/CH11/EX11.2/Ex11_2.txt
new file mode 100644
index 000000000..6fbb76482
--- /dev/null
+++ b/3636/CH11/EX11.2/Ex11_2.txt
@@ -0,0 +1,4 @@
+ Drain Resistance= 6.25 ohm
+Drain current at maximum power ditribution point= 2 A
+drain-to-source voltage at maximum power dissipation point= 12.5 V
+Maximum power dissipation= 25 W \ No newline at end of file