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 /1184/CH2/EX2.22 | |
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 '1184/CH2/EX2.22')
-rwxr-xr-x | 1184/CH2/EX2.22/Ex2_22.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1184/CH2/EX2.22/Ex2_22.sce b/1184/CH2/EX2.22/Ex2_22.sce new file mode 100755 index 000000000..e2beea23f --- /dev/null +++ b/1184/CH2/EX2.22/Ex2_22.sce @@ -0,0 +1,19 @@ +//Example 2-22, page no - 55
+
+clear
+clc
+
+bw = 1*10^6
+XL = 300
+Rw = 10
+fr =10*10^6
+
+Q1 = XL/Rw
+Rp = Rw*(Q1^2+1)
+
+Q2 = fr/bw
+Rpnew = Q2*XL
+
+Rext = (Rpnew*Rp)/(Rp-Rpnew)
+
+printf('The value of resistor needed to set the bandwidth of \nthe parellel tuned circuit to 1 Mhz is %.1f ohm',Rext)
|