- Update to compute results shown in: https://arxiv.org/abs/2303.11344 .
- Added particle_type = 'mdm', 'edm' options for calculation of the absorption rate of DM coupling to electron MDM/EDM.
- Added a new type of electronic state approximation, 'elec_state_atomic_type', which has two sub-types corresponding to bound states expanded in an STO basis, 'elec_state_atomic_STO_basis_type', and proper continuum, Coloumb wave function states which solve V = -Z/r, 'elec_state_atomic_continuum_type'. These are suitable for describing an 'atomic target', see the above paper for more details.
- These states are defined by the property that they can be written as \psi(x) = R(r) Y(\theta, \phi), where Y are spherical harmonics. Future subtypes may be incorporated if they provide a 'compute_radial_wf' and 'compute_wf' procedure.
- These are currently only used in absorption rate calculations.
- Added a new method for computing transition matrix elements between atomic states, in the q -> 0 limit.
- Currently, only transitions from atomic states to atomic states are supported, i.e., there is no way to calculation bloch state -> atomic state, or vice versa. Additionally, only initial STO -> final continuum is supported since the STO basis provides a nice analytic formula for the first and second derivatives. Initial atomic STO -> final atomic STO may be added with relative ease, whereas initial continuum -> continuum would be more difficult (although it is unclear what circumstance that would be important).
- Added new self-energy, and corresponding absorption rate, calculations for the MDM/EDM models.
- Added atomic target and crystal target EDM absorption examples.
- Updated input file documentation.
- Release of v1.0.0 to accompany the user manual: https://arxiv.org/abs/2210.14917.
- New Electronic Configuration file
- Contains all the relevant information about the electronic configuration, no more need to separate ‘core’, ‘free’, and ‘valence and conduction’ states
- Extended absorption and dielectric calculations
- Include all states (e.g. core and free)
- Separated electronic state and calculation dependence
- Generalized input electronic states, initial/final states can now be specified in different bases, i.e., PW basis, STO basis, or single PW’s (previously ‘free’ states)
- For example, allows for calculation of STO basis → STO basis transitions
- Easily add different bases
- Only need to specify how matrix elements are computed for a specific approximation of the wave functions, the ‘particle physics’ part of the code base doesn’t need to change
- Generalized input electronic states, initial/final states can now be specified in different bases, i.e., PW basis, STO basis, or single PW’s (previously ‘free’ states)
- Automatically generated input documentation
- Increased use of CMake and preprocessor directives
- Version number automatically passed to program and documentation
- Use hdf5_utils for even easier access to data inside an hdf5 file
- Building new documentation with Sphinx
- Improved parallelizability
-
Everything is parallelized over total number of transitions
-
All calculations use MPI_Reduce commands
-
- Removed dependence on k_weight which only caused confusion (sum to 1 or 2?)
- New input format - Configuration File
- Major reasons
-
Dynamically sized 1D arrays
- No need to specify number of elements in an input array
-
Enforced defaults
-
Easily add documentation
-
Split in to as many files as you want
-
- Minor reasons
- No need for ! at end of file
- Major reasons
- Added many new examples which all use the new input, and electronic configuration files.
- Updated calculation of some self energies to avoid numerically small numbers. For example, the dielectric computed with either ( \Pi_{1, 1} ) or ( \Pi_{v^i, v^j} ) is identical.
- Added the calculation of ( \Pi_{\mathbf{v} \cdot \sigma, \mathbf{v} \cdot \sigma} ).
- Used in generalizing the pseudoscalar absorption rate for spin dependent wave functions.
- Added a timer type for more granular timing data.
- Complete rework of examples so each example has a specific ID and
readme.mddescription file.- Removed tests in favor of a script which runs all the examples,
examples/run_all_examples.sh.
- Removed tests in favor of a script which runs all the examples,
- Speed improvement of the dielectric calculation in the scattering ( ( q \gg \omega ) ) regime.
- Minor updates to
dm_modelandPW_datasettypes - Added routine to find the maximum momentum transfer within the 1BZ,
get_q_max_1BZ. - Generalized dielectric inputs, anisotropic dielectrics in each (q, omega) bin are now accepted. See the
Dielectric Data Filedocumentation for more details. - Added
cc_extcalculation mode, a new way to compute the core -> conduction contribution which allows the q range to extend to the kinematic bound. - Added a new integration routine when going from differential quantities such as ( \frac{dR}{d \omega} ), ( \frac{dR}{dq} ) to the binned values.
- Added timing information to printed and saved output.
- Updated documentation.
- Fixed bug with
Ef_maxcutoff by shifting valence band maximum to be the zero-point energy. - Updated build system to
CMake, removing FoBiS entirely. - The OpenMPI subroutine,
MPI_Reduceis used when appropriate verus manual send and recieve calls.- Currently implemented in scattering rate and dielectric calculations
- Temporary file is deleted when creating the core electron configuration file with
utilities/core_elec_config/create_elec_config.ipynb - Removed
TODO.mdwhich was not being used (may reintroduce in the future if it becomes useful). - Updated the
binned_wfcutility. - Added documentation for the
binned_wfcutility. - Optimized dielectric calculation, improved binned procedure to save memory.
- Update to documentation and refactored main folder.
- Added home page to
README.md.
- Added the option to build with
cmake. This will become the default build option inv1.0.0. Installation instructions can be found ininstall-cmake.mdor on the website. - Communication of scattering rate data is now done with an
MPI_Reducecommand versus manual send and recv calls. - Added a timing subroutine when computing the dielectric.
- Miscellaneous updates to documentation.
- Minor bug fixes: some variables were not saving to the output files.
- Major code refactor and other miscellaneous improvements on the way to v1.0.0
- Changed valence -> conduction parallelization scheme from {i, i'} -> {i, k}, allowing for significant speedups when ( number of valence bands ) x ( number of conduction bands ) < ( number of processors )
- Added
n_val_max,n_cond_maxoptions to specify the maximum number of valence and conduction bands to keep in the calculation (valence -> conduction scattering, absorption, and dielectric calculations).n_val_maxcounts down from the Fermi surface andn_cond_maxcounts up from the Fermi surface. - Changed core -> conduction parallelization scheme from {i, i'} -> {i, kf}, allowing for significant speedups when ( number of core states ) x ( number of conduction bands ) < ( number of processors )
- Added
n_prinicipal_min,n_principal_maxto set the minimum and maximum principal quantum numbers to include in scattering rate calculations involving core initial states. - Changed valence -> free parallelization scheme to {i, k}.
- Changed absorption parallelization scheme to {i, k}
- Added option to skip saving transition form factors in absorption calculation.
- Reworked dielectric calculation, added more namelist input options.
- Changed dielectric parallelization scheme from {i, i'} -> {i, k}, allowing for significant speedups when ( number of valence bands ) x ( number of conduction bands ) < ( number of processors )
- Added
dielectricprocess which computes just the dielectric. - Utilizing
typestructures to make code more modular/reusable. Each type has at least its ownload,save, andprintprocedure.PW_dataset- handles the plane wave Bloch wave function coefficientsdm_model- dark matter model parametersmaterial- collection of target material parametersexpt- experimental parameterscore_electron- Core electron configuration and STO wave function coefficients for the core electrons- and more!
- Output scattering rate units are now cm^(-2), for easier conversion to cross section constraints.
- Output absorption rates are total rates given use specified experimental masses and exposures.
EXCEED-DMversion is now written to output for easy comparison with previous and future versions.- Added
k_subgroup to Bloch coefficient data structure for easy access to the wave function coefficients at a giveni,k.- Updated example files in
examples/dftaccordingly.
- Updated example files in
- Updated core electron configuration file specification
- Updated example files in
examples/(Si, Ge)/coreaccordingly. - Updated
utilities/create_elec_config.ipynb.
- Updated example files in
- Added example input files for Germanium.
- Improved/standardized output printing with an
info_messagesmodule. - Improved comments inside the code, many variable explanations have associated LaTeX'ed equations which can be read by viewing the documentation in a browser.
- Major update to documentation. Check it out here folder.
- All modules, procedures, and types have some documentation.
- Specific documentation pages for all input and output files.
/examples/Si/dft/Si_2x2x2_AE_spin.hdf5are now realistic spin dependent wave function coefficients for Si (just spin-independent ones doubled.).- Added preliminary logo,
docs/media/exdm-prelim-logo.png.
- Reworked the implementation of the vector/pseudoscalar DM absorption calculation.
- Fixed bug in absorption rate calculation introduced in v0.2.3 which overwrote the main processors transition form factors when computing the self energies.
- Calculation of the dielectric for targets with spin-dependent wave functions is now supported.
- Added routine to time the dielectric calculation.
- Added
spin_degenwhich accounts for the spin degeneracy factor of the initial (valence) states. - Added
scalar_LOabsorption calculation mode to just compute the leading order contribution for scalar DM absorption. - Generalized vector/pseudoscalar DM absorption calculation for anisotropic targets.
- Self-energy, Pi_vi_vj, is now computed along with the other self energies.
- Implemented routine to rigorously find maximum magnitude of q for which an FFT will give consistent results across meshes. See
find_q_max_FFTroutine inFFT_util. - Updated
install.md
- Improvements to
absorptionmodule.- Initial support for spin-dependent wave functions.
- More general transition form factors can be computed.
- Parallelization of velocity integral
- Initial support for spin-dependent wave functions.
- LAPACK and BLAS are now required. Additional installation instructions have been added to the
ubuntu-gnubuild. q_s_FFThas been removed as anumericsinput option. This is now computed directly withLAPACKroutines.
- Added a
dielectricmodule which computes the dielectric in the scattering kinematic regime.- To screen the rate with a numeric dielectric model, set
screen_type = numeric. - If
load_dielectric_from_file = .FALSE., the dielectric will be computed from scratch. Otherwise the screening factor will come from the dielectric matrix in thedielectric_filenamefile. - Variables relevant for the calculation are loaded through the
dielectricnamelist. Check out examples in theexamples/folder. - Note: the dielectric here is only used to screen. Currently only v -> c transitions are included in the loop. For now, spin-indpendent wave functions only.
- To screen the rate with a numeric dielectric model, set
- Added
ubuntu-gnu-debugbuild mode to debug with.
- Calculation of dark matter (scalar, pseudoscalar (axion-like), vector) absorption on electrons!
- Compute the absorption rate, self-energies, and generalized crystal form factors in the absorption limit.
- Setting
process = 'absorption'in the input file switches the calculation to absorption mode. Check out examples in theexamples/folder. - Set a variety of electron lifetime/width parameters,
width = min( a + b omega , width_max ) - See https://arxiv.org/abs/2106.12586 for details of the formulation.
- (Currently only spin-independent, valence -> conduction transitions are supported.)
- Partial implementation of general transition form factor in module
transition_form_factor.- Compute scattering rates for interactions that depend on electron spin with spin-dependent electronic wave functions.
- Support for valence -> conduction transitions.
- Note : default is to compute spin-independent scattering rates
- Added simple testing routines which will help make sure new additions do not break old functionality.
- Run test with
FoBiS.py rule -ex tests. - To add new tests just add files to the list inside
tests/run_tests.sh
- Run test with
- Updated documentation
- Added functionality for spin dependent (two component) wave functions!
- Automatically detect whether input DFT data has spin dependence.
- Valence -> conduction transition rates can be computed with spin dependent wave functions.
- Added example input file for Si which has spin dependent wave functions.
- When timer = .TRUE. a smaller version of the program will be run before the main program, and an estimate of the run time of the full program will be printed.
- Improved output printing.
- Updated Si example input files to use file paths relative to the main folder.
- Initial beta release.