diff options
Diffstat (limited to '2855/CH1/EX1.8/Ex1_8.sce')
-rw-r--r-- | 2855/CH1/EX1.8/Ex1_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2855/CH1/EX1.8/Ex1_8.sce b/2855/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..13206aed4 --- /dev/null +++ b/2855/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,18 @@ +
+
+
+
+
+//Ex1_8
+//given
+//page no 12
+clc;
+clear;
+//k=aa+as=6.3;
+//Given values from research
+k=6.3; //combined attenuation due to absorption and scattering
+d=25; //in cm
+disp('Solution (ii)');
+//Io/Ii=exp(-(ao+ai)*d); d in m
+j=exp(-(k)*d/100); //Io/Ii ratio
+printf("\n Io is %0.3f of Ii \n",j); //result
|