https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SubChannelTestApp.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 "SubChannelTestApp.h"
11#include "Moose.h"
12#include "AppFactory.h"
13#include "MooseSyntax.h"
14
21
23{
25 _factory, _action_factory, _syntax, getParam<bool>("allow_test_objects"));
26}
27
29
30void
32{
34 if (use_test_objs)
35 {
36 Registry::registerObjectsTo(f, {"SubChannelTestApp"});
37 Registry::registerActionsTo(af, {"SubChannelTestApp"});
38 }
39}
40
41void
47
48/***************************************************************************************************
49 *********************** Dynamic Library Entry Points - DO NOT MODIFY ******************************
50 **************************************************************************************************/
51// External entry point for dynamic application loading
52extern "C" void
57extern "C" void
Real f(Real x)
Test function for Brents method.
void SubChannelTestApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
void SubChannelTestApp__registerApps()
ActionFactory _action_factory
Factory _factory
Syntax _syntax
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
Application used when running the subchannel module directly.
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
static InputParameters validParams()
static void registerApps()
static InputParameters validParams()
static void registerAll(Factory &f, ActionFactory &af, Syntax &s, bool use_test_objs=false)
static void registerApps()
SubChannelTestApp(const InputParameters &parameters)