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 /1172/CH1/EX1.33/Example1_33.sce | |
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 '1172/CH1/EX1.33/Example1_33.sce')
-rwxr-xr-x | 1172/CH1/EX1.33/Example1_33.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1172/CH1/EX1.33/Example1_33.sce b/1172/CH1/EX1.33/Example1_33.sce new file mode 100755 index 000000000..39e8e534a --- /dev/null +++ b/1172/CH1/EX1.33/Example1_33.sce @@ -0,0 +1,14 @@ +clc
+// Given That
+rotation=13.2// in degree
+conc=0.1// gram per cubic cm
+l=2// length of tube in dm
+//Sample Problem 33 Page No. 60
+printf("\n # Problem 33 # \n ")
+printf(" \n Standard formula used \n delta=pi*d*del_mu/lambda \n")
+s= (rotation*(%pi/180))/ (l*conc)
+specific_rotation=s*180/%pi
+printf("Specific rotation of sample is %d degree. \n",specific_rotation)
+
+
+
|