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 /3281/CH5/EX5.7 | |
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 '3281/CH5/EX5.7')
-rwxr-xr-x | 3281/CH5/EX5.7/ex5_7.jpg | bin | 0 -> 13143 bytes | |||
-rwxr-xr-x | 3281/CH5/EX5.7/ex5_7.sce | 38 |
2 files changed, 38 insertions, 0 deletions
diff --git a/3281/CH5/EX5.7/ex5_7.jpg b/3281/CH5/EX5.7/ex5_7.jpg Binary files differnew file mode 100755 index 000000000..8eaacebbb --- /dev/null +++ b/3281/CH5/EX5.7/ex5_7.jpg diff --git a/3281/CH5/EX5.7/ex5_7.sce b/3281/CH5/EX5.7/ex5_7.sce new file mode 100755 index 000000000..2afae5d7c --- /dev/null +++ b/3281/CH5/EX5.7/ex5_7.sce @@ -0,0 +1,38 @@ +//Page Number: 294
+//Example 5.7
+clc;
+//Given
+f=3D+9; //hz
+l=4; //cm
+l1=4/100; //m
+d=0.1; //cm
+d1=d/100; //m
+V=900; //V
+i0=30D-3; //A
+rsh=25D+3;//ohm
+x=1.841;
+j1x=0.582;
+
+//(i) Input voltage for maximum output
+v0=0.593D+6*sqrt(V);
+w=2*%pi*f;
+theta0=w*l1/v0; //rad
+thetag=w*d1/v0; //rad
+bet=sin(thetag/2)/(thetag/2);
+v1max=2*V*x/(bet*theta0); //v
+disp('V',v1max,'Input voltage for maximum output:');
+
+//(ii) Voltage gain
+r0=V/i0;//ohm
+av=((bet^2)*theta0*j1x*rsh)/(x*r0);//V
+disp('V',av,'Voltage gain:');
+
+//(iii) Efficiency
+ic=2*i0*j1x; //A
+v2=bet*ic*rsh; //V
+eet=bet*ic*v2/(2*i0*V);
+disp('%',eet*100,'Efficiency:');
+
+//(iv) Beam loading conductance
+gb=(i0/(V*2))*(bet^2-(bet*cos(thetag/2)));//ohm
+disp('ohm',gb,'Beam loading conductance:');
|