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 /1970/CH8/EX8.8 | |
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 '1970/CH8/EX8.8')
-rwxr-xr-x | 1970/CH8/EX8.8/CH08Exa8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1970/CH8/EX8.8/CH08Exa8.sce b/1970/CH8/EX8.8/CH08Exa8.sce new file mode 100755 index 000000000..1827b4d02 --- /dev/null +++ b/1970/CH8/EX8.8/CH08Exa8.sce @@ -0,0 +1,19 @@ +// Scilab code Exa8.8 : : Page-351 (2011) +clc; clear; +S = 1; // Spin angular momentum(s1+-s2), whereas s1 is the spin of proton and s2 is the spin of neutron. +m = 2*S+1; // Spin multiplicity +j = 1; // Total angular momentum +printf("\nThe possible angular momentum states with their parities are as follows : "); + printf("\n %dS%d has even parity ", m, j); + printf("\n %dP%d has odd parity ", m, j); + printf("\n %dD%d has even parity", m, j); +S = 0; +m = 2*S+1 + printf("\n %dP%d has odd parity ", m, j); + +// Result +// The possible angular momentum states with their parities are as follows : +// 3S1 has even parity +// 3P1 has odd parity +// 3D1 has even parity +// 1P1 has odd parity
\ No newline at end of file |