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 /1529/CH10/EX10.21/10_21.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 '1529/CH10/EX10.21/10_21.sce')
-rwxr-xr-x | 1529/CH10/EX10.21/10_21.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1529/CH10/EX10.21/10_21.sce b/1529/CH10/EX10.21/10_21.sce new file mode 100755 index 000000000..f638a941c --- /dev/null +++ b/1529/CH10/EX10.21/10_21.sce @@ -0,0 +1,9 @@ +//Chapter 10, Problem 20, figure 10.35
+clc;
+fr=400e3; //resonant frequency
+Qf=100; //Q factor
+C=400e-12; //capacitance
+L=((2*%pi*fr)^2*C)^-1; //calculating inductance
+R=2*%pi*fr*L/Qf; //calculating resistance
+printf("(a) Inductance = %f mH\n\n\n",L*1000);
+printf("(b) Resistance of inductor = %f ohm",R);
|