QuantumESPRESSOBase
module
Types
QuantumESPRESSOBase.QuantumESPRESSOInput
— TypeRepresent input files of executables (such as pw.x
and cp.x
).
Methods
QuantumESPRESSOBase.getoption
— Functiongetoption(card::Card)
Return a String
representing the option of a Card
.
Do not use card.option
to access the option since it may not exist.
QuantumESPRESSOBase.optionpool
— Functionoptionpool(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")