diff options
Diffstat (limited to '2243/CH5/EX5.9')
-rwxr-xr-x | 2243/CH5/EX5.9/Ex5_9.sce | 16 | ||||
-rwxr-xr-x | 2243/CH5/EX5.9/Res5_9.txt | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/2243/CH5/EX5.9/Ex5_9.sce b/2243/CH5/EX5.9/Ex5_9.sce new file mode 100755 index 000000000..c6b2b630c --- /dev/null +++ b/2243/CH5/EX5.9/Ex5_9.sce @@ -0,0 +1,16 @@ +clc();
+clear;
+//Given :
+rho = 6.6; // Specific rotation of sugar in degrees g^-1 cm^2
+l = 20; //length in cm
+deltad = 1*10^-3;//difference in sugar concentration in g/cm^3
+lc = 0.1; // least count in degrees
+//Rotation due to optical activity = rho*l*d
+deltatheta = rho*l*deltad; // in degrees
+printf("Change in theta :%1.3f degrees.\n\n",deltatheta);
+
+if(deltatheta > lc)
+ printf("The concentration of 1 mg/cm^3 will be detected by the given urinalysis tube.");
+ else
+ printf("The concentration of 1 mg/cm^3 will not be detected.");
+end
diff --git a/2243/CH5/EX5.9/Res5_9.txt b/2243/CH5/EX5.9/Res5_9.txt new file mode 100755 index 000000000..401e78930 --- /dev/null +++ b/2243/CH5/EX5.9/Res5_9.txt @@ -0,0 +1,3 @@ +Change in theta :0.132 degrees.
+
+The concentration of 1 mg/cm^3 will be detected.
\ No newline at end of file |