https://mooseframework.inl.gov
Loading...
Searching...
No Matches
EvaluateSurrogate.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12// MOOSE includes
13#include "StochasticReporter.h"
15#include "SurrogateModel.h"
16
21{
22public:
24
26 virtual void execute() override;
27 virtual void finalize() override {}
28
29protected:
35 std::vector<bool> _doing_std;
37 std::vector<const SurrogateModel *> _model;
40 std::vector<std::vector<Real> *> _real_values;
41 std::vector<std::vector<std::vector<Real>> *> _vector_real_values;
42 std::vector<std::vector<Real> *> _real_std;
43 std::vector<std::vector<std::vector<Real>> *> _vector_real_std;
45};
A tool for output Sampler data.
Sampler & _sampler
Sampler for evaluating surrogate model.
const MultiMooseEnum _response_types
The data type for the response value.
std::vector< std::vector< Real > * > _real_values
std::vector< std::vector< std::vector< Real > > * > _vector_real_std
std::vector< const SurrogateModel * > _model
Pointers to surrogate model.
std::vector< std::vector< Real > * > _real_std
std::vector< std::vector< std::vector< Real > > * > _vector_real_values
virtual void finalize() override
static InputParameters validParams()
virtual void execute() override
std::vector< bool > _doing_std
Whether or not to compute standard deviation.
const InputParameters & parameters() const
Interface for objects that need to use samplers.