From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 728/CH3/EX3.1/EX3_1.sce | 10 ++++++++++ 728/CH3/EX3.1/Ex3_1.txt | 11 +++++++++++ 728/CH3/EX3.1/Ex3_1_ans.txt | 3 +++ 3 files changed, 24 insertions(+) create mode 100755 728/CH3/EX3.1/EX3_1.sce create mode 100755 728/CH3/EX3.1/Ex3_1.txt create mode 100755 728/CH3/EX3.1/Ex3_1_ans.txt (limited to '728/CH3/EX3.1') 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 + -- cgit