summaryrefslogtreecommitdiff
path: root/1583/CH4/EX4.6/FSNT_Ex_4_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1583/CH4/EX4.6/FSNT_Ex_4_6.sce
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 '1583/CH4/EX4.6/FSNT_Ex_4_6.sce')
-rwxr-xr-x1583/CH4/EX4.6/FSNT_Ex_4_6.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1583/CH4/EX4.6/FSNT_Ex_4_6.sce b/1583/CH4/EX4.6/FSNT_Ex_4_6.sce
new file mode 100755
index 000000000..5784c48a6
--- /dev/null
+++ b/1583/CH4/EX4.6/FSNT_Ex_4_6.sce
@@ -0,0 +1,14 @@
+clc
+//Chapter 4:Frequency selective networks and transformers
+//example 4.6 paga no 130
+//given
+Rs=10//source resistance
+L=0.2*10^-6//inductor
+f=20*10^6//given frequency
+XL=(2*%pi*f*L)//inductive reactance
+Rp=50//input impedance
+Xs=sqrt(Rp*Rs-Rs^2)//series reactance
+Xcs=5.1//series capacitive reactance
+CS=(2*%pi*f*Xcs)^-1//series capacitance
+Xp=(Rs^2+Xs^2)/Xs//equivalent parallel reactance
+mprintf('the value of series reactance is j%f ohm \n the value equivalent parallel reactance is j%f ohm ',Xs,Xp)