diff options
Diffstat (limited to '3504/CH2/EX2.13')
-rw-r--r-- | 3504/CH2/EX2.13/Ex2_13.sce | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/3504/CH2/EX2.13/Ex2_13.sce b/3504/CH2/EX2.13/Ex2_13.sce new file mode 100644 index 000000000..badf1bf8d --- /dev/null +++ b/3504/CH2/EX2.13/Ex2_13.sce @@ -0,0 +1,6 @@ +//To determine the value of the ganged condenser C and resistor R so that the current through Z_l is zero. +clc; +w=100 //(rad/sec) +//Equating real and imaginary parts for [-w^2C^2 + 1/R(2*j*w*C + 1 - (j*10^3)/w)]=0 +C=10^3/(2*w^2) //Capacitance(Farad) +R=1/(w^2*C^2) //Resistance(ohm) |