diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1514/CH17/EX17.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1514/CH17/EX17.5')
-rwxr-xr-x | 1514/CH17/EX17.5/17_5.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1514/CH17/EX17.5/17_5.sce b/1514/CH17/EX17.5/17_5.sce new file mode 100755 index 000000000..f2d4bdeed --- /dev/null +++ b/1514/CH17/EX17.5/17_5.sce @@ -0,0 +1,24 @@ +//chapter 17
+//example 17.5
+//page 535
+clear all;
+clc ;
+//given
+f1=20;//lower cutoff frequency Hz
+R3=1.2;//kohm
+Rl=100;//ohm
+Vcc=30;
+//Xc2<<R3 at f1
+C2=1000/(2*%pi*f1*R3/10);
+printf("\nc2=%.1f microF,use standard value 75 microF",C2);
+XC4=Rl;
+C4=10^6/(2*%pi*f1*Rl);
+printf("\nc4=%.1f microF,use standard value 80 microF",C4);
+Ip=100;
+Vcemax=Vcc;
+Icmax=1.1*Ip;
+//dc ip power
+Pidc=(Vcc*0.35*Ip)/1000;
+Poac=0.5;
+Pr=(Pidc-Poac)*0.5;
+printf("\nTransistor specification are:\nPr=%.2f W,Vcemax=%d V,Icmax=%d mA",Pr,Vcemax,Icmax);
|