(git:ed6f26b)
Loading...
Searching...
No Matches
grpp_specfunc.h
Go to the documentation of this file.
1/*----------------------------------------------------------------------------*/
2/* CP2K: A general program to perform molecular dynamics simulations */
3/* Copyright 2000-2025 CP2K developers group <https://cp2k.org> */
4/* */
5/* SPDX-License-Identifier: MIT */
6/*----------------------------------------------------------------------------*/
7
8/*
9 * libgrpp - a library for the evaluation of integrals over
10 * generalized relativistic pseudopotentials.
11 *
12 * Copyright (C) 2021-2023 Alexander Oleynichenko
13 */
14
15/*
16 * Interface to the MyMathLib library:
17 * http://www.mymathlib.com/
18 */
19
20#ifndef LIBGRPP_SPECFUNC_H
21#define LIBGRPP_SPECFUNC_H
22
23double libgrpp_modified_bessel_scaled(int n, double x);
24
25void libgrpp_gfun_values(double x, int nmax, double *g);
26
27double libgrpp_boys_function(int n, double x);
28
29void libgrpp_boys_values(double x, int nmax, double *b);
30
31double libgrpp_specfunc_fermi_sk(int k, double x);
32
33double libgrpp_Dawsons_Integral(double x);
34
35#endif // LIBGRPP_SPECFUNC_H
double libgrpp_boys_function(int n, double x)
void libgrpp_boys_values(double x, int nmax, double *b)
double libgrpp_modified_bessel_scaled(int n, double x)
double libgrpp_specfunc_fermi_sk(int k, double x)
void libgrpp_gfun_values(double x, int nmax, double *g)
double libgrpp_Dawsons_Integral(double x)