Getting started
Add the Finch package using ]add "https://github.com/paralab/Finch"
Alternatively, you can use a local copy of the source by navigating to the directory containing the Finch.jl file and typing include("Finch.jl"); using .Finch
Typically a Julia script file will be created that will perform these tasks in this order.
- Set up configuration.
- Create or import mesh.
- Define variables and other entities.
- Add boundary and initial conditions.
- Input the PDE expressions.
- Solve.
- Process or output the results.
See the example scripts for a more detailed illustration of the structure.