summaryrefslogtreecommitdiff
path: root/3673/CH17/EX17.1/Ex17_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH17/EX17.1/Ex17_1.sce')
-rw-r--r--3673/CH17/EX17.1/Ex17_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3673/CH17/EX17.1/Ex17_1.sce b/3673/CH17/EX17.1/Ex17_1.sce
new file mode 100644
index 000000000..f36c9b1ce
--- /dev/null
+++ b/3673/CH17/EX17.1/Ex17_1.sce
@@ -0,0 +1,11 @@
+//Example 17_1 page no:823
+clc;
+//given
+k=500;//load resistance in ohm
+fc=2000;//frequency in Hz
+L=k/(%pi*fc);
+L=L*1000;//converting to milli Henry
+C=1/(%pi*fc*k);
+C=C*10^6;//converting to micro farad
+disp(L,"the inductance for low pass filter is (in mH)");
+disp(C,"the capacitance for low pass filter is (in microFarad)");