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
23
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 tblite_solvation_ddcosmo = 100,
51 tblite_solvation_ddcpcm = 101,
52 tblite_solvation_ddpcm = 200
53};
54
62TBLITE_API_ENTRY tblite_container TBLITE_API_CALL
65 double eps,
66 enum tblite_solvation_param model);
67
75TBLITE_API_ENTRY tblite_container TBLITE_API_CALL
78 char* solvent,
79 enum tblite_solvation_param model);
80
89TBLITE_API_ENTRY tblite_container TBLITE_API_CALL
92 double eps,
93 enum tblite_solvation_param version,
94 enum tblite_born_kernel born);
95
104TBLITE_API_ENTRY tblite_container TBLITE_API_CALL
107 char* solvent,
108 enum tblite_solvation_param version,
109 enum tblite_ref_solvation_state refstate);
Provides an interaction container which can be added to a tblite_calculator.
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_ddx_solvation_solvent(tblite_error error, tblite_structure mol, char *solvent, enum tblite_solvation_param model)
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_alpb_solvation_solvent(tblite_error error, tblite_structure mol, char *solvent, enum tblite_solvation_param version, enum tblite_ref_solvation_state refstate)
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_ddx_solvation_epsilon(tblite_error error, tblite_structure mol, double eps, enum tblite_solvation_param model)
tblite_ref_solvation_state
Reference state enumerator.
Definition solvation.h:32
TBLITE_API_ENTRY tblite_container TBLITE_API_CALL tblite_new_gb_solvation_epsilon(tblite_error error, tblite_structure mol, double eps, enum tblite_solvation_param version, enum tblite_born_kernel born)
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