summaryrefslogtreecommitdiff
path: root/1586/CH16/EX16.2/EXP16_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1586/CH16/EX16.2/EXP16_2.sce')
-rw-r--r--1586/CH16/EX16.2/EXP16_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1586/CH16/EX16.2/EXP16_2.sce b/1586/CH16/EX16.2/EXP16_2.sce
new file mode 100644
index 000000000..b7dfbdb04
--- /dev/null
+++ b/1586/CH16/EX16.2/EXP16_2.sce
@@ -0,0 +1,15 @@
+clc;funcprot(0);//EXAMPLE 16.2
+// Initialisation of Variables
+W=28;...............//Molecular weight of Ethylene in g/mol
+W1=200000;............//Molecular weight of Benzoyl Peroxide in g/mol
+W2=1000;............//Weight of Polyethylene in gm
+W3=242;.............//Molecular Weight of Benzoyl Peroxide in g/mol
+//Calculations
+DP=W1/W;..............// Degree of Polymerization
+n=(W2*6.02*10^23)/W;..............//No. of Monomers present
+M=n/DP;......................//NO. of Benzoyl Peroxide Molecules to be present
+Ai=(M*W3)/6.02*10^23;............//Amount of Initiator needed in gm
+disp(DP,"Degree of Polymerization :")
+disp(n,"No. of Monomers present :")
+disp(M,"NO. of Benzoyl Peroxide Molecules to be present:")
+disp(Ai,"Amount of Initiator needed in gm:")