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.11 | |
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.11')
-rwxr-xr-x | 3281/CH5/EX5.11/ex5_11.jpg | bin | 0 -> 9471 bytes | |||
-rwxr-xr-x | 3281/CH5/EX5.11/ex5_11.sce | 25 |
2 files changed, 25 insertions, 0 deletions
diff --git a/3281/CH5/EX5.11/ex5_11.jpg b/3281/CH5/EX5.11/ex5_11.jpg Binary files differnew file mode 100755 index 000000000..fef7643d6 --- /dev/null +++ b/3281/CH5/EX5.11/ex5_11.jpg diff --git a/3281/CH5/EX5.11/ex5_11.sce b/3281/CH5/EX5.11/ex5_11.sce new file mode 100755 index 000000000..7f5b20011 --- /dev/null +++ b/3281/CH5/EX5.11/ex5_11.sce @@ -0,0 +1,25 @@ +//Page Number: 297
+//Example 5.9
+clc;
+//Given
+f=8D+9;//hz
+v0=500;//V
+l=1.2;//mm
+l1=l/1000;//m
+rsh=18D+3;//ohm
+ebym=1.759D+11;
+ee=8.854D-12;
+
+//(i) Repeller voltage
+n=1+(3/4);
+v11=(ebym*n*n)/(8*(l1^2)*(f^2));
+vr=sqrt(v0/v11)-v0;
+disp('V',vr,'Repeller voltage:');
+
+//(ii) Required dc current
+v2=200;//V
+j1x=0.582;
+i=v2/(2*rsh*j1x);//A
+disp('mA',i*1000,'Required dc current:');
+
+//Answer for repeller voltage is calculated wrong in book
|