diff options
Diffstat (limited to '24/CH43/EX43.7')
-rwxr-xr-x | 24/CH43/EX43.7/Example43_7.sce | 11 | ||||
-rwxr-xr-x | 24/CH43/EX43.7/Example43_7_result.txt | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/24/CH43/EX43.7/Example43_7.sce b/24/CH43/EX43.7/Example43_7.sce new file mode 100755 index 000000000..72b953464 --- /dev/null +++ b/24/CH43/EX43.7/Example43_7.sce @@ -0,0 +1,11 @@ +//Given that
+M_P = 31.97391 //in u
+M_S = 31.97207 //in u
+uCsqure = 931.5 //in Mev
+
+//Sample Problem 43-7
+txt = mopen('Example43_7_result.txt','wt')
+mfprintf(txt, '**Sample Problem 43-7**\n')
+Q = -(M_S - M_P)*uCsqure
+mfprintf(txt, 'The disintegration energy for the beta decay of Phosphorus is %fMev', Q)
+mclose(txt)
\ No newline at end of file diff --git a/24/CH43/EX43.7/Example43_7_result.txt b/24/CH43/EX43.7/Example43_7_result.txt new file mode 100755 index 000000000..8c583a7e0 --- /dev/null +++ b/24/CH43/EX43.7/Example43_7_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 43-7**
+The disintegration energy for the beta decay of Phosphorus is 1.713960Mev
\ No newline at end of file |