diff options
Diffstat (limited to '2825/CH7/EX7.1/Ex7_1.sce')
-rwxr-xr-x | 2825/CH7/EX7.1/Ex7_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2825/CH7/EX7.1/Ex7_1.sce b/2825/CH7/EX7.1/Ex7_1.sce new file mode 100755 index 000000000..0ca0729c8 --- /dev/null +++ b/2825/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,12 @@ +//Ex7_1 Pg-369
+clc
+
+disp("Refer to the figure 7.19")
+disp("For good coupling")
+disp(" Xc <= 0.1*R")
+R=10*10^(3) //resistor R in ohm
+C=68*10^(-6) //capacitance in Farad
+f=1/(2*%pi*C*0.1*R)
+disp("Lowest frequency,f")
+printf(" = %.2f Hz",f)
+disp("or lowest frequency is approximately 3 Hz")
|