diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3875/CH4 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3875/CH4')
-rw-r--r-- | 3875/CH4/EX4.14/4_14.txt | 9 | ||||
-rw-r--r-- | 3875/CH4/EX4.14/Ex4_14.sce | 31 |
2 files changed, 40 insertions, 0 deletions
diff --git a/3875/CH4/EX4.14/4_14.txt b/3875/CH4/EX4.14/4_14.txt new file mode 100644 index 000000000..5e76ebafb --- /dev/null +++ b/3875/CH4/EX4.14/4_14.txt @@ -0,0 +1,9 @@ + The wavelength of light for first order is = 1.20e-04 cm and it lies in the infrared region
+
+ The wavelength of light for second order is = 6.0e-05 cm and it lies in the visible region
+
+ The wavelength of light for third order is = 4.0e-05 cm and it lies in the visible region
+
+ The wavelength of light for fourth order is = 3.0e-05 cm and it lies in the ultravoilet(invisible) region
+
+The absent wavelengths in the reflected light are 6.0e-05 cm and 4.0e-05 cm
\ No newline at end of file diff --git a/3875/CH4/EX4.14/Ex4_14.sce b/3875/CH4/EX4.14/Ex4_14.sce new file mode 100644 index 000000000..defad8c24 --- /dev/null +++ b/3875/CH4/EX4.14/Ex4_14.sce @@ -0,0 +1,31 @@ +clc;
+clear;
+i=35 //angle of incidence in degree
+myu=1.33 //refractive index
+d=5*10^-5 //thickness of the soap film in cm
+n1=1 //for first order
+n2=2 //for second order
+n3=3 //for third order
+n4=4 //for fourth order
+
+//calculation
+r=asind(sind(i)/myu) //angle of refraction in degree
+
+//case(1) for first order
+lambda_1=(2*myu*d*cosd(r))/n1
+
+//case(2) for second order
+lambda_2=(2*myu*d*cosd(r))/n2
+
+//case(3) for third order
+lambda_3=(2*myu*d*cosd(r))/n3
+
+//case(14) for fourth order
+lambda_4=(2*myu*d*cosd(r))/n4
+
+
+mprintf("\n The wavelength of light for first order is = %1.2e cm and it lies in the infrared region\n",lambda_1)
+mprintf("\n The wavelength of light for second order is = %1.1e cm and it lies in the visible region\n",lambda_2)
+mprintf("\n The wavelength of light for third order is = %1.1e cm and it lies in the visible region\n",lambda_3)
+mprintf("\n The wavelength of light for fourth order is = %1.1e cm and it lies in the ultravoilet(invisible) region\n",lambda_4)
+mprintf("\nThe absent wavelengths in the reflected light are %1.1e cm and %1.1e cm",lambda_2,lambda_3)
|