QuantumESPRESSOBase module

Types

Methods

QuantumESPRESSOBase.getoptionFunction
getoption(card::Card)

Return a String representing the option of a Card.

Warning

Do not use card.option to access the option since it may not exist.

source
QuantumESPRESSOBase.optionpoolFunction
optionpool(card::Card)
optionpool(T::Type{<:Card})

Return the allowed options for a Card or a Card type.

Examples

julia> optionpool(AtomicPositionsCard)
("alat", "bohr", "angstrom", "crystal", "crystal_sg")

julia> optionpool(CellParametersCard)
("alat", "bohr", "angstrom")

julia> optionpool(SpecialPointsCard)
("tpiba", "crystal", "tpiba_b", "crystal_b", "tpiba_c", "crystal_c")
source