The Alicorn.jl package
Dynamically define and manipulate physical units and quantities in Julia
The Alicorn package serves a dual purpose:
- Dynamically define and combine physical units based on the International System of Units (SI). This functionality is provided by the
Unitssubmodule. - Handle physical quantities and correctly treat their units. This functionality is provided by the
Quantitiessubmodule.
Documentation
This documentation is divided into two parts: The Manual describes how to use Alicorn to define units and handle physical quantities. The Reference documents all types, methods, and constants that form the public API of Alicorn.
Features
- Alicorn represents units as objects of type
AbstractUnitwith suitable methods to create and manipulate them - Alicorn represents quantities as objects of type
AbstractQuantityfor scalars andAbstractQuantityArrayfor vectors and matrices, with suitable methods to create and manipulate them - Units can be combined and quantities formed using intuitive arithmetic syntax, no parsing of strings representing units is required
- New units can be dynamically defined during runtime, no manipulation of source files or configuration files is required
- Alicorn provides two concrete implementations of
AbstractQuantityandAbstractQuantityArray: First,SimpleQuantityandSimpleQuantityArray, which explicitly contain a physical unit and is therefore easy to read and interpret. Second,QuantityandQuantityArray, which store only the physical dimension and reference a common set ofInternalUnits. This structure reduces the need for unit conversions and is therefore particularly useful in larger numerical operations. - Both kinds of quantities can be freely combined to allow intuitive manipulation of quantities.
Installation
The Alicorn.jl package is registered in the General Julia registry and can be installed using Julia's package manager Pkg.jl: In the Julia REPL, add Alicorn to your default Julia environment by running
julia> ]
pkg> add AlicornQuick Start
The listing below shows a minimal example of how to use Alicorn. Refer to the Basic Usage section for more details.
First, let us calculate a force as a SimpleQuantity:
julia> using Alicorn
julia> ucat = UnitCatalogue() ;
julia> mass = 2 * (ucat.kilo * ucat.gram)
2 kg
julia> acceleration = 10 * ucat.meter * ucat.second^-2
10 m s^-2
julia> force = mass * acceleration
20 kg m s^-2
julia> inUnitsOf(force, ucat.kilo * ucat.newton)
0.02 kNWe can perform the same caluclation using Quantity, choosing a set of InternalUnits first:
julia> using Alicorn
julia> ucat = UnitCatalogue() ;
julia> intu = InternalUnits(mass = 2 * ucat.gram ) ;
julia> mass = Quantity(2 * (ucat.kilo * ucat.gram), intu)
Quantity{Int64} of dimension M^1 in units of (2 g):
1000
julia> acceleration = Quantity(10 * ucat.meter * ucat.second^-2, intu)
Quantity{Int64} of dimension L^1 T^-2 in units of (1 m, 1 s):
10
julia> force = mass * acceleration
Quantity{Int64} of dimension M^1 L^1 T^-2 in units of (2 g, 1 m, 1 s):
10000
julia> inUnitsOf(force, ucat.kilo * ucat.newton)
0.02 kNAlternative
If you are interested in Alicorn, also have a look at the mature Unitful.jl package. Unitful.jl offers functionalities similar to Alicorn.jl, and more.