Sei sulla pagina 1di 6

SARVAJANIK COLLEGE OF

ENGINEERING AND TECHNOLOGY

An open ended project


SCILAB CODING OF SOLVED EXAMPLE 14.2 FROM
“ PROCESS SYSTEM ANALYSIS AND CONTROL”

Under subject of
INSTRUMENTATION AND PROCESS CONROL

B. E. III , Semester – V
( CHEMICAL ENGINEERING BRANCH )

Submitted by:
Sr No. Name of the Student Enrolment no
1. TAILOR KARAN 180423105010
2. TAILOR KASHYAP 180423105011
3. THESIYA RAVI 180423105012
4. PATEL HARSHIL 160420105062

SUBMITTED TO : Prof.(Dr.) Swati sharma


Prof. Bansi kansagra

Academic year
(2019)

Page | 1
SARVAJANIK COLLEGE OF ENGINEERING & TECHNOLOGY

CHEMICAL ENGG. DEPARTMENT

2019

CERTIFICATE

Date:_____________

This is to certify that the open ended project entitled SCILAB CODING OF
SOLVED EXAMPLE 14.2 FROM “ PROCESS SYSTEM ANALYSIS
AND CONTROL” has been carried out by TAILOR KASHYAP
(180423105011), TAILOR KARAN (180423105010), THESIYA RAVI
(180423105012) & PATEL HARSHIL (160420105062) in fulfilment of the
degree of Bachelor in CHEMICAL ENGINEERING (5th Semester) of Gujarat
Technological University, during the academic year 2019.

____________________________ ____________________________

Prof.(Dr.) Swati sharma Prof. Bansi kansagra


Head of department Assistant prof.

Page | 2
LIST OF CONTENT

No. Content Pg.no.


1. Front page 1
2. Certificate 2
3. Coding 4
4. Solved problem 5
5. Reference 6

Page | 3
CODING

Example : By means of routh test, determine the stability of the system shown
in figure-1 below when Kc = 2.

Figure1

CODING : //Example 14.2


clear;
clc
h=poly([2,4,5,3,1],'s','coeff');
r=routh_t(h)
//Since there is no change in sign in the first column, there are no roots having
positive real parts, and the system is stable.
y=coeff(h);
n=length(y);
c=0;
for i=1:n
if (r(i,1)<0)
c=c+1;
end
end
if(c>=1)
printf("system is unstable")
else ("system is stable")
end

Page | 4
SOLVED PROBLEM
INPUT :-

OUTPUT :-

Page | 5
REFERENCE
1. https://cloud.scilab.in/
2. https://fossee.in/

Page | 6

Potrebbero piacerti anche