diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1382/CH5/EX5.24/EX_5_24.SCE | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1382/CH5/EX5.24/EX_5_24.SCE')
-rwxr-xr-x | 1382/CH5/EX5.24/EX_5_24.SCE | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1382/CH5/EX5.24/EX_5_24.SCE b/1382/CH5/EX5.24/EX_5_24.SCE new file mode 100755 index 000000000..17dce1596 --- /dev/null +++ b/1382/CH5/EX5.24/EX_5_24.SCE @@ -0,0 +1,15 @@ +// Example 5.23:corner frequency and bandwidth
+clc;
+clear;
+close;
+tr=16;//rise time in micro second
+V=100;//voltage in milli volts
+Vd=90;//voltage in milli volts
+f=5;//frequecny in killo hertz
+fh= (0.35/(tr*10^-6))*10^-3;//upper cut off frequency in killo hertz
+P= ((V-Vd)/V)*100;//
+fl=(P*10^3*f)/(100*%pi);//lower cut off frequency in hertz
+BW=(fh*10^3-fl)*10^-3;//bandwith in killo hertz
+disp(fh,"upper cut off frequency in killo hertz")
+disp(fl,"lower cut off frequency in hertz")
+disp(BW,"bandwith in killo hertz")
|