summaryrefslogtreecommitdiff
path: root/3526/CH16/EX16.2/EX16_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3526/CH16/EX16.2/EX16_2.sce')
-rw-r--r--3526/CH16/EX16.2/EX16_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3526/CH16/EX16.2/EX16_2.sce b/3526/CH16/EX16.2/EX16_2.sce
new file mode 100644
index 000000000..02e2cb8d3
--- /dev/null
+++ b/3526/CH16/EX16.2/EX16_2.sce
@@ -0,0 +1,16 @@
+clc;funcprot(0);//EXAMPLE 16.2
+//page 482
+// 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:")