diff options
Diffstat (limited to '863/CH3/EX3.7/Ex3_7.sce')
-rw-r--r-- | 863/CH3/EX3.7/Ex3_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/863/CH3/EX3.7/Ex3_7.sce b/863/CH3/EX3.7/Ex3_7.sce new file mode 100644 index 000000000..58a0eeb60 --- /dev/null +++ b/863/CH3/EX3.7/Ex3_7.sce @@ -0,0 +1,14 @@ +//Caption:Calculate Capacitance and Resistance
+//Ex3.7
+clc;
+clear;
+close;
+E=10//Input voltage(in volts)
+f=1//Frequency(in Khz)
+Rs=500//Source resistance(in ohms)
+t=0.01//Tilt
+T=1/(f)
+pw=T*1000/2
+C=pw/Rs
+R=pw/(t*C*1000)
+disp(R,C,'Capacitance(in micro farad) and Resistance(in Kilo ohm)=')
\ No newline at end of file |