diff options
Diffstat (limited to '1367/CH17/EX17.2/17_2.sce')
-rwxr-xr-x | 1367/CH17/EX17.2/17_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1367/CH17/EX17.2/17_2.sce b/1367/CH17/EX17.2/17_2.sce new file mode 100755 index 000000000..562e7394a --- /dev/null +++ b/1367/CH17/EX17.2/17_2.sce @@ -0,0 +1,16 @@ +//Determine molecular weight of teflon
+//Ex:17.2
+clc;
+clear;
+close;
+DOP=10000;
+mc=12;//mol wt of carbon
+mf=19;;//mol wt of fluorine
+m=(2*mc)+(4*mf);//mol wt of teflon monomer
+mp=DOP*m;
+disp(mp,"Molecualr weight of Teflon polymer = ");
+mh=1;;//mol wt of hydrogen
+m1=(2*mc)+(4*mh);//mol wt of polyethylene
+//for same DOP
+x=m/m1;//ratio of molecular weights
+disp(x,"Ratio of molecualr weights of Teflon and Polyethylene = ");
\ No newline at end of file |