summaryrefslogtreecommitdiff
path: root/3392/CH3/EX3.1/Ex3_1.sce
blob: 17d2e6ffcc0b826bba2899a5e53686a5cd2d4854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc
// initialization of variables
clear
// part (a)
E=72 // G Pa
v=0.33 // Poisoon's ratio
h=2 // mm
R=600 // mm
//calculations
sig_cir=E*h/(2*(1-v^2)*R)
// results
printf('\n part (a) \n')
printf(' The maximum circumferential stress is %.d M Pa',sig_cir*10^3)