summaryrefslogtreecommitdiff
path: root/608/CH42/EX42.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH42/EX42.12
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '608/CH42/EX42.12')
-rwxr-xr-x608/CH42/EX42.12/42_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/608/CH42/EX42.12/42_12.sce b/608/CH42/EX42.12/42_12.sce
new file mode 100755
index 000000000..e56e00b86
--- /dev/null
+++ b/608/CH42/EX42.12/42_12.sce
@@ -0,0 +1,15 @@
+//Problem 42.12: Determine for the filter section shown in Figure 42.40, (a) the time delay for the signal to pass through the filter, assuming the phase shift is small, and (b) the time delay for a signal to pass through the section at the cut-off frequency.
+
+//initializing the variables:
+L = 2*0.5; // in Henry
+C = 2E-9; // in Farad
+
+//calculation:
+//time delay
+t = (L*C)^0.5
+//time delay at the cut-off frequency
+tfc = t*%pi/2
+
+printf("\n\n Result \n\n")
+printf("\n time delay is %.2E sec ",t)
+printf("\ntime delay at the cut-off frequency is %.2E sec",tfc) \ No newline at end of file