blob: cd7247f5fe20707b42de6f4ce5ca78548f85cf13 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;funcprot(0);//EXAMPLE 7.3
//page 184
// Initialisation of Variables
F=40000;..........// Maximum Tensile load in lb
K=9000;........//Fracture toughness of Ceramic
w=3;.........// plate made of Sialon width
//CALCULATIONS
A=F*sqrt(%pi)/K;......//Area of ceramic
T=A/w;........// Thickness of Ceramic
disp(T,"THickness of ceramic :")
|