summaryrefslogtreecommitdiff
path: root/2252/CH6/EX6.3/Ex6_3.sce
blob: 1dff2465ed2fbf0d0a8146c0599ddc80521d6080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

//calculating instantaneous voltage at .005 sec after the wave passes through zero in positive direction
f=50//frequency
Emax=350//max value of voltage
t=.005
e1=Emax*sin(2*%pi*f*t)
mprintf("Voltage at .005 sec after the wave passes through zero in positive direction=%d V\n",e1)
//calculating instantaneous voltage at .008 sec after the wave passes through zero in negative direction
t=.008
e2=-Emax*sin(2*%pi*f*t)
mprintf("Voltage at .008 sec after the wave passes through zero in negative direction=%f V",e2)