diff options
Diffstat (limited to '3537/CH7/EX7.9/Ex7_9.sce')
-rw-r--r-- | 3537/CH7/EX7.9/Ex7_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3537/CH7/EX7.9/Ex7_9.sce b/3537/CH7/EX7.9/Ex7_9.sce new file mode 100644 index 000000000..6df1cf016 --- /dev/null +++ b/3537/CH7/EX7.9/Ex7_9.sce @@ -0,0 +1,8 @@ +//Example 7_9
+clc();
+clear;
+//To calculate the angle of acceptance of a optical fiber
+n1=1.563
+n2=1.498
+theta=asin(sqrt(n1^2-n2^2))*180/%pi
+printf("The angle of acceptance is %.2f degrees",theta)
|