https://mooseframework.inl.gov
GeneralUserObject.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 "UserObject.h"
14 #include "ScalarCoupleable.h"
16 #include "TransientInterface.h"
18 #include "ReporterInterface.h"
19 
20 /* This class is here to combine the Postprocessor interface and the
21  * base class Postprocessor object along with adding MooseObject to the inheritance tree*/
23  public ScalarCoupleable,
25  public TransientInterface
26 {
27 public:
29 
31 
33 
36  virtual void threadJoin(const UserObject &) override;
37  virtual void subdomainSetup() override;
39 };
static InputParameters validParams()
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
Interface for objects that needs transient capabilities.
virtual void threadJoin(const UserObject &) override
This method is not used and should not be used in a custom GeneralUserObject.
virtual void subdomainSetup() override
Gets called when the subdomain changes (i.e.
An interface for accessing Materials.
GeneralUserObject(const InputParameters &parameters)
Interface for objects that needs scalar coupling capabilities.
const InputParameters & parameters() const
Get the parameters of the object.
Base class for user-specific data.
Definition: UserObject.h:40