summaryrefslogtreecommitdiff
path: root/2243/CH8/EX8.7/Ex8_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2243/CH8/EX8.7/Ex8_7.sce')
-rwxr-xr-x2243/CH8/EX8.7/Ex8_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2243/CH8/EX8.7/Ex8_7.sce b/2243/CH8/EX8.7/Ex8_7.sce
new file mode 100755
index 000000000..f3b1d913d
--- /dev/null
+++ b/2243/CH8/EX8.7/Ex8_7.sce
@@ -0,0 +1,11 @@
+clc();
+clear;
+//Given :
+Q = 4 ;// in MeV
+Ex = 2; // in MeV
+Ey = 5 ; // in MeV
+mx = 4; // in u
+my = 1 ; // in u
+My =13; // in u
+theta = acosd(( (Ey*(1 + (my/My))) - (Ex*(1 - (mx/My))) - Q )/((2/My)*sqrt(mx*Ex*my*Ey))); // angle of ejection in degrees
+printf("Angle of ejection is %.0f degrees",theta);