├── COPYING.txt ├── LICENSE.txt ├── Readme.md ├── benchmark ├── hubbard_atom_two_bathsites │ ├── calc.py │ └── plot.py ├── non_interacting_dimer │ └── Non-interacting dimer tutorial.ipynb └── spinless │ ├── calc.py │ └── plot.py ├── doc ├── Documentation.ipynb ├── figure_densdens_tau.png ├── figure_g3pp_tau.png ├── figure_g_iwn.png └── figure_g_tau.png ├── pyed ├── CubeTetras.py ├── GfUtils.py ├── OperatorUtils.py ├── ParameterCollection.py ├── SparseExactDiagonalization.py ├── SparseMatrixFockStates.py ├── SquareTriangles.py ├── TriqsExactDiagonalization.py ├── __init__.py └── tests │ ├── test_G_tau_and_G_iw.py │ ├── test_operator_utils.py │ ├── test_sparse_matrix_fockstates.py │ ├── test_two_particle_greens_function.py │ └── transform_kanamori.py └── setup.py /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/Readme.md -------------------------------------------------------------------------------- /benchmark/hubbard_atom_two_bathsites/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/benchmark/hubbard_atom_two_bathsites/calc.py -------------------------------------------------------------------------------- /benchmark/hubbard_atom_two_bathsites/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/benchmark/hubbard_atom_two_bathsites/plot.py -------------------------------------------------------------------------------- /benchmark/non_interacting_dimer/Non-interacting dimer tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/benchmark/non_interacting_dimer/Non-interacting dimer tutorial.ipynb -------------------------------------------------------------------------------- /benchmark/spinless/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/benchmark/spinless/calc.py -------------------------------------------------------------------------------- /benchmark/spinless/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/benchmark/spinless/plot.py -------------------------------------------------------------------------------- /doc/Documentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/doc/Documentation.ipynb -------------------------------------------------------------------------------- /doc/figure_densdens_tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/doc/figure_densdens_tau.png -------------------------------------------------------------------------------- /doc/figure_g3pp_tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/doc/figure_g3pp_tau.png -------------------------------------------------------------------------------- /doc/figure_g_iwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/doc/figure_g_iwn.png -------------------------------------------------------------------------------- /doc/figure_g_tau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/doc/figure_g_tau.png -------------------------------------------------------------------------------- /pyed/CubeTetras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/CubeTetras.py -------------------------------------------------------------------------------- /pyed/GfUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/GfUtils.py -------------------------------------------------------------------------------- /pyed/OperatorUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/OperatorUtils.py -------------------------------------------------------------------------------- /pyed/ParameterCollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/ParameterCollection.py -------------------------------------------------------------------------------- /pyed/SparseExactDiagonalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/SparseExactDiagonalization.py -------------------------------------------------------------------------------- /pyed/SparseMatrixFockStates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/SparseMatrixFockStates.py -------------------------------------------------------------------------------- /pyed/SquareTriangles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/SquareTriangles.py -------------------------------------------------------------------------------- /pyed/TriqsExactDiagonalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/TriqsExactDiagonalization.py -------------------------------------------------------------------------------- /pyed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyed/tests/test_G_tau_and_G_iw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/tests/test_G_tau_and_G_iw.py -------------------------------------------------------------------------------- /pyed/tests/test_operator_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/tests/test_operator_utils.py -------------------------------------------------------------------------------- /pyed/tests/test_sparse_matrix_fockstates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/tests/test_sparse_matrix_fockstates.py -------------------------------------------------------------------------------- /pyed/tests/test_two_particle_greens_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/tests/test_two_particle_greens_function.py -------------------------------------------------------------------------------- /pyed/tests/transform_kanamori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/pyed/tests/transform_kanamori.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoStrand/pyed/HEAD/setup.py --------------------------------------------------------------------------------