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 /767/CH1/EX1.6.1 | |
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 '767/CH1/EX1.6.1')
-rwxr-xr-x | 767/CH1/EX1.6.1/Ch1Exa1_6_1.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/767/CH1/EX1.6.1/Ch1Exa1_6_1.sci b/767/CH1/EX1.6.1/Ch1Exa1_6_1.sci new file mode 100755 index 000000000..363f8491c --- /dev/null +++ b/767/CH1/EX1.6.1/Ch1Exa1_6_1.sci @@ -0,0 +1,12 @@ +// Scilab code Exa1.6.1 : Orbital angular momentum of coupled nucleons : Page 39 (2011)
+l1 = 1; // Orbital qunatum number for p-state nucleon
+l2 = 2; // Orbital qunatum number for d-state nucleon
+// Display the value of L within the for loop
+disp("The possible L values will be");
+for i = abs(l1-l2):1:abs(l1+l2) // Coupling of l-orbitals
+ printf("\t %1d",i);
+end
+
+// Result
+// The possible L values will be
+// 1 2 3
\ No newline at end of file |