Parametric programming is a type of mathematical optimization, where the optimization problem is solved as a function of one or multiple parameters.[1] Developed in parallel to sensitivity analysis, its earliest mention can be found in a thesis from 1952.[2] Since then, there have been considerable developments for the cases of multiple parameters, presence of integer variables as well as nonlinearities.
In general, the following optimization problem is considered
where [math]\displaystyle{ x }[/math] is the optimization variable, [math]\displaystyle{ \theta }[/math] are the parameters, [math]\displaystyle{ f(x,\theta) }[/math] is the objective function and [math]\displaystyle{ g(x,\theta) }[/math] denote the constraints. [math]\displaystyle{ J^* }[/math] denotes a function whose output is the optimal value of the objective function [math]\displaystyle{ f }[/math]. The set [math]\displaystyle{ \Theta }[/math] is generally referred to as parameter space.
The optimal value (i.e. result of solving the optimization problem) is obtained by evaluating the function with an argument [math]\displaystyle{ \theta }[/math].
Depending on the nature of [math]\displaystyle{ f(x,\theta) }[/math] and [math]\displaystyle{ g(x,\theta) }[/math] and whether the optimization problem features integer variables, parametric programming problems are classified into different sub-classes:
The connection between parametric programming and model predictive control for process manufacturing, established in 2000, has contributed to an increased interest in the topic.[6][7] Parametric programming supplies the idea that optimization problems can be parametrized as functions that can be evaluated (similar to a lookup table). This in turns allows the optimization algorithms in optimal controllers to be implemented as pre-computed (off-line) mathematical functions, which may in some cases be simpler and faster to evaluate than solving a full optimization problem on-line. This also opens up the possibility of creating optimal controllers on chips (MPC on chip[8]). However, the off-line parametrization of optimal solutions runs into the curse of dimensionality as the number of possible solutions grows with the dimensionality and number of constraints in the problem.[citation needed]
Parametric programming in the context of CNC (computer numerical control) is defining part-cutting cycles in terms of variables with reassignable values rather than via hardcoded/hardwired instances. An archetypically simple example is writing a G-code program to machine a family of washers: there is often no need to write 15 programs for 15 members of the family with various hole diameters, outer diameters, thicknesses, and materials, when it is practical instead to write 1 program that calls various variables and reads their current values from a table of assignments. The program then instructs the machine slides and spindles to move to various positions at various velocities, accordingly, addressing not only the sizes of the part (i.e., OD, ID, thickness) but also even the speeds and feeds needed for any given material (e.g., low-carbon steel, high-carbon steel; stainless steel of whichever grade; bronze, brass, or aluminum of whichever grade; polymer of whichever type). Custom Macros are often used in such programming.[9]
Original source: https://en.wikipedia.org/wiki/Parametric programming.
Read more |