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 --- 1646/CH9/EX9.3/Ch09Ex3.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 1646/CH9/EX9.3/Ch09Ex3.sce (limited to '1646/CH9/EX9.3') diff --git a/1646/CH9/EX9.3/Ch09Ex3.sce b/1646/CH9/EX9.3/Ch09Ex3.sce new file mode 100755 index 000000000..186dbb4a1 --- /dev/null +++ b/1646/CH9/EX9.3/Ch09Ex3.sce @@ -0,0 +1,13 @@ +// Scilab Code Ex9.3: Page-464 (2011) +clc;clear; +mu0 = 1;....// Refactive index of fibre in air +mu2 = 1.59;....// Refactive index of the cladding +NA = 0.2;....// Numerial aperture of optical fibre +mu1 = sqrt(NA^2+mu2^2); // Refractive index of core +mu0 = 1.33; // Refactive index of fibre in water +NA = sqrt(mu1^2-mu2^2)/mu0; // Numerial aperture of optical fibre in water +theta_a = asind(NA); // Acceptance angle for the fibre in water +printf("\nThe acceptance angle for the optical fibre in water = %3.1f degrees", theta_a); + +// Result +// The acceptance angle for the optical fibre in water = 8.6 degrees -- cgit