Large Scale Optimization Algorithm (BIGOPT)

A gradient-based method that consumes less memory and is relatively more computationally efficient, compared to MFD and SQP.

Implementation

Consider an optimization problem that involves minimizing f(x) based on a set of constraints. It is described as:

min[f(x)]gi(x)=0, i=1,...,megi(x)0, i=(me+1),...,mexLxxU

Where, f(x) is the objective function, gi(x) is the i’th constraint function, me is the number of equality constraints, m is the total number of constraints, x is the design variable vector, and xL and xU are the lower and upper bound vectors of design variables, respectively.

If BIGOPT is selected, OptiStruct converts this problem to an equivalent problem using the penalty method, as:

minΦ(x)=f(x)+r(mei=1qi[gi(x)]2+mi=me+1qi{max[0,gi(x)]}2)xLxxU

Where, r and qi are penalty multipliers.

BIGOPT considers the bound constraints separately, so the original problem is converted to an unconstrained problem. Polak-Ribiere conjugate gradient method is used to generate search direction. After the search direction is calculated, a one-dimensional search can be accomplished by parabolic interpolation (Brent’s method).

Terminating Conditions

Optimization runs, based on a BIGOPT algorithm, will be terminated if one of the following conditions is met:
  • Φε and the design is feasible.
  • 2|Φ(xk+1)Φ(xk)||Φ(xk+1)|+|Φ(xk)|ε and the design is feasible.
  • The number of iteration steps exceeds Nmax .

Where, Φ is the gradient of Φ(x) , k is the k ’th iteration step, εε is the convergence parameter, and Nmax is the allowed maximum iterations.