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/CH14/EX14.8/EXP14_8.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/CH14/EX14.8/EXP14_8.sce')
-rw-r--r-- | 1586/CH14/EX14.8/EXP14_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1586/CH14/EX14.8/EXP14_8.sce b/1586/CH14/EX14.8/EXP14_8.sce new file mode 100644 index 000000000..ea2e2420d --- /dev/null +++ b/1586/CH14/EX14.8/EXP14_8.sce @@ -0,0 +1,10 @@ +clc;funcprot(0);//EXAMPLE 14.8
+// Initialisation of Variables
+Ktc=60;.........//The plane-strain Fracture toughness in MPa-m^-1/2
+Ktc2=80;......//The fracture toughness of L sample in MPa-m^-1/2
+f=1.12;........//A geometry factor for the specimen and flaw
+sigma=200;......//A titanium-alloy 6246 plate is exposed to a tensile stress
+a=((Ktc/(f*sigma))^2)/%pi;......//The critical flaw length of Crank in cm
+a2=((Ktc2/(f*sigma))^2)/%pi;......//The critical flaw length of Crank of L sample in cm
+disp(a*10^2," The critical flaw length of Crank in cm: ")
+disp(a2*10^2,"The critical flaw length of Crank of L sample in cm:")
|