diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1847/CH4/EX4.22 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1847/CH4/EX4.22')
-rwxr-xr-x | 1847/CH4/EX4.22/Ch04Ex22.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1847/CH4/EX4.22/Ch04Ex22.sce b/1847/CH4/EX4.22/Ch04Ex22.sce new file mode 100755 index 000000000..f3da649ab --- /dev/null +++ b/1847/CH4/EX4.22/Ch04Ex22.sce @@ -0,0 +1,16 @@ +// Scilab Code Ex4.22: : Page-4.35 (2009)
+clc; clear;
+l = 5; // Length of the tube, dm
+m = 50; // Amount of sugar, g
+S = 50; // Specific rotation of sugar solution, degrees
+V = 150; // Volume of sugar solution, cc
+c = m/V; // Concentration of sugar, g/cc
+// As S = theta/(l*c), solving for theta
+theta = S*l*c; // Angle of rotation of the optically active solution
+
+printf("\nThe angle of rotation of the optically active solution = %4.1f degrees", theta);
+
+// Result
+// The angle of rotation of the optically active solution = 83.3 degrees
+
+
|