diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /728/CH3/EX3.6/Ex3_6.sce | |
download | Scilab-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.6/Ex3_6.sce')
-rwxr-xr-x | 728/CH3/EX3.6/Ex3_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/728/CH3/EX3.6/Ex3_6.sce b/728/CH3/EX3.6/Ex3_6.sce new file mode 100755 index 000000000..3e2c5adf1 --- /dev/null +++ b/728/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,15 @@ +//Caption:Determine point of attachment & length of stub.
+//Exa 3.6
+clc;
+clear;
+close;
+Z_l=100;//in ohms
+Z_o=600;//in ohms
+f=100*10^6;//in Hz
+wl=(3*10^8)/f;
+//Position of stub is :
+m=((Z_l*Z_o)/(Z_l-Z_o))^0.5;
+pos={wl/(2*%pi)}*atan((Z_l/Z_o)^0.5);//in meters
+l={wl/(2*%pi)}*{atan(m)};//in meters
+disp(pos,"Position of stub (in meters) =");
+disp(abs(l),"Length of stub (in meters) =");
\ No newline at end of file |