summaryrefslogtreecommitdiff
path: root/3507/CH21/EX21.6/Ex21_6.sce
blob: a3200f5441b61c194e6c8a3ed6a579c6cd9fb284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//chapter21
//example21.6
//page472

Rl=4 // kilo ohm
R=1 // kilo ohm
Vin_peak=10 // V

Vout_peak=Vin_peak*Rl/(Rl+R)
Vout_min=0 // because of diode
printf("peak output voltage = %.3f V \n",Vout_peak)

// plotting input and output waveforms in same graph using following code instead of using xcos
clf()
t=linspace(0,2*%pi,100)
Vin=Vin_peak*sin(t)
Vout=Vout_peak*sin(t)+Vout_min
plot2d(t,Vin,style=2,rect=[0,0,10,20])
xtitle("input - blue     output - green","t","volts")
plot2d(t,Vout,style=3,rect=[0,0,10,20])