From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3428/CH5/EX1.5.1/Ex1_5_1.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3428/CH5/EX1.5.1/Ex1_5_1.sce (limited to '3428/CH5/EX1.5.1') 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') -- cgit