pyadmd 3.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyadmd/__init__.py +12 -0
- pyadmd/__main__.py +6 -0
- pyadmd/analysis/__init__.py +0 -0
- pyadmd/analysis/analyzer.py +1490 -0
- pyadmd/analysis/completion.py +51 -0
- pyadmd/charmm/charmm_toppar.zip +0 -0
- pyadmd/charmm/wrt-nm.mdu +81 -0
- pyadmd/cli/__init__.py +0 -0
- pyadmd/cli/commands.py +573 -0
- pyadmd/cli/main.py +75 -0
- pyadmd/cli/parser.py +212 -0
- pyadmd/console.py +64 -0
- pyadmd/constants.py +6 -0
- pyadmd/enm/__init__.py +0 -0
- pyadmd/enm/calculator.py +880 -0
- pyadmd/freeenergy/__init__.py +0 -0
- pyadmd/freeenergy/calculator.py +1874 -0
- pyadmd/freeenergy/completion.py +47 -0
- pyadmd/geometry.py +33 -0
- pyadmd/io/__init__.py +0 -0
- pyadmd/io/dcd.py +73 -0
- pyadmd/io/namd.py +266 -0
- pyadmd/io/openmm_restart.py +179 -0
- pyadmd/io/params.py +115 -0
- pyadmd/io/state.py +115 -0
- pyadmd/modes/__init__.py +0 -0
- pyadmd/modes/exciter.py +297 -0
- pyadmd/simulation/__init__.py +0 -0
- pyadmd/simulation/engine.py +372 -0
- pyadmd/simulation/runner.py +868 -0
- pyadmd/simulation/system_builder.py +197 -0
- pyadmd/utils.py +106 -0
- pyadmd-3.0.0.dist-info/METADATA +782 -0
- pyadmd-3.0.0.dist-info/RECORD +38 -0
- pyadmd-3.0.0.dist-info/WHEEL +5 -0
- pyadmd-3.0.0.dist-info/entry_points.txt +2 -0
- pyadmd-3.0.0.dist-info/licenses/LICENSE +674 -0
- pyadmd-3.0.0.dist-info/top_level.txt +1 -0
pyadmd/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""
|
|
2
|
+
The Adaptive Molecular Dynamics with Excited Normal Modes (aMDeNM) method applies a kinetic excitation of normal modes (NMs)
|
|
3
|
+
to enhance molecular dynamics simulations sampling. This technique consists in injecting additional atomic velocities along
|
|
4
|
+
a combinations of NM vectors, creating an effective coupling between slow and fast molecular motions. The motions described
|
|
5
|
+
by preselected directions of low-frequency NMs are dynamically adjusted throughout the simulation. By coupling low-frequency
|
|
6
|
+
NM excitation with adaptive directional adjustments, aMDeNM facilitates extensive exploration of the energy landscape,
|
|
7
|
+
overcoming the constraints of fixed, rectilinear displacements and alleviating structural stresses and environmental resistance.
|
|
8
|
+
Importantly, aMDeNM requires only an initial structure without the need to specify predefined target states, distinguishing
|
|
9
|
+
it from many biased sampling techniques that rely on predefined target conformations.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "3.0.0"
|
pyadmd/__main__.py
ADDED
|
File without changes
|