summaryrefslogtreecommitdiff
path: root/3768/CH12/EX12.5/Ex12_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3768/CH12/EX12.5/Ex12_5.sce')
-rw-r--r--3768/CH12/EX12.5/Ex12_5.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3768/CH12/EX12.5/Ex12_5.sce b/3768/CH12/EX12.5/Ex12_5.sce
new file mode 100644
index 000000000..4035f5170
--- /dev/null
+++ b/3768/CH12/EX12.5/Ex12_5.sce
@@ -0,0 +1,13 @@
+//Example number 12.5, Page number 265
+
+clc;clear;
+close;
+
+//Variable declaration
+n1=1.53; //Core refractive index
+n2=1.42; //Cladding refractive index
+//Calculation
+thetac=asin(n2/n1); //critical angle(radian)
+thetac=thetac*180/%pi; //critical angle(degrees)
+//Resul"
+printf("critical angle is %.2f degree",thetac)