model
Interface TwoFidelityApproxModel
- All Superinterfaces:
- ApproxModel, Computable, DataFit, DataListener, ScalarFunction, VariableBounds, VariableInputDimension
- All Known Implementing Classes:
- BasicTwoFidelityModel
public interface TwoFidelityApproxModel
- extends ApproxModel
Fits an approximate model to the difference between given data and a
low-order approximation of the oracle that generated that data. This
technique is also called an additive surrogate correction.
- Author:
- dgorur
getLoFiFunction
ScalarFunction getLoFiFunction()
- Returns the low-fidelity approximation used by this
ApproxModel.
- Returns:
- the low-fidelity approximation used.
setLoFiFunction
void setLoFiFunction(ScalarFunction function)
- Sets the low-fidelity approximation to be used.
- Parameters:
function - the given low-order function.