summaryrefslogtreecommitdiff
path: root/1109/CH12/EX12.17
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1109/CH12/EX12.17
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 '1109/CH12/EX12.17')
-rwxr-xr-x1109/CH12/EX12.17/12_17.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1109/CH12/EX12.17/12_17.sce b/1109/CH12/EX12.17/12_17.sce
new file mode 100755
index 000000000..1f5cc99d9
--- /dev/null
+++ b/1109/CH12/EX12.17/12_17.sce
@@ -0,0 +1,8 @@
+clear;
+clc;
+f=5*(10^6);C=400*(10^-12);R=10*(10^3);
+w=2*%pi*f;
+L=2/(w*w*C);
+r=1/(w*w*C*C*R);
+printf("-Effective resistance of the coil = %f ohms\n",round(r*100)/100);
+printf("-Inductance of effective resistance of the coil = %f mH",round(L*(10^3)*1000)/1000);