summaryrefslogtreecommitdiff
path: root/884/CH1/EX1.6/Example1_6.sce
blob: 4b11269bb24c9999f130b46b0b8aaa0a98effe05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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