blob: 96c28ba5181b0eb60c6a24dc9ebe0d9e7e87d37a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Exa 7.16
clc;
clear;
// Given
// An LVDT
vo = 5; // secondary voltage(volts) of LVDT
d = 12.5; // displacement in mm
d0 = 8; // displacement from central position in mm
// Solution
printf(' The sensitivity s = RMS value of output voltage/Displacement \n');
S = vo/d; // sensitivity
printf(' Therefore, s = %.1f V/mm \n',S);
printf(' Output voltage for a displacement of 8mm from its central position = %.1f V \n',S*d0);
|