diff options
Diffstat (limited to '446/CH6/EX6.5')
-rwxr-xr-x | 446/CH6/EX6.5/6_5.sce | 18 | ||||
-rwxr-xr-x | 446/CH6/EX6.5/6_5.txt | 6 |
2 files changed, 24 insertions, 0 deletions
diff --git a/446/CH6/EX6.5/6_5.sce b/446/CH6/EX6.5/6_5.sce new file mode 100755 index 000000000..1b6df32e1 --- /dev/null +++ b/446/CH6/EX6.5/6_5.sce @@ -0,0 +1,18 @@ +clear
+clc
+disp('Exa-6.5');
+sl=364.5;n=3; //given variables and various constants are declared in the subsequent steps wherever necessary
+w1=sl*(n^2/(n^2-4)); //longest wavelength of balmer
+c=3*10^8;
+f1=c/(w1*10^-9); //corresponding freq.
+n0=1;n=2;
+w2=91.13*(n^2/(n^2-n0^2)); //first longest of lymann
+f2=c/(w2*10^-9); //correspoding freq
+n0=1;n=3
+w3=91.13*(n^2/(n^2-n0^2)); //second longest of lymann
+f3=3*10^8/(w3*10^-9) //corresponding freq.
+printf('The freq. corresponding to the longest wavelength of balmer is %e & First longest wavelength of Lymann is %e.\n',f1,f2);
+printf('The sum of which s equal to %e\n',f1+f2);
+printf('The freq. corresponding to 2nd longest wavelength was found out to be %e\n.Hence Ritz combination principle is satisfied.',f3);
+
+
\ No newline at end of file diff --git a/446/CH6/EX6.5/6_5.txt b/446/CH6/EX6.5/6_5.txt new file mode 100755 index 000000000..98fa2b384 --- /dev/null +++ b/446/CH6/EX6.5/6_5.txt @@ -0,0 +1,6 @@ +
+ Exa-6.5
+The freq. corresponding to the longest wavelength of balmer is 4.572474e+014 & First longest wavelength of Lymann is 2.469000e+015.
+The sum of which s equal to 2.926248e+015
+The freq. corresponding to 2nd longest wavelength was found out to be 2.926223e+015
+.Hence Ritz combination principle is satisfied.
\ No newline at end of file |