diff options
Diffstat (limited to '608/CH42/EX42.14/42_14.sce')
-rwxr-xr-x | 608/CH42/EX42.14/42_14.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/608/CH42/EX42.14/42_14.sce b/608/CH42/EX42.14/42_14.sce new file mode 100755 index 000000000..adeaaca84 --- /dev/null +++ b/608/CH42/EX42.14/42_14.sce @@ -0,0 +1,19 @@ +//Problem 42.14: A filter network consists of 8 sections in cascade having a nominal impedance of 1 kohm. If the total delay time is 4 μs, determine the component values for each section if the filter is (a) a low-pass T network, and (b) a high-pass pi network.
+
+//initializing the variables:
+n = 8; // sections in cascade
+R0 = 1000; // in ohm
+t1 = 4E-6; // in secs
+
+
+//calculation:
+//time delay
+t2 = t1/n
+//capacitance
+C = t2/R0
+//inductance
+L = t2*R0
+
+printf("\n\n Result \n\n")
+printf("\n for low-pass T section inductance is %.2E H and capacitance is %.2E F",L/2,C)
+printf("\n for high-pass pi section inductance is %.2E H and capacitance is %.2E F",2*L,C)
\ No newline at end of file |