Documentation | Build Status | Others |
---|---|---|
The code, which is hosted on GitHub, is tested using various continuous integration services for its validity.
This repository is created and maintained by @singularitti, and contributions are highly welcome.
This package implements some equations of state (EOS) of solids which are useful in research. It currently includes:
Murnaghan1st
EOS- Birch–Murnaghan EOS family:
BirchMurnaghan2nd
BirchMurnaghan3rd
BirchMurnaghan4th
Vinet
EOS- Poirier–Tarantola EOS family:
PoirierTarantola2nd
PoirierTarantola3rd
This package also includes linear and nonlinear fitting methods. The formulae are referenced from Ref. 1.
- Calculate the energy, pressure, and bulk modulus of an
EquationOfStateOfSolid
on a volume (an array of volumes). - Fit an
EquationOfStateOfSolid
on a series ofE(V)
data using the least-squares fitting method or a linear fitting method. - Find the corresponding volume of energy, or pressure, given an
EquationOfStateOfSolid
. - Handle unit conversion automatically in the above features.
The old EquationsOfState.jl package has been superseded by EquationsOfStateOfSolids.jl. So please just use EquationsOfStateOfSolids.jl.
The package can be installed with the Julia package manager.
From the Julia REPL, type ]
to enter the Pkg REPL mode and run:
pkg> add EquationsOfStateOfSolids
Or, equivalently, via the Pkg
API:
julia> import Pkg; Pkg.add("EquationsOfStateOfSolids")
- STABLE — documentation of the most recently tagged version.
- DEV — documentation of the in-development version.
The package is developed for and tested against Julia v1.6
and above on Linux, macOS, and
Windows.
You can post usage questions on our discussion page.
We welcome contributions, feature requests, and suggestions. If you encounter any problems, please open an issue. The Contributing page has a few guidelines that should be followed when opening pull requests and contributing code.