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 /273/CH6 | |
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 '273/CH6')
-rwxr-xr-x | 273/CH6/EX6.1/ex6_1sce.sce | 10 | ||||
-rwxr-xr-x | 273/CH6/EX6.2/ex6_2.sce | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/273/CH6/EX6.1/ex6_1sce.sce b/273/CH6/EX6.1/ex6_1sce.sce new file mode 100755 index 000000000..239030ae1 --- /dev/null +++ b/273/CH6/EX6.1/ex6_1sce.sce @@ -0,0 +1,10 @@ +clc;clear;
+//Example 6.1
+//Optical path calculation
+
+//given values
+n=1.33;//refractive index of medium
+x=.75;//geometrical path in micrometre
+ //calculation
+y=x*n;//
+disp(y,'optical path (in micrometre) is:')
diff --git a/273/CH6/EX6.2/ex6_2.sce b/273/CH6/EX6.2/ex6_2.sce new file mode 100755 index 000000000..8571590da --- /dev/null +++ b/273/CH6/EX6.2/ex6_2.sce @@ -0,0 +1,10 @@ +clc;clear;
+//Example 6.2
+//Coherence length calculation
+
+//given values
+l=1*10^-14;//line width in metre
+x=10.6*10^-6;//IR emission wavelength in metre
+ //calculation
+y=x^2/l;//
+disp(y,'coherence length(in metre) is:')
|