diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2183/CH3/EX3.3.b | |
download | Scilab-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/CH3/EX3.3.b')
-rwxr-xr-x | 2183/CH3/EX3.3.b/ex_3_3_b.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2183/CH3/EX3.3.b/ex_3_3_b.sce b/2183/CH3/EX3.3.b/ex_3_3_b.sce new file mode 100755 index 000000000..36a2e0e6d --- /dev/null +++ b/2183/CH3/EX3.3.b/ex_3_3_b.sce @@ -0,0 +1,11 @@ +// Example 3.3.b:insertion loss +clc; +clear; +close; +n12=1.5;//refractive index +y=5;//lateral misalignment in micro meter +a2=50;//dia in micro meter +nlat=(1/(%pi))*((2*acos(y/a2))-(y/a2)*sqrt(1-(y/a2)^2));// +loss=-10*log10(nlat);//loss in dB +disp(loss,"insertion loss in dB is") +//answer is wrong in the textbook |