summaryrefslogtreecommitdiff
path: root/3557/CH13/EX13.7
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3557/CH13/EX13.7
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3557/CH13/EX13.7')
-rw-r--r--3557/CH13/EX13.7/Ex13_7.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3557/CH13/EX13.7/Ex13_7.sce b/3557/CH13/EX13.7/Ex13_7.sce
new file mode 100644
index 000000000..8b73b707c
--- /dev/null
+++ b/3557/CH13/EX13.7/Ex13_7.sce
@@ -0,0 +1,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)
+
+