diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH5/EX1.5.2 | |
download | Scilab-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.2')
-rw-r--r-- | 3428/CH5/EX1.5.2/Ex1_5_2.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3428/CH5/EX1.5.2/Ex1_5_2.sce b/3428/CH5/EX1.5.2/Ex1_5_2.sce new file mode 100644 index 000000000..460fbe1bd --- /dev/null +++ b/3428/CH5/EX1.5.2/Ex1_5_2.sce @@ -0,0 +1,36 @@ +//Section-1,Example-2,Page no.-AC.437
+clc;
+E_m=3.4
+V_m=0.7
+E_f=69
+V_f=0.3
+A_c=250*10^-6
+E_c=((E_m*V_m)+(E_f*V_f))
+disp (E_c,'longitudinal modulus of elasticity(GPa)')
+Q_c=60*10^6
+A_c=250*10^-6
+P_c=Q_c*A_c //P_c=P_f+P_m
+disp(P_c,'Load carried by composite phases(P_c)')
+P=((E_f*V_f)/(E_m*V_m))
+//disp P,where P=P_f/P_m
+P_m=15000/9.7
+disp(P_m,'Load carried by matrix phases(P_m)')
+P_f=8.7*(P_m)
+disp (P_f,'Load carried by fibres phases(P_f)')
+//V_m=A_m/A_c
+A_m=V_m*A_c
+A_f=V_f*A_c
+Q_m=(P_m/A_m)*10^-6
+Q_f=(P_f/A_f)*10^-6
+e_m=(Q_m/(E_m*10^3))
+disp(e_m,'The strain sustained by phase when the stress of 60 MPa is applied')
+e_f=(Q_f/(E_f*10^3))
+disp(e_f,'The strain sustained by phase when the stress of 60 MPa is applied')
+
+
+
+
+
+
+
+
|