knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "75%"
)

labsimplex

This package implements the simplex algorithms (fixed and variable step-size) for laboratory and proccess optimizations.

Installation

The development versión of labsimplex can be installed using install_github() function from devtools package:

devtools::install_github(repo = 'crparedes/labsimplex', build_vignettes = TRUE)

The released version of labsimplex is available from CRAN with:

install.packages("labsimplex")

Example

This basic example shows how to start an optimization process:

Suppose there is a reaction taking place in water at determinate pH and temperature. Both variables have shown to affect the yield of the reaction, and the purpose is to maximize it. Usually, the reaction is made at 350 °C and pH 5.5, which will be the starting point. Rational changes can be made in steps of 10°C and 0.5 units of pH for each variable, as presented below.

library(labsimplex)
yield <- labsimplex(n = 2, start = c(350, 5.5), var.name = c('Temp', 'pH'),
                    stepsize = c(10, 0.5))
print(yield)

It is possible to plot the simplex object to visualize the coordinates of the vertexes:

plot(yield)

The experiments corresponding to the Temp. and pH values indicated for each vertex must be performed and the response must be recorded. Suppose the responses for vertexes 1 to 3 were 57\%, 65\% and 54\% respectively. The new vertex can be generated and the simplex movement can be visualized again ploting the simplex.

generateVertex(simplex = yield, qflv = c(57, 65, 54), overwrite = TRUE)
plot(yield)

For more information, read the package manual and vignette.



Crparedes/labsimplex documentation built on Sept. 24, 2021, 6:40 a.m.