diff options
Diffstat (limited to '1847/CH4/EX4.18/Ch04Ex18.sce')
-rwxr-xr-x | 1847/CH4/EX4.18/Ch04Ex18.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1847/CH4/EX4.18/Ch04Ex18.sce b/1847/CH4/EX4.18/Ch04Ex18.sce new file mode 100755 index 000000000..2a46ccc3e --- /dev/null +++ b/1847/CH4/EX4.18/Ch04Ex18.sce @@ -0,0 +1,14 @@ +// Scilab Code Ex4.18: : Page-4.34 (2009)
+clc; clear;
+theta = 15.2; // Angle through which plane of polarization is rotated, degrees
+S = 65; // Specific rotation of sugar solution, degrees
+l = 15; // Length of sugar, cm
+// As S = 10*theta/(l*c), solving for c
+c = 10*theta/(l*S); // Concentration of sugar, g/cc
+
+printf("\nThe strength of sugar solution = %4.2f g/cc", c);
+
+// Result
+// The strength of sugar solution = 0.16 g/cc
+
+
|