diff options
Diffstat (limited to '3537/CH7/EX7.10/Ex7_10.sce')
-rw-r--r-- | 3537/CH7/EX7.10/Ex7_10.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3537/CH7/EX7.10/Ex7_10.sce b/3537/CH7/EX7.10/Ex7_10.sce new file mode 100644 index 000000000..9d52b4fec --- /dev/null +++ b/3537/CH7/EX7.10/Ex7_10.sce @@ -0,0 +1,8 @@ +//Example 7_10
+clc();
+clear;
+//To calculate the refractive index of the material of the core
+NA=0.39
+delta=0.05
+n1=NA/sqrt(2*delta)
+printf("The refractive index of the material of the core is %.4f",n1)
|