summaryrefslogtreecommitdiff
path: root/3754/CH27/EX27.11/27_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH27/EX27.11/27_11.sce')
-rw-r--r--3754/CH27/EX27.11/27_11.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3754/CH27/EX27.11/27_11.sce b/3754/CH27/EX27.11/27_11.sce
new file mode 100644
index 000000000..e1a7b7b65
--- /dev/null
+++ b/3754/CH27/EX27.11/27_11.sce
@@ -0,0 +1,19 @@
+clear//
+
+//Variables
+
+Ptrdc = 100.0 * 10**-3 //Maximum collector dissipated power (in watt)
+VCC = 10.0 //Source voltage (in volts)
+RL = 16.0 //Load resistance (in ohm)
+no=0.5;nc=0.5;
+
+//Calculation
+
+Poac = no * Ptrdc //Maximum undistorted a.c. output power (in watt)
+ICQ = 2 * Poac / VCC //Quiescent collector current (in Ampere)
+R1L = VCC / ICQ //Effective load resistance (in ohm)
+a = (R1L / RL)**0.5
+
+//Result
+
+printf("\n Maximum undistorted a.c. output power is %0.3f W.\nQuiescent collector current is %0.3f A.\nTransformer turns ratio is %0.0f .",Poac,ICQ,a)