From 8ac15bc5efafa2afc053c293152605b0e6ae60ff Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Tue, 3 Sep 2019 18:27:40 +0530 Subject: Xcos examples from textbooks and for blocks --- Working_Examples/293/CH4/EX4.3/eg4_3.sce | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 Working_Examples/293/CH4/EX4.3/eg4_3.sce (limited to 'Working_Examples/293/CH4/EX4.3') diff --git a/Working_Examples/293/CH4/EX4.3/eg4_3.sce b/Working_Examples/293/CH4/EX4.3/eg4_3.sce new file mode 100755 index 0000000..2aac486 --- /dev/null +++ b/Working_Examples/293/CH4/EX4.3/eg4_3.sce @@ -0,0 +1,10 @@ +//ad +Zab = complex(1,-0.5); //impedance appearing across terminals ab +Zbg = complex(1); //impedance appearing across terminals bg +Zbcd = complex(2+1,2); //impedance appearing across terminals bcd +Zad = Zab + (Zbg*Zbcd/(Zbg + Zbcd)); //impedance appearing across terminals ad +disp(Zad,"impedance appearing across terminals ad = ") + +//dg +Zdg = Zbg + (Zab*Zbcd/(Zab+Zbcd)); //impedance appearing across termainals dg +disp(Zdg,"impedance appearing across terminals dg = ") \ No newline at end of file -- cgit