(git:374b731)
Loading...
Searching...
No Matches
grid_basis_set.c
Go to the documentation of this file.
1/*----------------------------------------------------------------------------*/
2/* CP2K: A general program to perform molecular dynamics simulations */
3/* Copyright 2000-2024 CP2K developers group <https://cp2k.org> */
4/* */
5/* SPDX-License-Identifier: BSD-3-Clause */
6/*----------------------------------------------------------------------------*/
7
8#include <stdlib.h>
9#include <string.h>
10
11#include "grid_basis_set.h"
12
13/*******************************************************************************
14 * \brief Allocates a basis set which can be passed to grid_create_task_list.
15 * See grid_task_list.h for details.
16 * \author Ole Schuett
17 ******************************************************************************/
18void grid_create_basis_set(const int nset, const int nsgf, const int maxco,
19 const int maxpgf, const int lmin[nset],
20 const int lmax[nset], const int npgf[nset],
21 const int nsgf_set[nset], const int first_sgf[nset],
22 const double sphi[nsgf][maxco],
23 const double zet[nset][maxpgf],
24 grid_basis_set **basis_set_out) {
25
26 grid_basis_set *basis_set = malloc(sizeof(grid_basis_set));
27
28 basis_set->nset = nset;
29 basis_set->nsgf = nsgf;
30 basis_set->maxco = maxco;
31 basis_set->maxpgf = maxpgf;
32
33 size_t size = nset * sizeof(int);
34 basis_set->lmin = malloc(size);
35 memcpy(basis_set->lmin, lmin, size);
36 basis_set->lmax = malloc(size);
37 memcpy(basis_set->lmax, lmax, size);
38 basis_set->npgf = malloc(size);
39 memcpy(basis_set->npgf, npgf, size);
40 basis_set->nsgf_set = malloc(size);
41 memcpy(basis_set->nsgf_set, nsgf_set, size);
42 basis_set->first_sgf = malloc(size);
43 memcpy(basis_set->first_sgf, first_sgf, size);
44 size = nsgf * maxco * sizeof(double);
45 basis_set->sphi = malloc(size);
46 memcpy(basis_set->sphi, sphi, size);
47 size = nset * maxpgf * sizeof(double);
48 basis_set->zet = malloc(size);
49 memcpy(basis_set->zet, zet, size);
50
51 *basis_set_out = basis_set;
52}
53
54/*******************************************************************************
55 * \brief Deallocates given basis set.
56 * \author Ole Schuett
57 ******************************************************************************/
59 free(basis_set->lmin);
60 free(basis_set->lmax);
61 free(basis_set->npgf);
62 free(basis_set->nsgf_set);
63 free(basis_set->first_sgf);
64 free(basis_set->sphi);
65 free(basis_set->zet);
66 free(basis_set);
67}
68
69// EOF
void grid_create_basis_set(const int nset, const int nsgf, const int maxco, const int maxpgf, const int lmin[nset], const int lmax[nset], const int npgf[nset], const int nsgf_set[nset], const int first_sgf[nset], const double sphi[nsgf][maxco], const double zet[nset][maxpgf], grid_basis_set **basis_set_out)
Allocates a basis set which can be passed to grid_create_task_list. See grid_task_list....
void grid_free_basis_set(grid_basis_set *basis_set)
Deallocates given basis set.
Internal representation of a basis set.