A 'ADStateful' is not a registered object. #27971
-
Check these boxes if you have followed the posting rules.
Issue or question about MOOSEDear mooseusers, I try to run an example, it shows the objects not registered. The example is: [Variables] [Kernels] [Materials] [Executioner] [Outputs] the error is : A 'ADStateful' is not a registered object. I am writing to ask is there some modules not included when I compile moose? my makefile is: ############################################################################### Optional Environment variablesMOOSE_DIR - Root directory of the MOOSE project############################################################################### Use the MOOSE submodule if it exists and MOOSE_DIR is not setMOOSE_SUBMODULE := $(CURDIR)/moose frameworkFRAMEWORK_DIR := $(MOOSE_DIR)/framework ################################## MODULES #################################### To use certain physics included with MOOSE, set variables below toyes as needed. Or set ALL_MODULES to yes to turn on everything (overridesother set variables).ALL_MODULES := no CHEMICAL_REACTIONS := no include $(MOOSE_DIR)/modules/modules.mk dep appsAPPLICATION_DIR := $(CURDIR) ############################################################################### Additional special case targets should be added hereThank you for your help. Best regards, Diagnostics for MOOSE installation issues[Optional] Output of the diagnostics scripts. To run the script: cd ~/projects/moose/scripts; ./diagnostics.sh |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hello ADStateful is a moose test object. It is not supposed to be used in calculations outside of tests. Guillaume |
Beta Was this translation helpful? Give feedback.
Hello
ADStateful is a moose test object. It is not supposed to be used in calculations outside of tests.
It is not part of any module. It can be included but it's a bit of work and not just in the Makefile.
Maybe just move it to your app if you need it (and change the register object call in the source file)
Guillaume