summaryrefslogtreecommitdiff
path: root/2882/CH8/EX8.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2882/CH8/EX8.12
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2882/CH8/EX8.12')
-rwxr-xr-x2882/CH8/EX8.12/Ex8_12.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2882/CH8/EX8.12/Ex8_12.sce b/2882/CH8/EX8.12/Ex8_12.sce
new file mode 100755
index 000000000..4caa99925
--- /dev/null
+++ b/2882/CH8/EX8.12/Ex8_12.sce
@@ -0,0 +1,16 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 8 Power Amplifiers Pg no. 289 and 290
+clear;
+clc;
+
+//Given Data
+
+VCC=12;//collector supply voltage in volts
+RL=16;//load resistance of loudspeaker in ohms
+Pmax=1;//input power of loudspeaker
+VCE_sat=0.7;//collector to emitter saturation voltage in volts
+
+//Solution
+
+k=(VCC-VCE_sat)/sqrt(2*RL*Pmax);//turns ratio
+printf("Turns ratio η = %.3f or %.f turns",k,k);