PCE as a surrogate model for optimization solver

Dear Rana

PCE is nothing but a response surface made of special polynomials. So you can use it for optimization once it is build!

  • First you have to define the ranges of the parameters you want to optimize, defining an INPUT object with uniform distributions over each range.
  • Then you define a MODEL object which is your objective function.
  • Then you can use the default options of the PCE module to get a new function (a MODEL in UQLab jargon) that you can evaluate at no cost (typically 10^6 runs in a second). You can then use your favourite optimization algorithm with the PCE model.

I suggest you follow the first example of the PCE user manual, see Chapter 2 “Usage”. An important choice is the number of points in the experimental design (that is, the points in your design space where the true objective function will be evaluated) used to build the PCE. Typically, one choose 10 times the number of parameters of your problem.

Hope this will be useful!
Best regards
Bruno