blob: d20d8b815bd0e3aceab9f998218968bdae0be040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Scilab Code Ex4.21:: Page-4.35 (2009)
clc; clear;
m = 15; // Amount of sugar, g
S = 66; // Specific rotation of sugar solution from the given data, degrees
l = 20; // Length of the tube, cm
V = 100; // Volume of sugar solution, cc
c = m/V; // Concentration of sugar, g/cc
// As S = 10*theta/(l*c), solving for theta
theta = S*l*c/10; // Angle of rotation of the plane of polarization, degrees
printf("\nThe angle of rotation of the plane of polarization = %4.1f degrees", theta);
// Result
// The angle of rotation of the plane of polarization = 19.8 degrees
|