summaryrefslogtreecommitdiff
path: root/3547/CH10/EX10.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3547/CH10/EX10.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3547/CH10/EX10.1')
-rw-r--r--3547/CH10/EX10.1/EX10_1.pngbin0 -> 13817 bytes
-rw-r--r--3547/CH10/EX10.1/EX10_1.sce23
2 files changed, 23 insertions, 0 deletions
diff --git a/3547/CH10/EX10.1/EX10_1.png b/3547/CH10/EX10.1/EX10_1.png
new file mode 100644
index 000000000..6d982bd9e
--- /dev/null
+++ b/3547/CH10/EX10.1/EX10_1.png
Binary files differ
diff --git a/3547/CH10/EX10.1/EX10_1.sce b/3547/CH10/EX10.1/EX10_1.sce
new file mode 100644
index 000000000..2e3655c4a
--- /dev/null
+++ b/3547/CH10/EX10.1/EX10_1.sce
@@ -0,0 +1,23 @@
+// Example 10.1
+// Calculation of the non linear coeffifient.
+// Page no 429
+
+clc;
+clear;
+close;
+
+//Given data
+n2=2.5*10^-20; // Kerr coefficient
+lambda=1550*10^-9; // Wavelength
+A=80*10^-12; // Effective area
+
+
+
+// Non linear coeffifient
+g=(n2*2*%pi)/(lambda*A);
+g=g*10^3;
+
+
+//Displaying results in the command window
+printf("\n Nonlinear coefficient = %0.3f W^-1m^-1 ",g);
+