summaryrefslogtreecommitdiff
path: root/2459/CH9/EX9.18/Ex9_18.sce
blob: fffee6cdd2edb20bf6793bbea8d7c0f635c9a590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//chapter9
//example9.18
//page162

Vrms_A=0.5 // V
Vdc_A=10 // V
Vrms_B=1 // V
Vdc_B=25 // V

ripple_A=Vrms_A/Vdc_A
ripple_B=Vrms_B/Vdc_B

if ripple_A>ripple_B
    printf("power supply B is better \n")
elseif ripple_B>ripple_A
   printf("power supply A is better \n") 
else
    printf("both are equal \n")
end