summaryrefslogtreecommitdiff
path: root/1898/CH2/EX2.2/Ex2_2.sce
blob: 8f000c9f133d9aad90df15c40df4255adc697fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
clear all; clc;

disp("Scilab Code Ex 2.2 : ")

//Given:
theta = 0.002; //radians
bc=1; //m
ba = 0.5;//m

//Calculations:

bb_dash = theta*ba;
avg_normal_strain = bb_dash/bc;//m/m

//Display:


printf("\n\nThe average normal strain =%10.3f m/m",avg_normal_strain);

//---------------------------------------END---------------------------------------------------------------------------------------------