tblite
Light-weight tight-binding framework
Loading...
Searching...
No Matches
solvation.h
Go to the documentation of this file.
1/* This file is part of tblite.
2 * SPDX-Identifier: LGPL-3.0-or-later
3 *
4 * tblite is free software: you can redistribute it and/or modify it under
5 * the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * tblite is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with tblite. If not, see <https://www.gnu.org/licenses/>.
16**/
17
24#pragma once
25
26#include "tblite/macros.h"
27#include "tblite/structure.h"
28#include "tblite/context.h"
29#include "tblite/container.h"
30
33 tblite_state_gsolv = 1,
34 tblite_state_bar1mol = 2,
35 tblite_state_reference = 3,
36};
37
38enum tblite_born_kernel{
39 tblite_born_still = 1,
40 tblite_born_p16 = 2,
41};
42
43enum tblite_solvation_param{
44 tblite_solvation_gbe = 10,
45 tblite_solvation_alpb_gfn1 = 11,
46 tblite_solvation_alpb_gfn2 = 12,
47 tblite_solvation_gb = 20,
48 tblite_solvation_gbsa_gfn1 = 21,
49 tblite_solvation_gbsa_gfn2 = 22,
50};
51
61 double eps);
62
74 double eps,
75 int version,
76 int born);
77
89 char* solvent,
90 int version,
91 int refstate);
Provides an interaction container which can be added to a tblite_calculator.
struct _tblite_container * tblite_container
Interaction container.
Definition container.h:31
Provides a persistent configuration object to modify the behaviour of a calculation....
struct _tblite_error * tblite_error
Error instance.
Definition error.h:35
General macro definitions for the tblite C API bindings.
#define TBLITE_API_ENTRY
Definition macros.h:49
#define TBLITE_API_CALL
Definition macros.h:57
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_gb_solvation_epsilon(tblite_error error, tblite_structure mol, double eps, int version, int born)
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_alpb_solvation_solvent(tblite_error error, tblite_structure mol, char *solvent, int version, int refstate)
tblite_ref_solvation_state
Reference state enumerator.
Definition solvation.h:32
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_cpcm_solvation_epsilon(tblite_error error, tblite_structure mol, double eps)
The structure data tblite_structure is used to represent the system of interest in the library.
struct _tblite_structure * tblite_structure
Definition structure.h:47