summaryrefslogtreecommitdiff
path: root/72/CH11/EX11.3.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.3.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.3.1')
-rwxr-xr-x72/CH11/EX11.3.1/11_3_1.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/72/CH11/EX11.3.1/11_3_1.sce b/72/CH11/EX11.3.1/11_3_1.sce
new file mode 100755
index 000000000..953214fed
--- /dev/null
+++ b/72/CH11/EX11.3.1/11_3_1.sce
@@ -0,0 +1,20 @@
+//CAPTION:Characteristic_Impedance_of_a_Coplanar_Stripline
+//chapter_no.-11, page_no.-507
+//Example_no.11-3-1
+
+clc;
+
+Pavg=250*(10^-3);//average_power_flowing_in_the_positive_z_direction
+Io=100*(10^-3);//total_peak_current
+Z0=(2*Pavg)/(Io^2);
+disp(Z0,'the_characteristic_impedance_of_the_coplanar_strip_line(in ohms)is =');
+
+
+
+
+
+
+
+
+
+