Line data Source code
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" 14 : #include "SurrogateModelInterface.h" 15 : #include "SurrogateModel.h" 16 : 17 : /** 18 : * A tool for output Sampler data. 19 : */ 20 : class EvaluateSurrogate : public StochasticReporter, SurrogateModelInterface 21 : { 22 : public: 23 : static InputParameters validParams(); 24 : 25 : EvaluateSurrogate(const InputParameters & parameters); 26 : virtual void execute() override; 27 763 : virtual void finalize() override {} 28 : 29 : protected: 30 : /// Sampler for evaluating surrogate model 31 : Sampler & _sampler; 32 : /// The data type for the response value 33 : const MultiMooseEnum _response_types; 34 : /// Whether or not to compute standard deviation 35 : std::vector<bool> _doing_std; 36 : /// Pointers to surrogate model 37 : std::vector<const SurrogateModel *> _model; 38 : ///@{ 39 : /// Vectors containing results of sampling 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; 44 : ///@} 45 : };