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 --- 29/CH11/EX11.24/exa11_24.jpg | Bin 0 -> 28443 bytes 29/CH11/EX11.24/exa11_24.sce | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100755 29/CH11/EX11.24/exa11_24.jpg create mode 100755 29/CH11/EX11.24/exa11_24.sce (limited to '29/CH11/EX11.24') diff --git a/29/CH11/EX11.24/exa11_24.jpg b/29/CH11/EX11.24/exa11_24.jpg new file mode 100755 index 000000000..d03e674ba Binary files /dev/null and b/29/CH11/EX11.24/exa11_24.jpg differ diff --git a/29/CH11/EX11.24/exa11_24.sce b/29/CH11/EX11.24/exa11_24.sce new file mode 100755 index 000000000..5dde825b9 --- /dev/null +++ b/29/CH11/EX11.24/exa11_24.sce @@ -0,0 +1,22 @@ +//caption:stability_using_Nyquist_criterion +//example 11_24 +//page 496 +clf; +s=%s; +s1=-s; +g=50/((s+1)*(s+2)); +g1=50/((s1+1)*(s1+2)); +GH=syslin('c',g) +GH1=syslin('c',g1) +nyquist(GH); +nyquist(GH1); +mtlb_axis([-5 30 -20 20]); +xtitle('Nyquist plot of 50/((s+1)*(s+2))') +figure; +show_margins(GH,'nyquist') +disp("since the point(-1+%i0) is not encircled by Nyquist plot ,so N=0 and P=0(given)") +N=0;//no. of encirclement of -1+%i0 by G(s)H(s) plot +P=0;//no. of poles of G(s)H(s) with positive real part +Z=P-N;//np.of zeros of 1+G(s)H(s)=0 with positive real part +disp(Z,"Z=") +disp("as Z=0,there are no roots of closed loop characterstics eq having positive real part, hence system is stable.") \ No newline at end of file -- cgit