diff options
Diffstat (limited to '863/CH3/EX3.8')
-rw-r--r-- | 863/CH3/EX3.8/Ex3_8.sce | 14 | ||||
-rw-r--r-- | 863/CH3/EX3.8/Ex3_8.txt | 14 | ||||
-rw-r--r-- | 863/CH3/EX3.8/Result3_8.txt | 6 |
3 files changed, 34 insertions, 0 deletions
diff --git a/863/CH3/EX3.8/Ex3_8.sce b/863/CH3/EX3.8/Ex3_8.sce new file mode 100644 index 000000000..7817bea26 --- /dev/null +++ b/863/CH3/EX3.8/Ex3_8.sce @@ -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 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 diff --git a/863/CH3/EX3.8/Result3_8.txt b/863/CH3/EX3.8/Result3_8.txt new file mode 100644 index 000000000..095cb7488 --- /dev/null +++ b/863/CH3/EX3.8/Result3_8.txt @@ -0,0 +1,6 @@ +Capacitance(in micro farad) and Resistance(in ohm)=
+
+ 0.4166667
+
+ 30000.
+
\ No newline at end of file |