summaryrefslogtreecommitdiff
path: root/884/CH1/EX1.6/Example1_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /884/CH1/EX1.6/Example1_6.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '884/CH1/EX1.6/Example1_6.sce')
-rwxr-xr-x884/CH1/EX1.6/Example1_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/884/CH1/EX1.6/Example1_6.sce b/884/CH1/EX1.6/Example1_6.sce
new file mode 100755
index 000000000..4b11269bb
--- /dev/null
+++ b/884/CH1/EX1.6/Example1_6.sce
@@ -0,0 +1,16 @@
+// Dimensional Analysis
+
+clear;
+clc;
+
+printf("\t Example 1.6\n");
+
+lb=0.0833;//pound mass, lb
+
+g=lb*453.6;//pound mass to gram mass, 1lb=453.6g
+
+mg=1000*g;//gram to milligram
+
+printf("\t the mass of glucose is : %1.2f *10^4 mg\n",mg*10^-4);
+
+//End