blob: 8cd0be7efc1963819faf92209486b47932617d34 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;funcprot(0);//EXAMPLE 7.3
// 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 :")
|