home
about
news
download
doc
source
systems
tests
bugs
contact
IMP Reference Guide
develop.d97d4ead1f,2024/11/21
The Integrative Modeling Platform
IMP Manual
Reference Guide
Tutorial Index
Modules
Classes
Examples
include
IMP
atom
version 20241121.develop.d97d4ead1f
atom/constants.h
Go to the documentation of this file.
1
/**
2
* \file IMP/atom/constants.h
3
* \brief Define various useful constants for atomic simulations.
4
*
5
* Copyright 2007-2022 IMP Inventors. All rights reserved.
6
*
7
*/
8
9
#ifndef IMPATOM_CONSTANTS_H
10
#define IMPATOM_CONSTANTS_H
11
12
#include <IMP/atom/atom_config.h>
13
14
IMPATOM_BEGIN_NAMESPACE
15
//! Return kT for a given temperature in units of [kcal/mol].
16
/** Value taken from
17
\external{https://en.wikipedia.org/wiki/Boltzmann_constant,Wikipedia}.
18
*/
19
inline
double
get_kt
(
double
T) {
return
0.0019872041 * T; }
20
21
IMPATOM_END_NAMESPACE
22
23
#endif
/* IMPATOM_CONSTANTS_H */
IMP::atom::get_kt
double get_kt(double T)
Return kT for a given temperature in units of [kcal/mol].
Definition:
atom/constants.h:19