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 /1271/CH3/EX3.3 | |
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 '1271/CH3/EX3.3')
-rwxr-xr-x | 1271/CH3/EX3.3/3.txt | 3 | ||||
-rwxr-xr-x | 1271/CH3/EX3.3/example3_3.sce | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/1271/CH3/EX3.3/3.txt b/1271/CH3/EX3.3/3.txt new file mode 100755 index 000000000..eb728415b --- /dev/null +++ b/1271/CH3/EX3.3/3.txt @@ -0,0 +1,3 @@ + Polarising angle for water to glass = 49.184916 degree,
+ Polarising angle for glass to water = 40.815084 degree
+ So polarising angle is greater for a beam incident from water to glass
diff --git a/1271/CH3/EX3.3/example3_3.sce b/1271/CH3/EX3.3/example3_3.sce new file mode 100755 index 000000000..fbacdb983 --- /dev/null +++ b/1271/CH3/EX3.3/example3_3.sce @@ -0,0 +1,11 @@ +clc +// Given that +mu_w = 1.33 // refractive index of water +mu_g = 1.54 // refractive index of glass +// Sample Problem 3 on page no. 3.24 +printf("\n # PROBLEM 3 # \n") +Ip_1 = atan(mu_g / mu_w) * (180 / %pi)//calculation for polarizing angle for water +Ip_2 = atan(mu_w / mu_g) * (180 / %pi) // calculation for polarizing angle for glass +printf("Standard formula used \n mu=tan(Ip)\n") +printf("\n Polarizing angle for water to glass = %f degree,\n Polarizing angle for glass to water = %f degree",Ip_1,Ip_2) +printf("\n So polarizing angle is greater for a beam incident from water to glass") |