summaryrefslogtreecommitdiff
path: root/1109/CH12/EX12.17/12_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1109/CH12/EX12.17/12_17.sce')
-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);