blob: ca7d1ccceb6b3b41fda9176273edad440b08f4ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//calculate the emf induced in the armature
Il=200
Vl=500
Ra=0.03
Rs=0.015
R=150
BCD=2 //one volt per brush
I=Vl/R
Ia=Il+I
Eg=Vl+(Ia*Ra)+(Ia*Rs)+BCD
disp('emf induced= '+string(Eg)+' volts');
|