summaryrefslogtreecommitdiff
path: root/3281/CH10/EX10.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3281/CH10/EX10.4
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 '3281/CH10/EX10.4')
-rwxr-xr-x3281/CH10/EX10.4/ex10_4.jpgbin0 -> 6438 bytes
-rwxr-xr-x3281/CH10/EX10.4/ex10_4.sce21
2 files changed, 21 insertions, 0 deletions
diff --git a/3281/CH10/EX10.4/ex10_4.jpg b/3281/CH10/EX10.4/ex10_4.jpg
new file mode 100755
index 000000000..3b0a06e69
--- /dev/null
+++ b/3281/CH10/EX10.4/ex10_4.jpg
Binary files differ
diff --git a/3281/CH10/EX10.4/ex10_4.sce b/3281/CH10/EX10.4/ex10_4.sce
new file mode 100755
index 000000000..ae8a5ecd3
--- /dev/null
+++ b/3281/CH10/EX10.4/ex10_4.sce
@@ -0,0 +1,21 @@
+//Page Number: 556
+//Example 10.4
+clc;
+//Given,
+
+q=2.5;
+dh=1.58;
+er=9;
+f=10;
+c=3D+8;
+
+erff=((er+1)/2)+(((er-1)/2)*((1+(12/q))^(-1/2)));
+vp=(c/sqrt(erff))*erff;
+fe1=c/(sqrt(vp)*2*dh*q);
+if f<fe1 then
+ disp('Strip supports TEM mode only');
+else
+ disp('Strip does not support TEM mode only');
+end
+
+