https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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,
26{
27public:
29
31
33
36 virtual void threadJoin(const UserObject &) override;
37 virtual void subdomainSetup() override;
39};
virtual void subdomainSetup() override
Gets called when the subdomain changes (i.e.
static InputParameters validParams()
virtual void threadJoin(const UserObject &) override
This method is not used and should not be used in a custom GeneralUserObject.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
An interface for accessing Materials.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Interface for objects that needs scalar coupling capabilities.
Interface for objects that needs transient capabilities.
Base class for user-specific data.
Definition UserObject.h:20