diff options
Diffstat (limited to '1397/CH8/EX8.9/8_9.sce')
-rwxr-xr-x | 1397/CH8/EX8.9/8_9.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1397/CH8/EX8.9/8_9.sce b/1397/CH8/EX8.9/8_9.sce new file mode 100755 index 000000000..99fa75513 --- /dev/null +++ b/1397/CH8/EX8.9/8_9.sce @@ -0,0 +1,7 @@ +//clc();
+clear;
+//To calculate refrative index of core
+delta=0.14; //fractional index change
+n2=1.3; //refractive index of cladding
+n1=n2/(1-delta);
+printf("refractive index of core is %f",n1);
|