blob: 40ebe28118c45376e1066ca2ad1a62aeff6850c7 (
plain)
1
2
3
4
5
6
7
8
9
|
//calculating the maximum position deviation, resistance deviation
clc;
Pl=0.001;
FSD=320;
R=10000;
MDD=(Pl*FSD);
disp(MDD,'Maximum displacement deviation(degree)=');
MRD=Pl*R;
disp(MRD,'Maximum displacement deviation(ohm)=');
|