diff options
Diffstat (limited to '2411/CH3/EX3.b.101/Ex3b_1.sce')
-rwxr-xr-x | 2411/CH3/EX3.b.101/Ex3b_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2411/CH3/EX3.b.101/Ex3b_1.sce b/2411/CH3/EX3.b.101/Ex3b_1.sce new file mode 100755 index 000000000..b57452674 --- /dev/null +++ b/2411/CH3/EX3.b.101/Ex3b_1.sce @@ -0,0 +1,11 @@ +// Scilab Code Ex3b.1: Page-163 (2008)
+clc; clear;
+mu = 1.5; // Refractive indexof glass
+i_p = atand(mu); // Angle of polarization from Brewster's law, degree
+r = 90 - i_p; // Angale of refraction, degree
+printf("\nThe Brewster angle for glass = %4.1f degree", i_p);
+printf("\nThe angle of refraction for glass = %4.1f degree", r);
+
+// Result
+// The Brewster angle for glass = 56.3 degree
+// The angle of refraction for glass = 33.7 degree
\ No newline at end of file |