From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 24/CH43/EX43.7/Example43_7.sce | 11 +++++++++++ 24/CH43/EX43.7/Example43_7_result.txt | 2 ++ 2 files changed, 13 insertions(+) create mode 100755 24/CH43/EX43.7/Example43_7.sce create mode 100755 24/CH43/EX43.7/Example43_7_result.txt (limited to '24/CH43/EX43.7') 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 -- cgit