https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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{
16public:
19 virtual void execute() override;
20 virtual void initialize() override {}
21 virtual void finalize() override;
22
23protected:
25 const std::vector<Real> & _q_vector;
26 const bool & _classify;
27 const Real & _limiting_value;
29};
std::vector< Real > VectorPostprocessorValue
virtual void execute() override
Definition GFunction.C:44
VectorPostprocessorValue & _values
Definition GFunction.h:28
Sampler & _sampler
Definition GFunction.h:24
const bool & _classify
Definition GFunction.h:26
const Real & _limiting_value
Definition GFunction.h:27
virtual void initialize() override
Definition GFunction.h:20
static InputParameters validParams()
Definition GFunction.C:16
virtual void finalize() override
Definition GFunction.C:66
const std::vector< Real > & _q_vector
Definition GFunction.h:25
const InputParameters & parameters() const