diff options
Diffstat (limited to '3537/CH7/EX7.16')
-rw-r--r-- | 3537/CH7/EX7.16/Ex7_16.sce | 8 | ||||
-rw-r--r-- | 3537/CH7/EX7.16/Ex7_16.txt | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/3537/CH7/EX7.16/Ex7_16.sce b/3537/CH7/EX7.16/Ex7_16.sce new file mode 100644 index 000000000..1e9b14747 --- /dev/null +++ b/3537/CH7/EX7.16/Ex7_16.sce @@ -0,0 +1,8 @@ +//Example 7_16
+clc();
+clear;
+//To calculate the angle of acceptance
+n1=1.563
+n2=1.498
+theta=asin(sqrt(n1^2-n2^2))*180/%pi
+printf("The acceptance angle is %.2f degrees",theta )
diff --git a/3537/CH7/EX7.16/Ex7_16.txt b/3537/CH7/EX7.16/Ex7_16.txt new file mode 100644 index 000000000..314c5cda5 --- /dev/null +++ b/3537/CH7/EX7.16/Ex7_16.txt @@ -0,0 +1 @@ +The acceptance angle is 26.49 degrees
\ No newline at end of file |