summaryrefslogtreecommitdiff
path: root/569/CH2/EX2.26/2_26.sci
blob: 3c98e9151a0db1256d2a2db2861f383e0e58c4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
//calculating the loading error
clc;
Zl=1000;
Zo=200*200/400;
Eo=100*200/400;
El=Eo/(1+Zo/Zl);
disp(El,'Reading of the multimeter (V)=')
PE=((El-Eo)/Eo)*100;
disp(PE,'Percentage loading error=')
Ac=100+PE;
disp(Ac,'Accuracy=')