18
Describing System Muhammad Ridwan Andi Purnomo, ST, MSc, PhD Department of Industrial Engineering Faculty of Industrial Technology Universitas Islam Indonesia 2015

Describing System 2

Embed Size (px)

DESCRIPTION

described

Citation preview

Science Fair Project

Describing SystemMuhammad Ridwan Andi Purnomo, ST, MSc, PhD

Department of Industrial EngineeringFaculty of Industrial TechnologyUniversitas Islam Indonesia2015What is systemExisting definition: a group of elements that cooperate to achieve common goals.

In term of applications, different people will give different definition.

3 commonalities of system:Based on cause-effect relationshipAble to be decomposed into several sub systemsApplied over a restricted application domain.System design processTop-down: begins with highly abstract modules and progressively decomposes these down to an atomic level.

Bottom-up: begins with indivisible atoms and builds ever more abstract structures until the entire system is defined.

System design processEnterprise systemManufacturing systemSupplier systemDistributor system systemShop floor systemProcurement system systemSystem diagram

System propertiesP1: All environmental influences on a system can be reduced to a vector of m real variables that vary with time, x(t) = [x1(t), . . . , xm(t)]. In general, x(t) is called the input and the components xi(t) are input signals.Ex: in production shop floor, to determine number of production, we need information on demand Input: D. Signal of input: D1 = 150, D2 = 200, etc.

System propertiesP2: All system effects can be summarized by a vector of n real variables that vary with time, z(t) = [z1(t), . . . , zn(t)]. In general, z(t) is called the output and the components zi(t) are output signals.

Ex: in production shop floor, number of production (P) is determined based on the demand. P = outputP1 = 200, P2 = 300, P3 = 150 are the output signal.

System propertiesP3: If the output signals are algebraic functions of only the current input, the system is said to be of zero order, since there can be no system dynamics. Accordingly, there is a state vector y(t) = [v1](t), yp(t)], and the system can be written as two algebraic equations involving the input, state, and output:y(t) = f1(x(t))z(t) = f2(x(t), y(t))System propertiesP4: If the input signal depends dynamically on the output, there must also be system memory.Ex: suppose that the system samples a signal every t = 0, 1,2, . . . seconds and that the output z(t) depends on input x(t- 1). It follows that there must be two memory elements present in order to recall x(t-1) and x(t-2) as needed. Each such implied memory element increases the number of system state variables by one.System modelling diagram

ExampleExample model mathematical dynamic numerical simulation:Consider a factory conveyor system in which boxes arrive at the rate of one box each 10 seconds. Each box is one of the following weights: 5, 10, or 15 kg. However, there are twice as many 5 kg boxes and 15 kg boxes as 10 kg boxes.How to model and simulate the system?

ExampleWeight distribution of the box:

W is a "weight" random variable that can take on one of the three discrete values W {5, 10,15}. The notation Pr[W = w] is read "the probability that the random variable W is w". The set {5,10,15} is called the sample space of W, and is the set of all possible weights.wPr[W=w]50.4100.2150.4Total1.0ExampleHow many 5, 10, 15 kg boxes will come to the system ?The simulation procedure:for k = l to nr = INT(RAND()*10)+1if r 6 then w(k) = 15if k = l then z(k) = x(l)if k = 2 then z(k) = x(1)+x(2)if k > 2 then z(k) =x(k)+x(k-1)+x(k-2)next kTHANK YOU !