diff options
Diffstat (limited to '3701/CH2/EX2.19/Ex2_19.sce')
-rw-r--r-- | 3701/CH2/EX2.19/Ex2_19.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3701/CH2/EX2.19/Ex2_19.sce b/3701/CH2/EX2.19/Ex2_19.sce new file mode 100644 index 000000000..9efcd67b3 --- /dev/null +++ b/3701/CH2/EX2.19/Ex2_19.sce @@ -0,0 +1,14 @@ +////Given
+E=1.02 //Mev
+b=0.51
+
+//Calculation
+//
+alpha=E/b
+a=1/(sqrt(2*(alpha+2)))
+angle=2*(asin(a)*180/3.14)
+e=E/(1.0+alpha*(1-(cos(angle*3.14/180.0))))
+
+//Result
+printf("\n (a) Angle for symmetric scattering is %0.1f degree",angle)
+printf("\n (b) energy of the scattered photon is %0.2f Mev",e)
|