summaryrefslogtreecommitdiff
path: root/1109/CH15/EX15.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1109/CH15/EX15.6
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/CH15/EX15.6')
-rwxr-xr-x1109/CH15/EX15.6/15_6.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1109/CH15/EX15.6/15_6.sce b/1109/CH15/EX15.6/15_6.sce
new file mode 100755
index 000000000..9aeb5cb78
--- /dev/null
+++ b/1109/CH15/EX15.6/15_6.sce
@@ -0,0 +1,7 @@
+clear;
+clc;
+R1=1000;C1=0.0212*(10^-6);R2=250;
+R0=sqrt(R1*R2);
+printf("Characteristic impedance of line = %f ohms\n",R0);
+L2=C1*R0*R0;
+printf("Components of the shunt arm are inductance of %f mH in parallel with a given resistance of %f ohms.",L2*(10^3),R0);