The Modified Method of Feasible Directions technique has the following features:
rapidly obtains an optimum design,
-
handles inequality and equality constraints, and
-
satisfies constraints with high precision at the optimum.
The sequence of steps followed by the MMFD technique are as follows:
- q=0, x̲=x̲0
- q=q+1
- Evaluate F(
) and gj(
);
j=1,2,…,M
- Identify the set of critical constraints, J
- Calculate ∇F(x̲) ∇gj(x̲),j∈J
- Determine the usable/feasible search directions, S̲q
- Perform 1D search to find a*
- Set x̲q=x̲q−1+a×x S̲q
- Check for convergence; if not converged, go to Step 2.
The MMFD technique uses one of the following methods to find the search
direction at each iteration q:
- If no constraints are active or violated, the (previously described)
unconstrained Conjugate Gradient method is used.
-
If any constraints are active and none are violated, the MMFD technique
minimizes
∇F(x̲q−1)×S̲q
subject to: ∇gj(x̲q−1)×Sq≤0; j∈J
Sq×Sq≤1.
minimizes ∇F(x̲q−1)×S̲q−Φβ
subject to: ∇gj(xq−1)×Sq+Θjβ≤0;j∈J
S̲q×S̲q≤1
where
J is the set of active and violated constraints
Φ
is a large positive number
Θj
is a push-off factor for constraints
Θj
= 0 for active constraints
Θj
> 0 for violated constraints
The active and violated constraints are identified as follows:
gj(x̲) is active, if CT≤gj(x̲)≤CTMIN
gj(x̲) is violated, if gj(x̲)>CTMIN
Active and Violated Constraint Identification
