diff options
Diffstat (limited to '863/CH3/EX3.8/Ex3_8.txt')
-rw-r--r-- | 863/CH3/EX3.8/Ex3_8.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/863/CH3/EX3.8/Ex3_8.txt b/863/CH3/EX3.8/Ex3_8.txt new file mode 100644 index 000000000..7817bea26 --- /dev/null +++ b/863/CH3/EX3.8/Ex3_8.txt @@ -0,0 +1,14 @@ +//Caption:Find Capacitance and Resistance required to design the circuit
+//Ex3.8
+clc;
+clear;
+close;
+E=20//Input waveform amplitude(in volts)
+f=2//Frequency(in Khz)
+t=0.02//Tilt
+R=600//Resistance(in ohm)
+T=1/f
+pw=T*1000/2
+C=pw/R
+R=pw/(t*C)
+disp(R,C,'Capacitance(in micro farad) and Resistance(in ohm)=')
\ No newline at end of file |