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 --- 767/CH1/EX1.6.1/Ch1Exa1_6_1.sci | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 767/CH1/EX1.6.1/Ch1Exa1_6_1.sci (limited to '767/CH1/EX1.6.1') 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 -- cgit