diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1586/CH16/EX16.7/EXP16_7.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1586/CH16/EX16.7/EXP16_7.sce')
-rw-r--r-- | 1586/CH16/EX16.7/EXP16_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1586/CH16/EX16.7/EXP16_7.sce b/1586/CH16/EX16.7/EXP16_7.sce new file mode 100644 index 000000000..8e8f90c94 --- /dev/null +++ b/1586/CH16/EX16.7/EXP16_7.sce @@ -0,0 +1,13 @@ +clc;funcprot(0);//EXAMPLE 16.7
+// Initialisation of Variables
+M=56;.........//Molecular Weight of Polyethylene
+P=0.88;........//Measured density of PolyethyleneInitial
+P1=0.915;........//Measured density of Polyethylene Final
+Pa=0.87;........//Density of Amorphous Polyethylene
+//Caluculations
+Pc=M/(7.42*4.95*(2.55*10^-24)*6.02*10^23);...........//Density of complete Crystalline polymer
+Cp1= ((Pc/P)*((P-Pa)/(Pc-Pa)))*100;..................//Crystallinity of Polyethylene initial
+Cp2= ((Pc/P1)*((P1-Pa)/(Pc-Pa)))*100;................//Crystallinity of Polyethylene final
+disp(Pc,"Density of Crystalline polymer:")
+disp(Cp1,"Crystall. of Polyethylene initial:")
+disp(Cp2,"Crystall. of Polyethylene final:")
|