blob: 5a0d89d3a1f22d7661d0e2fda8b8053b4ea83791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Internal Voltage drop in an alternator
clc;
clear;
If=10;
Voc=900; // Open Circuit Voltage
Isc=150; // Short Circuit Current
Zs=Voc/Isc;
I=60; // Load current
Vd=I*Zs; // Internal Voltage Drop
printf('The internal voltage drop with a load current of 60 A = %g V \n',Vd)
|