Skip to content

Commit 49a1772

Browse files
authored
Merge pull request #27006 from hugary1995/solid_mechanics_workshop
Minor touches in preparation for the Solid Mechanics workshop
2 parents f41af8f + 5ff4702 commit 49a1772

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed

modules/doc/content/modules/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ application.
2323
- [Reactor](modules/reactor/index.md)
2424
- [Reconstructed Discontinuous Galerkin](modules/rdg/index.md)
2525
- [Richards](modules/richards/index.md)
26+
- [Solid Mechanics](modules/solid_mechanics/index.md)
2627
- [Solid Properties](modules/solid_properties/index.md)
2728
- [Stochastic Tools](modules/stochastic_tools/index.md)
28-
- [Tensor Mechanics](modules/solid_mechanics/index.md)
2929
- [Thermal Hydraulics](modules/thermal_hydraulics/index.md)
3030
- [XFEM](modules/xfem/index.md)
3131

scripts/stork.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ mv "$dir/test/src/base/${srcname}TestApp.C.${kind}" "$dir/test/src/base/${dstnam
105105
mv "$dir/include/base/${srcname}App.h" "$dir/include/base/${dstname}App.h"
106106
mv "$dir/test/include/base/${srcname}TestApp.h" "$dir/test/include/base/${dstname}TestApp.h"
107107
mv "$dir/doc/config.yml.${kind}" "$dir/doc/config.yml"
108+
mv "$dir/doc/sqa_reports.yml.${kind}" "$dir/doc/sqa_reports.yml"
108109
mv "$dir/doc/moosedocs.py.${kind}" "$dir/doc/moosedocs.py"
109110
chmod a+x "$dir/doc/moosedocs.py"
110111
chmod a+x "$dir/run_tests"
@@ -116,6 +117,7 @@ rm -f $dir/run_tests.*
116117
rm -f $dir/src/base/StorkApp.C.*
117118
rm -f $dir/test/src/base/StorkTestApp.C.*
118119
rm -f $dir/doc/config.yml.*
120+
rm -f $dir/doc/sqa_reports.yml.*
119121
rm -f $dir/doc/moosedocs.py.*
120122

121123
if [[ "$kind" == "app" ]]; then

stork/Makefile.app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ RAY_TRACING := no
4646
REACTOR := no
4747
RDG := no
4848
RICHARDS := no
49+
SOLID_MECHANICS := no
4950
STOCHASTIC_TOOLS := no
5051
THERMAL_HYDRAULICS := no
51-
TENSOR_MECHANICS := no
5252
XFEM := no
5353

5454
include $(MOOSE_DIR)/modules/modules.mk

stork/doc/sqa_reports.yml.app

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Applications:
2+
stork:
3+
app_types:
4+
- StorkApp
5+
content_directory: ${ROOT_DIR}/doc/content
6+
log_default: WARNING

stork/doc/sqa_reports.yml.module

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Applications:
2+
stork:
3+
exe_directory: ${MOOSE_DIR}/modules/stork
4+
app_types:
5+
- StorkApp
6+
content_directory: ${MOOSE_DIR}/modules/stork/doc/content
7+
unregister:
8+
- ${MOOSE_DIR}/framework/doc/unregister.yml
9+
remove:
10+
- ${MOOSE_DIR}/framework/doc/remove.yml

0 commit comments

Comments
 (0)