https://mooseframework.inl.gov
GFunction.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 #pragma once
10 
12 
13 /* SOBOL test function, see Slaughter, Eq. 5.51 */
15 {
16 public:
19  virtual void execute() override;
20  virtual void initialize() override {}
21  virtual void finalize() override;
22 
23 protected:
25  const std::vector<Real> & _q_vector;
27 };
const std::vector< Real > & _q_vector
Definition: GFunction.h:25
virtual void initialize() override
Definition: GFunction.h:20
virtual void finalize() override
Definition: GFunction.C:54
VectorPostprocessorValue & _values
Definition: GFunction.h:26
GFunction(const InputParameters &parameters)
Definition: GFunction.C:26
std::vector< Real > VectorPostprocessorValue
virtual void execute() override
Definition: GFunction.C:40
static InputParameters validParams()
Definition: GFunction.C:16
const InputParameters & parameters() const
Sampler & _sampler
Definition: GFunction.h:24