summaryrefslogtreecommitdiff
path: root/3281/CH5/EX5.18
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3281/CH5/EX5.18
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 '3281/CH5/EX5.18')
-rwxr-xr-x3281/CH5/EX5.18/ex5_18.jpgbin0 -> 17216 bytes
-rwxr-xr-x3281/CH5/EX5.18/ex5_18.sce42
2 files changed, 42 insertions, 0 deletions
diff --git a/3281/CH5/EX5.18/ex5_18.jpg b/3281/CH5/EX5.18/ex5_18.jpg
new file mode 100755
index 000000000..254399f04
--- /dev/null
+++ b/3281/CH5/EX5.18/ex5_18.jpg
Binary files differ
diff --git a/3281/CH5/EX5.18/ex5_18.sce b/3281/CH5/EX5.18/ex5_18.sce
new file mode 100755
index 000000000..da27e81ee
--- /dev/null
+++ b/3281/CH5/EX5.18/ex5_18.sce
@@ -0,0 +1,42 @@
+//Page Number:
+//Example 5.18
+clc;
+//Given
+f=9D+9;//hz
+v0=300;//V
+vr=125;//V
+bet=0.9;
+c=3D+8; //m/s
+w=2*%pi*f;
+br=2.18;//mm
+e0=8.854D-12;
+ebym=1.7D+11;
+
+//From sin(theta)/theta table, thetag is found out to be
+thetag=0.25*%pi;
+d=(2*thetag*0.593D+6*sqrt(v0))/w;
+disp('mm',d*1000,'Distance:');
+
+//Axial cavity length
+l=c/(10*f);//m
+disp('mm',l*1000,'Axial cavity length:');
+
+//Ratio of outer to inner conductor
+a=1.5*br;
+a1=a/1000;
+x=d/(w*e0*a1*a1*60*tan((w*l)/c));
+bbya=exp(x);
+disp(bbya,'Ratio of outer to inner conductor:');
+
+//radii of outer and inner conductor
+disp('mm',a,'Radius of outer conductor:');
+
+b=1.52*a;//mm
+disp('mm',b,'Radius of inner conductor:');
+
+//Repeller spacing
+lopt=sqrt(ebym*(19/4)^2*(v0+vr)^2/(8*f^2*v0));//m
+disp('mm',lopt*1000,'Repeller spacing:');
+
+//Answer for radii of outer and inner conductor have wrong calculations in book
+//Also ratio of outer to inner conductor is also calculated wrong