forked from idaholab/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganizing documentation. Refs #3.
- Loading branch information
1 parent
aa2235e
commit 8d44bce
Showing
8 changed files
with
88 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# MASTODON publications | ||
|
||
## Journal papers | ||
|
||
## Conference papers | ||
|
||
## Reports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
!row! class=row | ||
|
||
!col! small=12 medium=4 large=4 | ||
## Usage | ||
|
||
- [Theory manual](manuals/theory/index.md) | ||
- [User manual](manuals/user/index.md) | ||
- [Syntax](syntax/index.md) | ||
- [Peacock](peacock.md) | ||
|
||
!col-end! | ||
|
||
!col! small=12 medium=4 large=4 | ||
## Development | ||
|
||
- [Developers manual](manuals/developer/index.md) | ||
- [MOOSE Doxygen](https://mooseframework.org/docs/doxygen/moose/classes.html) | ||
|
||
!col-end! | ||
|
||
!col! small=12 medium=4 large=4 | ||
## Demonstration | ||
|
||
- [Examples](examples/index.md) | ||
- [Publications](publications.md) | ||
|
||
!col-end! | ||
!row-end! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## Installation | ||
|
||
The MASTODON source code is available on [GitHub](https://github.com/idaholab/mastodon) and must be downloaded and compiled | ||
before using. Instructions for downloading and installing MASTODON are below. | ||
|
||
!alert warning title=No Mac OS 10.15 (Catalina) support at this time | ||
There are numerous changes with this operating system that we are working through including | ||
the removal of all 32-bit libraries, a new default shell, and changes to Python. Do NOT upgrade | ||
your system if you are developing or running MOOSE or MOOSE-based applications. | ||
|
||
- +MacOS+ | ||
|
||
- [Mojave](getting_started/macos_mojave.md) | ||
- [High Sierra or older](getting_started/macos_other.md) | ||
|
||
- +Linux+ | ||
|
||
- [Ubuntu](getting_started/ubuntu.md) | ||
|
||
- +Windows 10+ | ||
|
||
- Windows 10 installation is possible, but is experimental and currently not supported. For | ||
Windows 10 installation instructions, we recommend reaching out to the MASTODON team [here](help/contact_us.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
!include installation/macos_mojave.md end=install_moose.md | ||
!include installation/macos_mojave.md end=install | ||
|
||
!include getting_started/mastodon.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# Developer Manual | ||
|
||
This manual provides the information needed for developers of MASTODON. This | ||
manual is actively being improved and more information is being added to make it | ||
more useful. Interested developers are therefore requested to reach out to the | ||
team as mentioned [here](contact_us.md). | ||
|
||
!include include/developer/development.md | ||
|
||
!include include/developer/documentation.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Developing new objects | ||
|
||
MASTODON is built upon the [MOOSE Framework](https://mooseframework.inl.gov) and | ||
therefore uses the MOOSE architecture and protocols for development. Developers therefore are highly | ||
encouraged to look into the MOOSE Framework and also reach out to the MASTODON team [here](help/contact_us.md) when | ||
planning to develop new objects. Development and inclusion of a new object (material, boundary condition, etc.) in MASTODON (or MOOSE) involves the following steps: | ||
|
||
|
||
- Writing the code | ||
- Writing the documentation, which includes | ||
|
||
- Syntax information | ||
- Theory and references in the theory manual | ||
- Usage instructions in the user manual | ||
|
||
- Examples, if any | ||
- Creating test problems that will be included in the list of tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters