|
| SurrogateModel (const InputParameters ¶meters) |
|
virtual Real | evaluate (const std::vector< Real > &x) const |
| Evaluate surrogate model given a row of parameters. More...
|
|
virtual bool | enabled () const |
|
std::shared_ptr< MooseObject > | getSharedPtr () |
|
std::shared_ptr< const MooseObject > | getSharedPtr () const |
|
MooseApp & | getMooseApp () const |
|
const std::string & | type () const |
|
virtual const std::string & | name () const |
|
std::string | typeAndName () const |
|
std::string | errorPrefix (const std::string &error_type) const |
|
void | callMooseError (std::string msg, const bool with_prefix) const |
|
MooseObjectParameterName | uniqueParameterName (const std::string ¶meter_name) const |
|
const InputParameters & | parameters () const |
|
MooseObjectName | uniqueName () const |
|
const T & | getParam (const std::string &name) const |
|
std::vector< std::pair< T1, T2 > > | getParam (const std::string ¶m1, const std::string ¶m2) const |
|
const T * | queryParam (const std::string &name) const |
|
const T & | getRenamedParam (const std::string &old_name, const std::string &new_name) const |
|
T | getCheckedPointerParam (const std::string &name, const std::string &error_string="") const |
|
bool | isParamValid (const std::string &name) const |
|
bool | isParamSetByUser (const std::string &nm) const |
|
void | paramError (const std::string ¶m, Args... args) const |
|
void | paramWarning (const std::string ¶m, Args... args) const |
|
void | paramInfo (const std::string ¶m, Args... args) const |
|
void | connectControllableParams (const std::string ¶meter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const |
|
void | mooseError (Args &&... args) const |
|
void | mooseErrorNonPrefixed (Args &&... args) const |
|
void | mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const |
|
void | mooseWarning (Args &&... args) const |
|
void | mooseWarningNonPrefixed (Args &&... args) const |
|
void | mooseDeprecated (Args &&... args) const |
|
void | mooseInfo (Args &&... args) const |
|
std::string | getDataFileName (const std::string ¶m) const |
|
std::string | getDataFileNameByName (const std::string &relative_path) const |
|
std::string | getDataFilePath (const std::string &relative_path) const |
|
const Parallel::Communicator & | comm () const |
|
processor_id_type | n_processors () const |
|
processor_id_type | processor_id () const |
|
T & | getSampler (const std::string &name) |
|
Sampler & | getSampler (const std::string &name) |
|
T & | getSamplerByName (const SamplerName &name) |
|
Sampler & | getSamplerByName (const SamplerName &name) |
|
template<> |
SurrogateModel & | getSurrogateModel (const std::string &name) const |
|
template<> |
SurrogateTrainerBase & | getSurrogateTrainer (const std::string &name) const |
|
template<> |
SurrogateModel & | getSurrogateModelByName (const UserObjectName &name) const |
|
template<> |
SurrogateTrainerBase & | getSurrogateTrainerByName (const UserObjectName &name) const |
|
const std::string & | modelMetaDataName () const |
| Accessor for the name of the model meta data. More...
|
|
const FileName & | getModelDataFileName () const |
| Get the associated filename. More...
|
|
bool | hasModelData () const |
| Check if we need to load model data (if the filename parameter is used) More...
|
|
|
virtual void | evaluate (const std::vector< Real > &x, std::vector< Real > &y) const |
| Various evaluate methods that can be overriden. More...
|
|
|
virtual Real | evaluate (const std::vector< Real > &x, Real &std) const |
| Evaluate methods that also return predicted standard deviation (see GaussianProcess.h) More...
|
|
virtual void | evaluate (const std::vector< Real > &x, std::vector< Real > &y, std::vector< Real > &) const |
|
|
template<typename T = SurrogateModel> |
T & | getSurrogateModel (const std::string &name) const |
| Get a SurrogateModel/Trainer with a given name. More...
|
|
template<typename T = SurrogateTrainerBase> |
T & | getSurrogateTrainer (const std::string &name) const |
|
|
template<typename T = SurrogateModel> |
T & | getSurrogateModelByName (const UserObjectName &name) const |
| Get a sampler with a given name. More...
|
|
template<typename T = SurrogateTrainerBase> |
T & | getSurrogateTrainerByName (const UserObjectName &name) const |
|
|
template<typename T , typename... Args> |
T & | declareModelData (const std::string &data_name, Args &&... args) |
| Declare model data for loading from file as well as restart. More...
|
|
|
template<typename T , typename... Args> |
const T & | getModelData (const std::string &data_name, Args &&... args) const |
| Retrieve model data from the interface. More...
|
|
Definition at line 18 of file SurrogateModel.h.