summaryrefslogtreecommitdiff
path: root/2882/CH8/EX8.11/Ex8_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2882/CH8/EX8.11/Ex8_11.sce')
-rwxr-xr-x2882/CH8/EX8.11/Ex8_11.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2882/CH8/EX8.11/Ex8_11.sce b/2882/CH8/EX8.11/Ex8_11.sce
new file mode 100755
index 000000000..c25af3232
--- /dev/null
+++ b/2882/CH8/EX8.11/Ex8_11.sce
@@ -0,0 +1,14 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 8 Power Amplifiers Pg no. 289
+clear;
+clc;
+
+//Given Data
+
+VCC=12;//collector supply voltage in volts
+RL=12;//load resistance in ohms
+
+//Solution
+
+PL_max=(VCC/RL)^2*RL/2;//power developed in watts
+printf("Maximum value of load power = %.f Watts",PL_max);