diff options
Diffstat (limited to '3638/CH18/EX18.4/Ex18_4.sce')
-rw-r--r-- | 3638/CH18/EX18.4/Ex18_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3638/CH18/EX18.4/Ex18_4.sce b/3638/CH18/EX18.4/Ex18_4.sce new file mode 100644 index 000000000..73fb8a631 --- /dev/null +++ b/3638/CH18/EX18.4/Ex18_4.sce @@ -0,0 +1,13 @@ +//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
+//Example 18.4
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+//given
+S=3.4e-4;//Sensitivity of the sensing element in rad/Pa/m
+DeltaMin=3.6e-8;//Minimum detectable phase change in rad
+L=1;//Length of sensing element in m
+
+Pmin=DeltaMin/(L*S);//Corresponding minimum detectable pressure in Pa
+mprintf("\n Pmin= %.1e Pa",Pmin);//The answers vary due to round off error
|