kriging.py¶
Surrogate model based on Kriging.
-
class
openmdao.surrogate_models.kriging.FloatKrigingSurrogate[source]¶ Bases:
openmdao.surrogate_models.kriging.KrigingSurrogateSurrogate model based on the simple Kriging interpolation. Predictions are returned as floats, which are the mean of the model’s prediction.
-
class
openmdao.surrogate_models.kriging.KrigingSurrogate[source]¶ Bases:
openmdao.surrogate_models.surrogate_model.SurrogateModelSurrogate Modeling method based on the simple Kriging interpolation. Predictions are returned as a tuple of mean and RMSE
-
jacobian(x)[source]¶ Calculates the jacobian of the Kriging surface at the requested point.
Args: x : array-like
Point at which the surrogate Jacobian is evaluated.
-