summaryrefslogtreecommitdiff
path: root/2414/CH14/EX14.6.1/Ex14_6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2414/CH14/EX14.6.1/Ex14_6_1.sce')
-rwxr-xr-x2414/CH14/EX14.6.1/Ex14_6_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2414/CH14/EX14.6.1/Ex14_6_1.sce b/2414/CH14/EX14.6.1/Ex14_6_1.sce
new file mode 100755
index 000000000..714fd2fd0
--- /dev/null
+++ b/2414/CH14/EX14.6.1/Ex14_6_1.sce
@@ -0,0 +1,18 @@
+clc;
+close();
+clear();
+//page no 479
+//prob no. 14.6; //misprinted example no
+d=.3; //cm
+D=1.02; //cm
+Er=2.25;
+x=log(D/d); //variable
+L=2*10^-7*x;
+mprintf('(a)The inductance per unit length is, L = %.1f nH/m \n',L*10^9);
+C=55.56*10^-12*Er/x;
+mprintf(' (b)The capacitance per unit length is, C = %.2f nH/m \n',C*10^12);
+R0=60/sqrt(Er)*x;
+mprintf(' (c)The characteristic impedance is, R0 = %.3f ohm \n',R0);
+c=3*10^8;
+v=c/sqrt(Er);
+mprintf(' (d)The velocity of propagation is, v = %i*10^8 m/s \n',v*10^-8);