summaryrefslogtreecommitdiff
path: root/83/CH2/EX2.6
diff options
context:
space:
mode:
Diffstat (limited to '83/CH2/EX2.6')
-rwxr-xr-x83/CH2/EX2.6/example_2_6.sce13
-rwxr-xr-x83/CH2/EX2.6/result_example_2_6.txt8
2 files changed, 21 insertions, 0 deletions
diff --git a/83/CH2/EX2.6/example_2_6.sce b/83/CH2/EX2.6/example_2_6.sce
new file mode 100755
index 000000000..8ec5b5006
--- /dev/null
+++ b/83/CH2/EX2.6/example_2_6.sce
@@ -0,0 +1,13 @@
+//Chapter 2
+//Example 2.6
+//page 65
+//To find mutual inductance between power line and telephone line and voltage induced in telephone line
+
+clear;clc;
+D1=sqrt(1.1*1.1+2*2); //from figure 2.14
+D2=sqrt(1.9*1.9+2*2); //from figure 2.14
+Mpt=0.921*log10(D2/D1); //mutual inductance
+Vt=abs(%i*2*%pi*50*Mpt*10^(-3)*100);//when 100A is flowing in the power lines
+
+printf("\n\nMutual inductance between power line and telephone line = %f mH/km\n\n",Mpt);
+printf("\n\nVoltage induced in the telephone circuit = %.3f V/km\n\n",Vt); \ No newline at end of file
diff --git a/83/CH2/EX2.6/result_example_2_6.txt b/83/CH2/EX2.6/result_example_2_6.txt
new file mode 100755
index 000000000..cfce102d1
--- /dev/null
+++ b/83/CH2/EX2.6/result_example_2_6.txt
@@ -0,0 +1,8 @@
+
+
+
+Mutual inductance between power line and telephone line = 0.075774 mH/km
+
+
+
+Voltage induced in the telephone circuit = 2.381 V/km