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 /3363/CH15 | |
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 '3363/CH15')
-rwxr-xr-x | 3363/CH15/EX15.2/Ex15_2.sce | 11 | ||||
-rwxr-xr-x | 3363/CH15/EX15.4/Ex15_4.sce | 13 | ||||
-rwxr-xr-x | 3363/CH15/EX15.5/Ex15_5.sce | 8 | ||||
-rwxr-xr-x | 3363/CH15/EX15.7/Ex15_7.sce | 1 | ||||
-rwxr-xr-x | 3363/CH15/EX15.8/Ex15_8.sce | 12 |
5 files changed, 45 insertions, 0 deletions
diff --git a/3363/CH15/EX15.2/Ex15_2.sce b/3363/CH15/EX15.2/Ex15_2.sce new file mode 100755 index 000000000..6f2db7853 --- /dev/null +++ b/3363/CH15/EX15.2/Ex15_2.sce @@ -0,0 +1,11 @@ +//Example 15.2, Page 533 +clc; +c=3*10^8//m/s +k=500//Mev +p=(k)/(c*6.2*10^12) +h=6.63*10^-34//in j-s +lambda=h/p +angle=0.53//in rad +r=lambda/angle +printf("\n The wavelength is %e m",lambda) +printf("\n The angle is %e m",r) diff --git a/3363/CH15/EX15.4/Ex15_4.sce b/3363/CH15/EX15.4/Ex15_4.sce new file mode 100755 index 000000000..6aa45efd3 --- /dev/null +++ b/3363/CH15/EX15.4/Ex15_4.sce @@ -0,0 +1,13 @@ +//Example 15.4, Page 540 +clc +kb=4.44//in Mev +ka=7.70//in Mev +mb=1 +mB=17 +ma=4 +Q=(kb*(1+(mb/mB)))-(ka*(1-(ma/mB))) +disp('Part a') +printf("\n The value of Q is %f Mev",Q) +c=3*10^8//m/s +m=Q/(931.5) +printf("\n The atomic mass of Q is %e u",m)
\ No newline at end of file diff --git a/3363/CH15/EX15.5/Ex15_5.sce b/3363/CH15/EX15.5/Ex15_5.sce new file mode 100755 index 000000000..304073faa --- /dev/null +++ b/3363/CH15/EX15.5/Ex15_5.sce @@ -0,0 +1,8 @@ +//Example 15.5, Page 541 +clc +M_He=4.0026033//*u, Mass of helium +M1H1=1.00782525//*u, electron mass +Mon1=1.0086654//*u, neutron mass +Mass=(2*M1H1)+(2*Mon1) +delta_M=(Mass)-M_He +printf("\n The binding energy of helium is %f *u",delta_M)
\ No newline at end of file diff --git a/3363/CH15/EX15.7/Ex15_7.sce b/3363/CH15/EX15.7/Ex15_7.sce new file mode 100755 index 000000000..9e7311f61 --- /dev/null +++ b/3363/CH15/EX15.7/Ex15_7.sce @@ -0,0 +1 @@ +//Example 15.7, page 547
\ No newline at end of file diff --git a/3363/CH15/EX15.8/Ex15_8.sce b/3363/CH15/EX15.8/Ex15_8.sce new file mode 100755 index 000000000..fd3fe5867 --- /dev/null +++ b/3363/CH15/EX15.8/Ex15_8.sce @@ -0,0 +1,12 @@ +//Example 15.8, page 550 +clc +N=0.60 +rho=(N)/((4/3)) +printf("\n The density is %f /pi*a^3",rho) +h=6.63*10^-34//in j-s +a=1.1//F +M=1 +ef=43//in Mev +En=7//in Mev +Vo=ef+En +printf("\n The depth of the net nuclear potential acting on neutron \n is %d Mev", Vo) |