summaryrefslogtreecommitdiff
path: root/1085/CH18
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1085/CH18
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 '1085/CH18')
-rwxr-xr-x1085/CH18/EX18.1/ex18_1.sce10
-rwxr-xr-x1085/CH18/EX18.2/ex18_2.sce10
2 files changed, 20 insertions, 0 deletions
diff --git a/1085/CH18/EX18.1/ex18_1.sce b/1085/CH18/EX18.1/ex18_1.sce
new file mode 100755
index 000000000..cfdd1065e
--- /dev/null
+++ b/1085/CH18/EX18.1/ex18_1.sce
@@ -0,0 +1,10 @@
+//Exam:18.1
+clc;
+clear;
+close;
+E_f=69;//modulus of elasticity in GPa
+V_f=40/100;//Volume of glass fibres %
+E_m=3.4;//modulus (in GPa)
+V_m=60/100;//Volume of polyester resin %
+E_cl=E_m*V_m+E_f*V_f;//modulus of elasticity (in Gpa)
+disp(ceil(E_cl),'modulus of elasticity(in Gpa)='); \ No newline at end of file
diff --git a/1085/CH18/EX18.2/ex18_2.sce b/1085/CH18/EX18.2/ex18_2.sce
new file mode 100755
index 000000000..c7a4a950f
--- /dev/null
+++ b/1085/CH18/EX18.2/ex18_2.sce
@@ -0,0 +1,10 @@
+//Exam:18.2
+clc;
+clear;
+close;
+E_f=69;//modulus of elasticity in GPa
+V_f=40/100;//Volume of glass fibres %
+E_m=3.4;//modulus (in GPa)
+V_m=60/100;//Volume of polyester resin %
+E_cl=E_m*E_f/(E_m*V_f+E_f*V_m);//modulus of elasticity when the stress is applied perpendicular to the direction of the fibre alignment(in Gpa)
+disp(E_cl,'modulus of elasticity when the stress is applied perpendicular to the direction of the fibre alignment(in Gpa)='); \ No newline at end of file