From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3547/CH1/EX1.6/1_6.jpg | Bin 0 -> 53473 bytes 3547/CH1/EX1.6/Ex1_6.sce | 14 ++++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 3547/CH1/EX1.6/1_6.jpg create mode 100644 3547/CH1/EX1.6/Ex1_6.sce (limited to '3547/CH1/EX1.6') diff --git a/3547/CH1/EX1.6/1_6.jpg b/3547/CH1/EX1.6/1_6.jpg new file mode 100644 index 000000000..0b353c79d Binary files /dev/null and b/3547/CH1/EX1.6/1_6.jpg differ diff --git a/3547/CH1/EX1.6/Ex1_6.sce b/3547/CH1/EX1.6/Ex1_6.sce new file mode 100644 index 000000000..e47d23cb0 --- /dev/null +++ b/3547/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,14 @@ +// Example 1.6 +// To find refractive index of of the glass +// Page no.25 + +clc; +clear; + +// Given data +phi=0.7297; // Critical angle for glass-air interface +n2=1; // Refractive index of air +n1=n2/sin(phi); // Refractive index of glass + +// Displaying the result in command window +printf('\n Refractive index of the glass = %0.1f',n1); -- cgit