summaryrefslogtreecommitdiff
path: root/1949/CH3/EX3.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1949/CH3/EX3.15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1949/CH3/EX3.15')
-rwxr-xr-x1949/CH3/EX3.15/Ex3_15.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1949/CH3/EX3.15/Ex3_15.sce b/1949/CH3/EX3.15/Ex3_15.sce
new file mode 100755
index 000000000..31c9ee5f3
--- /dev/null
+++ b/1949/CH3/EX3.15/Ex3_15.sce
@@ -0,0 +1,13 @@
+//Chapter-3,Example 3_15,Page 3-24
+clc()
+
+//Given Data:
+n1=1.45 //R.I.of core
+n2=1.40 //R.I. of cladding
+
+//Calculations:
+NA=sqrt(n1^2-n2^2) //Numerical Aperture
+printf('Numerical Aperture of Fibre is =%.4f \n \n',NA)
+
+theta0=asin(NA)*180/%pi //Acceptance angle of fibre
+printf(' Acceptance angle of Fibre is =%.2f degrees \n',theta0)