Skip to content

Commit

Permalink
minor, dictionary representation
Browse files Browse the repository at this point in the history
  • Loading branch information
kumiori committed Dec 5, 2024
1 parent 9eb80ae commit ee55b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ These numerical tools can be used to study general evolutionary problems formula

Our solvers are written in `Python` and are built on `DOLFINx`, an expressive and performant parallel distributed computing environment for solving partial differential equations using the finite element method [@dolfinx2023preprint]. It enables us wrapping high-level functional mathematical constructs with full flexibility and control of the underlying linear algebra backend. We use PETSc [@petsc-user-ref], petsc4py [@dalcinpazklercosimo2011], SLEPc.EPS [@hernandez:2005-slepc], and dolfiny [@Habera:aa] for parallel scalability.

Our solver's API receives an abstract energy functional, a user-friendly description of the state of the system as a dictionary (u, alpha), where the first element is associated to the reversible field and the second to the irreversible component, the associated constraints on the latter, and the solver's parameters (see an example in the [Addendum](https://doi.org/10.5281/zenodo.14222736)). Solvers can be instantiated calling
Our solver's API receives an abstract energy functional, a user-friendly description of the state of the system as a dictionary `{"u": u, "alpha": alpha}`, where the first element is associated to the reversible field and the second to the irreversible component, the associated constraints on the latter, and the solver's parameters (see an example in the [Addendum](https://doi.org/10.5281/zenodo.14222736)). Solvers can be instantiated calling

```
solver = {Hybrid,Bifurcation,Stability}Solver(
Expand Down

0 comments on commit ee55b98

Please sign in to comment.