summaryrefslogtreecommitdiff
path: root/752/CH1/EX1.5.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /752/CH1/EX1.5.1
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 '752/CH1/EX1.5.1')
-rwxr-xr-x752/CH1/EX1.5.1/1_5_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/752/CH1/EX1.5.1/1_5_1.sce b/752/CH1/EX1.5.1/1_5_1.sce
new file mode 100755
index 000000000..ea644d99b
--- /dev/null
+++ b/752/CH1/EX1.5.1/1_5_1.sce
@@ -0,0 +1,18 @@
+clc;
+// page no 21
+// prob no 1_5_1
+//Series tuned resonant ckt is given which is tuned at 25 MHz with
+//series resistance 5 ohm self capacitance 7 pF and inductance 1 uH
+C=7*10^-12;R=5;L=10^-6;f=25*10^6;
+//Determination of self resonant freq of coil denoted as Fsr
+Fsr=1/(2*3.14*(L*C)^0.5);
+disp('MHz',Fsr/(10^6),+'The value of self resonant freq is');
+//Determination of Q-factor of coil,excluding self-capacitive effects
+Q=(2*3.14*f*L)/R;
+disp(Q,'The value of Q-factor is');
+//Determination of effective inductance
+Leff=L/(1-(f/Fsr)^2);
+disp('uH',Leff*(10^6),+'The value of effective inductance is');
+//Determination of effective Q-factor
+Qeff=Q*(1-(f/Fsr)^2);
+disp(Qeff,'The value of effective Q-factor is'); \ No newline at end of file