blob: cc8ccd65d9f4d0ae2f6aabd8de781cfd7f14013b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 7.15
clc;
clear;
// Given
// An LVDT
Vo = 1.25; // Output voltage
Dmax = 0.0025;// max. deviation of linearity
L = 0.75; // weight of load in kgf
// Solution
Linearity = (Dmax/Vo)*100;
printf(' The linearity at a given load 0.65/kgf = %.1f percent \n',Linearity);
|