blob: 5c065b80160223e54c0e1be2544d2972ce65846c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Exa 7.14
clc;
clear;
// Given
// An LVDT
vo = 2.6; // Output voltage(volts) of LVDT
d = 0.4; // displacement 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);
|