diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1586/CH6/EX6.6/EXP6_6.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1586/CH6/EX6.6/EXP6_6.sce')
-rw-r--r-- | 1586/CH6/EX6.6/EXP6_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1586/CH6/EX6.6/EXP6_6.sce b/1586/CH6/EX6.6/EXP6_6.sce new file mode 100644 index 000000000..1ba52c4e8 --- /dev/null +++ b/1586/CH6/EX6.6/EXP6_6.sce @@ -0,0 +1,12 @@ +clc;funcprot(0);//EXAMPLE 6.6
+// Initialisation of Variables
+Fs=45000;.......//The flexural strength of a composite material in psi
+Fm=18*10^6;........//The flexural modulus of composite material in psi
+w=0.5;.......//wide of sample in in
+h=0.375;......//Height of sample in in
+l=5;..........//Length of sample in in
+//CALCULATIONS
+F=Fs*2*w*h^2/(3*l);......//The force required to fracture the material in lb
+delta=(l^3)*F/(Fm*4*w*h^3);.......//The deflection of the sample at fracture
+disp(F,"The force required to fracture the material in lb:")
+disp(delta,"The deflection of the sample at fracture in in")
|