From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 49/CH4/EX4.3/ex3.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 49/CH4/EX4.3/ex3.sce (limited to '49/CH4/EX4.3/ex3.sce') diff --git a/49/CH4/EX4.3/ex3.sce b/49/CH4/EX4.3/ex3.sce new file mode 100755 index 000000000..1bcb6dabe --- /dev/null +++ b/49/CH4/EX4.3/ex3.sce @@ -0,0 +1,23 @@ +//CHAPTER 4_ Motion and Dimensional Measurement +//Caption : Strain gage +// Example 3// Page 176 +disp("Rg=120") +disp("Sg=2;") +disp("Rs=120000") +Rg=120; // given +Sg=2; // gage factor +Rs=120000 //('enter the value of shunt resistor=:') +disp("The input bridge excitation is represented by Eex") +A=10 //('enter the amplifier gain=:') +// The shunt resistance has to be very large since we intend to measure only very small change in resistanc +eo=30*10^-3 //('enter the unbalanced bridge voltage=:') +dR=Rg/(Rg+Rs); +r=1;//ratio of resistances of adjacent arms +Eex=eo*(1+r)^2/(r*dR*A); +printf('The input excitation voltage is %fd V\n',Eex) +p1=2 *(1+v) // bridge factor +Eo=.5 //('enter the voltmeter reading when shunt is removed=:') +E_axial=Eo*(1+r)^2/(r*Sg*p1*Eex*A); +printf(' Axial strain is %fd\n ',E_axial) +E_trans=E_axial*v; +printf('The transverse strain is -%fd',E_trans) -- cgit