-
Notifications
You must be signed in to change notification settings - Fork 405
Creating a new shared MOOSE Module
Cody Permann edited this page Feb 15, 2014
·
4 revisions
Note: All code shared within a MOOSE module will be made publicly available. Please do not push any code or information that is export controlled or proprietary in nature.
- Clone the Stork repo
git clone https://github.com/idaholab/stork.git
- Choose a new module name that is descriptive and represents your physics.
- Run the
make_new_module.sh
script.
Note: You must supply the base location of the MOOSE directory.
Your new module will be created inside of the $MOOSE_DIR/modules/
directory.
cd stork
./make_new_modules.sh <new module name> <MOOSE_DIR>
- Register your new module inside of
ModuleApp.C
and themodule_list.mk
file. Instructions for registering your module are contained within each of these files.