summaryrefslogtreecommitdiff
path: root/2183/CH6/EX6.4.b/Ex_6_4_b.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2183/CH6/EX6.4.b/Ex_6_4_b.sce
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 '2183/CH6/EX6.4.b/Ex_6_4_b.sce')
-rwxr-xr-x2183/CH6/EX6.4.b/Ex_6_4_b.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/2183/CH6/EX6.4.b/Ex_6_4_b.sce b/2183/CH6/EX6.4.b/Ex_6_4_b.sce
new file mode 100755
index 000000000..381865e9e
--- /dev/null
+++ b/2183/CH6/EX6.4.b/Ex_6_4_b.sce
@@ -0,0 +1,9 @@
+// Example 6.4.b //optical power loss
+clc;
+clear;
+close;
+NA=0.2;//numerical aperture
+n=1.4;//refractive index
+nc=(NA)^2;//coupling efficiency
+Loss=round(-(10*log10(nc)));//optical loss in dB
+disp(Loss,"optical loss in dB is")