diff options
Diffstat (limited to '1427/CH34/EX34.12/34_12.sce')
-rw-r--r-- | 1427/CH34/EX34.12/34_12.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH34/EX34.12/34_12.sce b/1427/CH34/EX34.12/34_12.sce new file mode 100644 index 000000000..9280e6b74 --- /dev/null +++ b/1427/CH34/EX34.12/34_12.sce @@ -0,0 +1,8 @@ +//ques-34.12
+//Calculating concentration of a solution
+clc
+ratio=100/20;//= Io/I
+EC=12000;//(in L/mol/cm)
+l=2.5;//thickness (in cm)
+C=log10(ratio)/(EC*l);
+printf("The concentration of the solution is %.7f mol/L.",C);
|