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 /273/CH5/EX5.2 | |
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 '273/CH5/EX5.2')
-rwxr-xr-x | 273/CH5/EX5.2/ex5_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/273/CH5/EX5.2/ex5_2.sce b/273/CH5/EX5.2/ex5_2.sce new file mode 100755 index 000000000..6dcba7ce6 --- /dev/null +++ b/273/CH5/EX5.2/ex5_2.sce @@ -0,0 +1,16 @@ +clc;clear;
+//Example 5.2&5.3
+//Cyclotron, calculation of magnetic induction,maximum energy
+
+//given values
+ f=12*(10^6);//oscillator frequency in Hertz
+ r=.53;//radius of the dee in metre
+ q=1.6*10^-19;//Deuteron charge in C
+ m=3.34*10^-27;//mass of deuteron in kg
+ //calculation
+B=2*%pi*f*m/q;//
+disp(B,'magnetic induction (in Tesla) is:');
+E=B^2*q^2*r^2/(2*m);
+disp(E,'maximum energy to which deuterons can be accelerated (in J) is')
+E1=E*6.24*10^18/10^6;//conversion of energy into MeV
+disp(E1,'maximum energy to which deuterons can be accelerated (in MeV) is');
\ No newline at end of file |