summaryrefslogtreecommitdiff
path: root/3428/CH5/EX1.5.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH5/EX1.5.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3428/CH5/EX1.5.1')
-rw-r--r--3428/CH5/EX1.5.1/Ex1_5_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3428/CH5/EX1.5.1/Ex1_5_1.sce b/3428/CH5/EX1.5.1/Ex1_5_1.sce
new file mode 100644
index 000000000..cf8548058
--- /dev/null
+++ b/3428/CH5/EX1.5.1/Ex1_5_1.sce
@@ -0,0 +1,16 @@
+//Section-1,Example-1,Page no.-AC.437
+//To calculate the fraction of load carried by the fibres in two composites of glass fibres and epoxy matrix
+clc;
+E_f=72
+E_m=3.6
+Vm_20=1-0.2
+Vf_20=0.2
+Vm_60=1-0.6
+Vf_60=0.6
+E=E_f/E_m
+V_20=Vm_20/Vf_20
+P_20=(E/(E+V_20))//P_20=(P_f/P_c)=((E_f/E_m)/((E_f/E_m)+(V_m/V_f)))
+disp (P_20,'Fraction of load for 20% fibres by volume')
+V_60=Vm_60/Vf_60
+P_60=(E/(E+V_60))//P_20=(P_f/P_c)=((E_f/E_m)/((E_f/E_m)+(V_m/V_f)))
+disp (P_60,'Fraction of load for 60% fibres by volume')