Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nek5000
giraffe
Commits
601b2291
Commit
601b2291
authored
Jun 28, 2017
by
Ron Rahaman
Browse files
Correction to heat conduction module usage
parent
ae42d93b
Changes
2
Hide whitespace changes
Inline
Side-by-side
examples/integration_example/Makefile
View file @
601b2291
...
...
@@ -21,7 +21,7 @@ include $(FRAMEWORK_DIR)/moose.mk
CHEMICAL_REACTIONS
:=
no
CONTACT
:=
no
FLUID_PROPERTIES
:=
no
HEAT_CONDUCTION
:=
no
HEAT_CONDUCTION
:=
yes
MISC
:=
no
NAVIER_STOKES
:=
no
PHASE_FIELD
:=
no
...
...
src/base/MoonApp.C
View file @
601b2291
...
...
@@ -11,6 +11,7 @@
#include
"NekSideIntegralVariableUserObject.h"
// Modules
#include
"HeatConductionApp.h"
// Moon
#include
"MoonRevision.h"
...
...
@@ -35,10 +36,12 @@ MoonApp::MoonApp(InputParameters parameters) :
{
Moose
::
registerObjects
(
_factory
);
ModulesApp
::
registerObjects
(
_factory
);
HeatConductionApp
::
registerObjects
(
_factory
);
MoonApp
::
registerObjects
(
_factory
);
Moose
::
associateSyntax
(
_syntax
,
_action_factory
);
ModulesApp
::
associateSyntax
(
_syntax
,
_action_factory
);
HeatConductionApp
::
associateSyntax
(
_syntax
,
_action_factory
);
MoonApp
::
associateSyntax
(
_syntax
,
_action_factory
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment