blob: 6fd688e928c79e97fdc13f416348c3882f2e0431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//chapter 10
//example 10.1
//page 345
Vnl=12;
Vfl=11.6;
Ilmax=100*10^-3;
LR=Vnl-Vfl;//load regulation
disp(LR)
percentage=((Vnl-Vfl)/Vfl)*100//% LOAD REGULATION
Vout=LR;
Ro=Vout/Ilmax;//output resistance
disp(Ro)
|