summaryrefslogtreecommitdiff
path: root/728/CH3/EX3.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /728/CH3/EX3.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 '728/CH3/EX3.1')
-rwxr-xr-x728/CH3/EX3.1/EX3_1.sce10
-rwxr-xr-x728/CH3/EX3.1/Ex3_1.txt11
-rwxr-xr-x728/CH3/EX3.1/Ex3_1_ans.txt3
3 files changed, 24 insertions, 0 deletions
diff --git a/728/CH3/EX3.1/EX3_1.sce b/728/CH3/EX3.1/EX3_1.sce
new file mode 100755
index 000000000..362dd1ce9
--- /dev/null
+++ b/728/CH3/EX3.1/EX3_1.sce
@@ -0,0 +1,10 @@
+//Caption:Program to find value of terminating impedance of lossless transmission line.
+//Exa:3.1
+clc;
+clear;
+close;
+//Given:
+Z_ch=100;//in ohms
+S=5;//VSWR (unitless)
+Z=Z_ch*S;
+printf("\n\n\t The terminating impedence = %d ohms ",Z); \ No newline at end of file
diff --git a/728/CH3/EX3.1/Ex3_1.txt b/728/CH3/EX3.1/Ex3_1.txt
new file mode 100755
index 000000000..f2235deb1
--- /dev/null
+++ b/728/CH3/EX3.1/Ex3_1.txt
@@ -0,0 +1,11 @@
+//Caption:Program to find value of terminating impedance of lossless transmission line.
+//Exa:3.1
+clc;
+clear;
+close;
+//Given:
+Z_ch=100;//in ohms
+S=5;//VSWR (unitless)
+Z=Z_ch*S;
+printf("\n\n\t The terminating impedence = %d ohms ",Z);
+
diff --git a/728/CH3/EX3.1/Ex3_1_ans.txt b/728/CH3/EX3.1/Ex3_1_ans.txt
new file mode 100755
index 000000000..c1e309d8e
--- /dev/null
+++ b/728/CH3/EX3.1/Ex3_1_ans.txt
@@ -0,0 +1,3 @@
+
+ The terminating impedence = 500 ohms
+