Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.57 KB

File metadata and controls

30 lines (24 loc) · 1.57 KB

MechanicalMaterialModels

Dev Build Status Coverage

MechanicalMaterialModels.jl provides common material models following the MaterialModelsBase.jl interface. See the documentation for the available models.

Installation

The MechanicalMaterialModels.jl package depends on the following unregistered packages:

Those packages, as well as MechanicalMaterialModels.jl itself, is available in knutamregistry. After adding this registry, the MechanicalMaterialModels.jl and its dependencies can be installed as other registered packages, i.e.

using Pkg
Pkg.add("MechanicalMaterialModels")

If the registry is not added, it is necessary to install all non-registered required packages, i.e.

using Pkg
Pkg.add(url="https://github.com/KnutAM/Newton.jl")
Pkg.add(url="https://github.com/KnutAM/MaterialModelsBase.jl")
Pkg.add(url="https://github.com/KnutAM/MechanicalMaterialModels.jl")