summaryrefslogtreecommitdiff
path: root/72/CH11/EX11.1.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /72/CH11/EX11.1.1
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 '72/CH11/EX11.1.1')
-rwxr-xr-x72/CH11/EX11.1.1/11_1_1.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/72/CH11/EX11.1.1/11_1_1.sce b/72/CH11/EX11.1.1/11_1_1.sce
new file mode 100755
index 000000000..51e262a2d
--- /dev/null
+++ b/72/CH11/EX11.1.1/11_1_1.sce
@@ -0,0 +1,23 @@
+//CAPTION: Characteristic_Impedance_of_Microstrip_line
+//chapter_no.-11, page_no.-495
+//Example_no.11-1-1
+
+clc;
+
+
+er=5.23;//relative_dielectric_constant
+h=7;//height_from_microstrip_line_to_the_ground
+t=2.8;//thickness_of_the_microstrip_line
+w=10;//width_of_the_microstrip_line
+Z0=(87*(log((5.98*h)/(t+(.8*w)))))/sqrt(er+1.41);
+disp(Z0,'the_characteristic_impedance_of_the_line(in ohms)is =');
+
+
+
+
+
+
+
+
+
+