summaryrefslogtreecommitdiff
path: root/3281/CH10/EX10.11
diff options
context:
space:
mode:
Diffstat (limited to '3281/CH10/EX10.11')
-rwxr-xr-x3281/CH10/EX10.11/ex10_11.jpgbin0 -> 18642 bytes
-rwxr-xr-x3281/CH10/EX10.11/ex10_11.sce26
2 files changed, 26 insertions, 0 deletions
diff --git a/3281/CH10/EX10.11/ex10_11.jpg b/3281/CH10/EX10.11/ex10_11.jpg
new file mode 100755
index 000000000..467d65288
--- /dev/null
+++ b/3281/CH10/EX10.11/ex10_11.jpg
Binary files differ
diff --git a/3281/CH10/EX10.11/ex10_11.sce b/3281/CH10/EX10.11/ex10_11.sce
new file mode 100755
index 000000000..2935b2ab5
--- /dev/null
+++ b/3281/CH10/EX10.11/ex10_11.sce
@@ -0,0 +1,26 @@
+//Page Number: 562
+//Example 10.11
+clc;
+//Given
+Er=6;
+d=3D-3; //m
+Z0=50; //ohm
+E0=8.854D-12; //F/m
+Mu0=4*%pi*10D-7; //H/m
+
+//(i) W
+W=(377*d)/(sqrt(Er)*Z0);
+disp('mm',W*1000,'Required Width:');
+
+//(ii)Stripline capacitance
+C=(E0*Er*W)/d;
+disp('pF/m',C*10^12,'Stripline capacitance:');
+
+//(iii)Stripline inductance
+L=(Mu0*d)/W;
+disp('muH/m',L*10^6,'Stripline inductance:');
+
+//(iv)Phase velocity
+c=3D+8;
+vp=c/sqrt(Er);
+disp('m/s',vp,'Phase velocity');