From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3885/CH3/EX3.2/Ex3_2.sci | 19 +++ 3885/CH3/EX3.2/Ex3_2.xcos | 361 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 380 insertions(+) create mode 100644 3885/CH3/EX3.2/Ex3_2.sci create mode 100644 3885/CH3/EX3.2/Ex3_2.xcos (limited to '3885/CH3/EX3.2') diff --git a/3885/CH3/EX3.2/Ex3_2.sci b/3885/CH3/EX3.2/Ex3_2.sci new file mode 100644 index 000000000..0af5261eb --- /dev/null +++ b/3885/CH3/EX3.2/Ex3_2.sci @@ -0,0 +1,19 @@ +//control systems by Nagoor Kani A +//Edition 3 +//Year of publication 2015 +//Scilab version 6.0.0 +//operating systems windows 10 +// Example 3.2 + +clc; +clear; +s=%s +p=poly([100],'s','coeff') +q=poly([0 2 1],'s','coeff') +h=poly([1 0.1 0 ],'s','coeff') +g=p./q +disp(g,'the given transfer function is') +c=g/(1+(g*h)) +disp(c,'the closed loop transfer function is') +u=c/s +disp(u,'the in put is unit step signal') diff --git a/3885/CH3/EX3.2/Ex3_2.xcos b/3885/CH3/EX3.2/Ex3_2.xcos new file mode 100644 index 000000000..8709b952c --- /dev/null +++ b/3885/CH3/EX3.2/Ex3_2.xcos @@ -0,0 +1,361 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit