Content deleted Content added
m Dicklyon moved page Flow shop scheduling to Flow-shop scheduling: Article says it's about scheduling a flow shop, not a flow version of shop scheduling |
hyphenate compounds used as modifiers; case fixes |
||
Line 1:
{{citation style|date=May 2016}}
{{short description|class of computational problem}}
'''Flow shop scheduling''' is an [[optimization problem]] in [[computer science]] and [[Operations Research|operations research]]. It is a variant of [[optimal job scheduling]]. In a general job
Flow shop scheduling is a special case of [[job shop scheduling]] where there is strict order of all operations to be performed on all jobs. Flow shop scheduling may apply as well to [[Manufacturing|production]] facilities as to [[computing]] designs. A special type of flow shop scheduling problem is the '''permutation flow shop scheduling''' problem in which the [[Process (engineering)|processing]] order of the jobs on the resources is the same for each subsequent step of processing.
In the standard [[Optimal job scheduling|three-field notation for optimal
==Formal definition==
Line 20:
detailed discussion of performance measurement can be found in [[Behnam Malakooti|Malakooti]](2013).
==Complexity of flow
As presented by Garey et al. (1976), most of extensions of the flow
==Solution methods==
The proposed methods to solve flow
=== Minimizing makespan, C<sub>max</sub> ===
F2|prmu|C<sub>max</sub> and F3|prmu|C<sub>max</sub> can be solved optimally by using [[Johnson's Rule]] (1954) but for general case there is no algorithm that guarantee the optimality of the solution.<br>
Here is minimization using Johnson's Rule:<br>
The flow shop contains n jobs simultaneously available at time zero and to be processed by two machines arranged in series with unlimited storage in between them. The processing time of all jobs are known with certainty. It is required to schedule n jobs on machines so as to minimize makespan. The Johnson's rule for scheduling jobs in two
In an optimal schedule, job i precedes job j if ''min{p<sub>1i</sub>,p<sub>2j</sub>} < min{p<sub>1j</sub>,p<sub>2i</sub>}''. Where as, p<sub>1i</sub> is the processing time of job i on machine 1 and p<sub>2i</sub> is the processing time of job i on machine 2. Similarly, p<sub>1j</sub> and p<sub>2j</sub> are processing times of job j on machine 1 and machine 2 respectively.<br>
The steps are summarized below for Johnson's algorithms:<br>
Line 36 ⟶ 37:
p<sub>2j</sub>=processing time of job j on machine 2
<br>
Johnson's
Step 1:Form set1 containing all the jobs with p<sub>1j</sub> < p<sub>2j</sub> <br>
Step 2:Form set2 containing all the jobs with p<sub>1j</sub> > p<sub>2j</sub>, the jobs with p<sub>1j</sub>=p<sub>2j</sub> may be put in either set.<br>
Line 61 ⟶ 62:
==External links==
* [http://posh-wolf.herokuapp.com/ Posh Wolf]
[[Category:Optimal scheduling]]
|