blob: 27a99a461a596777341538b1563da5b50ac26f5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Scilab Code Ex4.8:: Page-4.9 (2009)
clc; clear;
ip = 60; // Polarizing angle, degrees
mu = tand(ip); // Brewster's law giving refractive index
A = 60; // Angle of prism, degrees
d = (mu - 1)*A; // Angle of minimum deviation for green light, degrees
printf("\nThe angle of minimum deviation for green light = %5.2f degrees", d);
// Result
// The angle of minimum deviation for green light = 43.92 degrees
|