summaryrefslogtreecommitdiff
path: root/2267/CH10/EX2.7/Ex10_7.sce
blob: 359fc645591970d075c35f9ed87c0970fded8678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Part B Chapter 2 Example 7
clc;
clear;
close;
format('v',6);
sigma1=600;//N/m^2(major)
sigma_x=450;//N/m^2
sigma_y=0;//N/m^2
tau=sqrt((sigma1-(sigma_x+sigma_y)/2)^2-(sigma_x-sigma_y)^2/4);//N/mm^2
disp(tau,"Maximum value of tau in N/mm^2 : ");
sigma2=(sigma_x+sigma_y)/2-sqrt((sigma_x-sigma_y)^2/4+tau^2);//N/mm^2
disp(sigma2,"Minimum principle stress(compressive) in N/mm^2 : ");