diff options
Diffstat (limited to '1397/CH8/EX8.5/8_5.sce')
-rwxr-xr-x | 1397/CH8/EX8.5/8_5.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1397/CH8/EX8.5/8_5.sce b/1397/CH8/EX8.5/8_5.sce new file mode 100755 index 000000000..8323e65b9 --- /dev/null +++ b/1397/CH8/EX8.5/8_5.sce @@ -0,0 +1,7 @@ +//clc();
+clear;
+//To calculate critical angle
+n1=1.53; //refractive index of core
+n2=1.42; //refractive index of cladding
+thetac=asind(n2/n1);
+printf("critical angle is %f degrees",thetac);
|