diff options
Diffstat (limited to '1427/CH34/EX34.9/34_9.sce')
-rw-r--r-- | 1427/CH34/EX34.9/34_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH34/EX34.9/34_9.sce b/1427/CH34/EX34.9/34_9.sce new file mode 100644 index 000000000..45116f68d --- /dev/null +++ b/1427/CH34/EX34.9/34_9.sce @@ -0,0 +1,8 @@ +//ques-34.9
+//Calculating concentration of a solution
+clc
+ratio=1/0.4;//= Io/I
+EC=6000;//(in L/mol/cm)
+l=2;//thickness (in cm)
+C=log10(ratio)/(EC*l);
+printf("The concentration of the solution is %.8f mol/L.",C);
|