From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1949/CH3/EX3.16/Ex3_16.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 1949/CH3/EX3.16/Ex3_16.sce (limited to '1949/CH3/EX3.16') diff --git a/1949/CH3/EX3.16/Ex3_16.sce b/1949/CH3/EX3.16/Ex3_16.sce new file mode 100755 index 000000000..061721db8 --- /dev/null +++ b/1949/CH3/EX3.16/Ex3_16.sce @@ -0,0 +1,15 @@ +//Chapter-3,Example 3_16,Page 3-24 +clc() + +//Given Data: +NA=0.16 //Numerical Aperture of Fibre +n1=1.45 //R.I. of core +d=90*10^-6 //Core diameter + +//Calculations: +//NA=sqrt(n1^2-n2^2) +n2=sqrt(n1^2-NA^2) //R.I.of cladding +printf('(a)Refractive Index of cladding of fibre is =%.3f \n \n',n2) + +theta0=asin(NA)*180/%pi //Acceptance angle of fibre +printf(' (b)Acceptance angle of Fibre is =%.2f degrees \n',theta0) -- cgit