blob: 71f5ff4229aa6002a4062c0a812fe4cb3a0e0b03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
clear
//Given
R=200 //ohm
C=15*10**-6 //F
Ev=220 //V
f=50 //Hz
//Calculation
//
Xc=1/(2*%pi*f*C)
Z=sqrt(R**2+Xc**2)
Iv=Ev/Z
Vr=Iv*R
Vc=Iv*Xc
V=Vr+Vc
Vrc=sqrt(Vr**2+Vc**2)
//Result
printf("\n (a) The current in the circuit is %0.3f A",Iv)
printf("\n (b) Voltage across the resistor and capacitor is %0.3f V",Vrc)
|