blob: 8b73b707c2a4b8087d73280d51eb7aa2d2511167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Example 13.7//
//For 1Kg =of final product
a=0.33;//wt % //glass fiber
b=1;//kg //kilogram
p=a*b
mprintf("p = %f kg glass",p)
p1=b-a
mprintf("\n p1 = %f kg nylon 66",p1)
//The total volume of the product
mn=0.67;//kg //given
mg=0.33;//kg//given
pn=1.14;//Mg/m^3 //density of nylon 66
pg=2.54;//Mg/m^3 //density of reinforcing glass
c=1;//Mg //Milligram
d=1000;//kg //given
Vp=((mn/pn)+(mg/pg))*(c/d)
mprintf("\nVp = %e m^3",Vp)
//The over all density of the final product is then
p=(c/Vp)*(c/d)
mprintf("\np = %f Mg/m^3",p)
|