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/CH17 | |
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/CH17')
-rwxr-xr-x | 3363/CH17/EX17.1/Ex17_1.sce | 10 | ||||
-rwxr-xr-x | 3363/CH17/EX17.3/Ex17_3.sce | 8 | ||||
-rwxr-xr-x | 3363/CH17/EX17.5/Ex17_5.sce | 38 |
3 files changed, 56 insertions, 0 deletions
diff --git a/3363/CH17/EX17.1/Ex17_1.sce b/3363/CH17/EX17.1/Ex17_1.sce new file mode 100755 index 000000000..3c8bffd88 --- /dev/null +++ b/3363/CH17/EX17.1/Ex17_1.sce @@ -0,0 +1,10 @@ +//Example 17.1, Page 643 +clc +h=1.05*10^-34//j-s +M=1.7*10^-27//in kg +r=2*10^-15//in m +K=(h**2)/(M*r*r) +s=K* 6.24150647996E+12//converting to Mev +K_total_cm=2*s +k_incident=2*K_total_cm +printf("\n The kinetic energy of incident nucleon is %d Mev",k_incident)
\ No newline at end of file diff --git a/3363/CH17/EX17.3/Ex17_3.sce b/3363/CH17/EX17.3/Ex17_3.sce new file mode 100755 index 000000000..0eaedeacf --- /dev/null +++ b/3363/CH17/EX17.3/Ex17_3.sce @@ -0,0 +1,8 @@ +//Example 17.3, page 653 +clc +h=1*10^-34//j-s +r=2*10^-15//m +c=3*10^8//m/s +m_pi=h/(r*c) +printf("The value of m pi is %e kg", m_pi) +//Answer difference is because of round off
\ No newline at end of file diff --git a/3363/CH17/EX17.5/Ex17_5.sce b/3363/CH17/EX17.5/Ex17_5.sce new file mode 100755 index 000000000..0d7550639 --- /dev/null +++ b/3363/CH17/EX17.5/Ex17_5.sce @@ -0,0 +1,38 @@ +//Example 17.5, page no 664 +clc; +Tz=(1-1)/2 +//For K+ +Q=1 +B=0 +S=1 +Tz=1-0.5 +printf("The value of Tz for K+ is %f \n",Tz) + +//For K- +Q=-1 +B=0 +S=-1 +Tz=-1+0.5 +printf("The value of Tz for K- is %f\n",Tz) + + +//For Ko +Q=0 +B=0 +S=1 +Tz=-0-0.5 +printf("The value of Tz for Ko is %f \n",Tz) + + +//For Ko_dash +Tz=0+0.5 +printf("The value of Tz for Ko- is %f \n",Tz) + + + + + + + + + |