summaryrefslogtreecommitdiff
path: root/1847/CH4/EX4.24/Ch04Ex24.sce
blob: ec8935fbd53a5783dac713da79b78b90268acd3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Scilab Code Ex4.24:: Page-4.36 (2009)
clc; clear;
l = 17;     // Length of the tube, cm
V = 37;     // Volume of sugar solution, cc
theta = 15;       // Angle of rotation of the plane of polarization, degrees
S = 68;         // Specific rotation of sugar solution, degrees
// As S = 10*theta/(l*c), solving for c
c = 10*theta/(l*S);     // Concentration of sugar solution, g/cc
m = c*V;        // Mass of sugar in the solution contained in the tube, g

printf("\nThe mass of sugar in the solution contained in the tube = %3.1f g", m);

// Result 
// The mass of sugar in the solution contained in the tube = 4.8 g