-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
226 additions
and
165 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
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 |
---|---|---|
@@ -1,32 +1,25 @@ | ||
# Muscade.jl | ||
|
||
```@meta | ||
CurrentModule = Muscade | ||
``` | ||
|
||
# Muscade.jl | ||
## [Purpose](@id purpose) | ||
|
||
Documentation for [Muscade.jl](https://github.com/SINTEF/Muscade.jl). | ||
[Muscade.jl](https://github.com/SINTEF/Muscade.jl) is a framework to support the rapid development of domain-specific, multiphysics optimization-FEM models. | ||
|
||
```@index | ||
``` | ||
Muscade is a framework: it does not provide finite element types modeling any specific domain of physics: rather, it facilitates their development. Using automatic differentiation and automatic result extraction, the code needed to implement new elements is minimized. The API to create new elements is quite classic (given degrees of freedom, compute their duals, aka. residuals): Muscade is not a *modeling language* like for example UFL which provides a formalism in which a "well posed problem" can be defined with domain, differential equations and boundary conditions. | ||
|
||
## [Some chapter](@id some-chapter) | ||
Degrees of freedom (dofs) in Muscade have a `field`: application developers can introduce new fields like (`:tx` for translation in `x` direction, `c` for solute concentration, etc...), and associate a scale to them, to aid solvers handle unknowns of differents orders of magnitudes. This facilitates the implementation of multiphysical models. | ||
|
||
The following is an example of annotated code | ||
Muscade handles optimization-FEM problems, that is, optimization problems constrained by equilibrium of the FEM model. | ||
|
||
```jldoctest EspyDemo; output = false | ||
1+1==2 | ||
# output | ||
true | ||
``` | ||
## [Reference manual](@id reference) | ||
|
||
```julia | ||
some code | ||
```@index | ||
``` | ||
|
||
|
||
## Reference manual | ||
|
||
|
||
```@autodocs | ||
Modules = [Muscade] | ||
Order = [:module,:constant,:type,:function,:macro, :type] | ||
``` |
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
Oops, something went wrong.