diff options
Diffstat (limited to '2243/CH5/EX5.4/Ex5_4.sce')
-rwxr-xr-x | 2243/CH5/EX5.4/Ex5_4.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2243/CH5/EX5.4/Ex5_4.sce b/2243/CH5/EX5.4/Ex5_4.sce new file mode 100755 index 000000000..985a5a9b0 --- /dev/null +++ b/2243/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,8 @@ +clc(); +clear; +//Given: +mu = 1.33; //Refractive index of water +//Brewster's angle, theta_p = atand(mu) ; +theta_p = atand(mu); // in degrees +theta_s = 90-theta_p ; // in degrees +printf("Angle = %.1f degrees",theta_s); |