diff options
Diffstat (limited to '3537/CH1/EX1.51/Ex1_51.sce')
-rw-r--r-- | 3537/CH1/EX1.51/Ex1_51.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3537/CH1/EX1.51/Ex1_51.sce b/3537/CH1/EX1.51/Ex1_51.sce new file mode 100644 index 000000000..c38726f5e --- /dev/null +++ b/3537/CH1/EX1.51/Ex1_51.sce @@ -0,0 +1,8 @@ +//Example 1_51
+clc();
+clear;
+//To find the refraactive index of the liquid
+D12air=1.45 //units in cm
+D12liq=1.25 //units in cm
+u=(D12air)^2/(D12liq)^2
+printf("Refractive index of the liquid is %.4f",u)
|