├── CMakeLists.txt ├── LICENSE.txt ├── README.md └── src ├── atoms └── pointsets.f90 ├── configuration └── parameters.f90 ├── constants └── constants.f90 ├── ewaldSummation └── ewaldSummation.f90 ├── math ├── linalg.f90 └── random.f90 ├── precision.f90 ├── testEwaldSummation.f90 └── util └── util.f90 /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/README.md -------------------------------------------------------------------------------- /src/atoms/pointsets.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/atoms/pointsets.f90 -------------------------------------------------------------------------------- /src/configuration/parameters.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/configuration/parameters.f90 -------------------------------------------------------------------------------- /src/constants/constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/constants/constants.f90 -------------------------------------------------------------------------------- /src/ewaldSummation/ewaldSummation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/ewaldSummation/ewaldSummation.f90 -------------------------------------------------------------------------------- /src/math/linalg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/math/linalg.f90 -------------------------------------------------------------------------------- /src/math/random.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/math/random.f90 -------------------------------------------------------------------------------- /src/precision.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/precision.f90 -------------------------------------------------------------------------------- /src/testEwaldSummation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/testEwaldSummation.f90 -------------------------------------------------------------------------------- /src/util/util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonas-Finkler/ewald-summation/HEAD/src/util/util.f90 --------------------------------------------------------------------------------