blob: 1812a3960afbf748a62b4f7e60b508ea6602a8a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example 7.17 // strain
clc;
clear;
close;
//given data :
n=4;
Rg=200; // in ohm
Rsh=100*10^3; // in ohm
Gf=2; // gauge factor
e=Rg/(n*Gf*(Rg+Rsh));
// case 1 -when the calibration switch is closed, the read out gives a reading of 140 division
D=e/140;
//case 2 - when the strain gauge is loaded, the strain
S=D*220*10^6;
disp(S,"the strain,S(microstrain) = ")
|