From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1535/CH5/EX5.6/Ch05Ex6.sci | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 1535/CH5/EX5.6/Ch05Ex6.sci (limited to '1535/CH5/EX5.6') diff --git a/1535/CH5/EX5.6/Ch05Ex6.sci b/1535/CH5/EX5.6/Ch05Ex6.sci new file mode 100755 index 000000000..3553317ef --- /dev/null +++ b/1535/CH5/EX5.6/Ch05Ex6.sci @@ -0,0 +1,10 @@ +// Scilab Code Ex5.6 : Brewster angle at the boundary between two materials : Page-114 (2010) +C = 52; // Critical angle for total internal reflection at a boundary between two materials, degrees +// From Brewster's law, tand(i_B) = 1_mu_2 +// Also sind(C) = 1_mu_2, so that +// tand(i_B) = sind(C), solving for i_B +i_B = atand(sind(C)); // Brewster angle at the boundary, degrees +printf("\nThe Brewster angle at the boundary between two materials = %2d degrees", i_B); + +// Result +// The Brewster angle at the boundary between two materials = 38 degrees \ No newline at end of file -- cgit