summaryrefslogtreecommitdiff
path: root/3020/CH1/EX1.3/ex1_3.sce
blob: eb7301e3261079a583cbf194c86c26353365745c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clc;
clear all;
F = 0.2; // Force in newtons
d = 5e-3; // Displacement in meter
l = 6e-2; // Length of solid in meter
b = 6e-2; // Breadth of solid in meter
h = 2e-2; //Height of solid in meter
A = l*b; // Area of the solid
shs = F/A; // Shear stress
theta = d/h; // Shear strain
rdm = shs/theta; // Rigidity modulus
disp('N/m^2',shs,'Shearing stress')
disp('',theta,'Shearing strain')
disp('N/m^2',rdm,'Rigidity Modulus')