blob: 9d495b2430cc1298c2a23fff7fe5f1f55b37a9f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Calculating the maximum excitation voltage and the sensitivity
clc;
Rm=10000;
Rp=Rm/15;
R=600;
P=5;
ei= (P*R)^0.5;
disp(ei,'Maximum excitation voltage (V)=')
S=ei/360;
disp(S,'Sensitivity (V/degree)=')
|