2017-07-19 07:34:38 +03:00
# JuliaFEM.jl documentation
```@contents
2017-08-05 12:00:16 +03:00
Pages = ["index.md", "api.md"]
2017-07-19 07:34:38 +03:00
` ``
2017-08-05 12:00:16 +03:00
The JuliaFEM project develops open-source software for reliable, scalable,
distributed Finite Element Method.
2017-07-19 07:34:38 +03:00
2017-08-05 12:00:16 +03:00
The JuliaFEM software library is a framework that allows for the distributed
processing of large Finite Element Models across clusters of computers using
simple programming models. It is designed to scale up from single servers to
thousands of machines, each offering local computation and storage. The basic
design principle is: everything is nonlinear. All physics models are nonlinear
from which the linearization are made as a special cases.
2017-07-19 07:34:38 +03:00
2017-08-05 12:00:16 +03:00
## Installing and testing package
2017-07-19 07:34:38 +03:00
2017-08-05 12:00:16 +03:00
Installing package goes same way like other packages in julia, i.e.
` ``julia
julia> Pkg.add("JuliaFEM")
2017-07-21 00:40:52 +03:00
` ``
2017-07-19 07:34:38 +03:00
2017-08-05 12:00:16 +03:00
Testing package can be done using ` Pkg.test`, i.e.
` ``julia
julia> Pkg.test("JuliaFEM")
2017-07-19 07:34:38 +03:00
` ``
2017-08-05 12:00:16 +03:00
## Contributing
Have a new great idea and want to share it with the open source community?
From [here ](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md )
and [here ](https://juliadocs.github.io/Documenter.jl/stable/man/contributing/ )
you can look for coding style. [Here ](https://docs.julialang.org/en/stable/manual/packages/#Making-changes-to-an-existing-package-1 ) is explained how to contribute to
open source project, in general.