summaryrefslogtreecommitdiff
path: root/3754/CH27/EX27.15/27_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH27/EX27.15/27_15.sce')
-rw-r--r--3754/CH27/EX27.15/27_15.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH27/EX27.15/27_15.sce b/3754/CH27/EX27.15/27_15.sce
new file mode 100644
index 000000000..fb5a98929
--- /dev/null
+++ b/3754/CH27/EX27.15/27_15.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+Pcdc = 10.0 //Power rating of amplifier (in watt)
+n = 0.785 //Maximum overall efficiency
+
+//Calculation
+
+PT = 2 * Pcdc //Total power dissipation of two transistors (in watt)
+Poac = (PT * n) / (1-n) //Maximum power output (in watt)
+
+//Result
+
+printf("\n Maximum power output is %0.2f W.",Poac)