https://mooseframework.inl.gov
contact
test
src
base
ContactTestApp.C
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
#include "
ContactTestApp.h
"
11
#include "
ContactApp.h
"
12
#include "
Moose.h
"
13
#include "
AppFactory.h
"
14
#include "
MooseSyntax.h
"
15
16
InputParameters
17
ContactTestApp::validParams
()
18
{
19
InputParameters
params =
ContactApp::validParams
();
20
return
params;
21
}
22
23
registerKnownLabel
(
"ContactTestApp"
);
24
25
ContactTestApp::ContactTestApp
(
const
InputParameters
& parameters) :
MooseApp
(parameters)
26
{
27
ContactTestApp::registerAll
(
28
_factory
,
_action_factory
,
_syntax
, getParam<bool>(
"allow_test_objects"
));
29
}
30
31
ContactTestApp::~ContactTestApp
() {}
32
33
void
34
ContactTestApp::registerAll
(
Factory
&
f
,
ActionFactory
& af,
Syntax
& s,
bool
use_test_objs)
35
{
36
ContactApp::registerAll
(
f
, af, s);
37
if
(use_test_objs)
38
{
39
Registry::registerObjectsTo
(
f
, {
"ContactTestApp"
});
40
Registry::registerActionsTo
(af, {
"ContactTestApp"
});
41
}
42
}
43
44
void
45
ContactTestApp::registerApps
()
46
{
47
ContactApp::registerApps
();
48
registerApp(
ContactTestApp
);
49
}
50
51
extern
"C"
void
52
ContactTestApp__registerAll
(
Factory
&
f
,
ActionFactory
& af,
Syntax
& s)
53
{
54
ContactTestApp::registerAll
(
f
, af, s);
55
}
56
extern
"C"
void
57
ContactTestApp__registerApps
()
58
{
59
ContactTestApp::registerApps
();
60
}
AppFactory.h
Moose.h
ContactTestApp::~ContactTestApp
virtual ~ContactTestApp()
Definition:
ContactTestApp.C:31
Factory
registerKnownLabel
registerKnownLabel("ContactTestApp")
ContactApp::validParams
static InputParameters validParams()
Definition:
ContactApp.C:17
ContactTestApp::ContactTestApp
ContactTestApp(const InputParameters ¶meters)
Definition:
ContactTestApp.C:25
ContactTestApp.h
Registry::registerObjectsTo
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
MooseApp::_syntax
Syntax _syntax
InputParameters
Registry::registerActionsTo
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
Syntax
f
Real f(Real x)
Test function for Brents method.
Definition:
BrentsMethodTest.C:21
ActionFactory
ContactTestApp::validParams
static InputParameters validParams()
Definition:
ContactTestApp.C:17
MooseApp::_action_factory
ActionFactory _action_factory
MooseSyntax.h
ContactTestApp__registerAll
void ContactTestApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition:
ContactTestApp.C:52
ContactApp.h
ContactTestApp::registerApps
static void registerApps()
Definition:
ContactTestApp.C:45
MooseApp::_factory
Factory _factory
ContactTestApp__registerApps
void ContactTestApp__registerApps()
Definition:
ContactTestApp.C:57
ContactApp::registerApps
static void registerApps()
Definition:
ContactApp.C:57
MooseApp
ContactApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition:
ContactApp.C:38
ContactTestApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
Definition:
ContactTestApp.C:34
ContactTestApp
Definition:
ContactTestApp.h:14
Generated on Fri Jul 18 2025 13:42:48 for https://mooseframework.inl.gov by
1.8.14