NoseHooverIntegratorProxy.cpp 7.37 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
 * Portions copyright (c) 2010 Stanford University and the Authors.           *
 * Authors: Andrew C. Simmonett, Andreas Krämer                               *
 * Contributors:                                                              *
 *                                                                            *
 * Permission is hereby granted, free of charge, to any person obtaining a    *
 * copy of this software and associated documentation files (the "Software"), *
 * to deal in the Software without restriction, including without limitation  *
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,   *
 * and/or sell copies of the Software, and to permit persons to whom the      *
 * Software is furnished to do so, subject to the following conditions:       *
 *                                                                            *
 * The above copyright notice and this permission notice shall be included in *
 * all copies or substantial portions of the Software.                        *
 *                                                                            *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    *
 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,    *
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR      *
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE  *
 * USE OR OTHER DEALINGS IN THE SOFTWARE.                                     *
 * -------------------------------------------------------------------------- */

#include "openmm/serialization/NoseHooverIntegratorProxy.h"
#include <vector>
#include <OpenMM.h>

using namespace std;
using namespace OpenMM;

NoseHooverIntegratorProxy::NoseHooverIntegratorProxy() : SerializationProxy("NoseHooverIntegrator") {

}

void NoseHooverIntegratorProxy::serialize(const void* object, SerializationNode& node) const {
    node.setIntProperty("version", 1);
    const NoseHooverIntegrator& integrator = *reinterpret_cast<const NoseHooverIntegrator*>(object);
    node.setDoubleProperty("stepSize", integrator.getStepSize());
    node.setDoubleProperty("constraintTolerance", integrator.getConstraintTolerance());
48
    node.setDoubleProperty("maximumPairDistance", integrator.getMaximumPairDistance());
49
50
51
    node.setBoolProperty("hasSubsystemThermostats", integrator.hasSubsystemThermostats());
    if (integrator.hasSubsystemThermostats()) {
        // Serialize all thermostats separately
52
53
        for (int i = 0; i < integrator.getNumThermostats(); i++){
            const auto& chain = integrator.getThermostat(i);
54
            auto& chainNode = node.createChildNode("Thermostat");
55
56
57
58
59
60
61
            chainNode.setDoubleProperty("temperature", chain.getTemperature());
            chainNode.setDoubleProperty("collisionFrequency", chain.getCollisionFrequency());
            chainNode.setDoubleProperty("relativeTemperature", chain.getRelativeTemperature());
            chainNode.setDoubleProperty("relativeCollisionFrequency", chain.getRelativeCollisionFrequency());
            chainNode.setIntProperty("chainLength", chain.getChainLength());
            chainNode.setIntProperty("numMTS", chain.getNumMultiTimeSteps());
            chainNode.setIntProperty("numYS", chain.getNumYoshidaSuzukiTimeSteps());
62
63
64
65
66
67
68
69
70
71
72
73
74
75
            auto& particlesNode = chainNode.createChildNode("ThermostatedAtoms");
            for (int particle: chain.getThermostatedAtoms()){
                particlesNode.createChildNode("Particle").setIntProperty("index", particle);
            }
            auto& pairsNode = chainNode.createChildNode("ThermostatedPairs");
            for (auto& pair: chain.getThermostatedPairs()){
                auto& pairNode = pairsNode.createChildNode("Pair");
                pairNode.setIntProperty("index1", pair.first);
                pairNode.setIntProperty("index2", pair.second);
            }
        }
    } else { // Serialize standard thermostat
        node.setDoubleProperty("temperature", integrator.getTemperature());
        node.setDoubleProperty("collisionFrequency", integrator.getCollisionFrequency());
76
77
78
        node.setIntProperty("chainLength", integrator.getThermostat().getChainLength());
        node.setIntProperty("numMTS", integrator.getThermostat().getNumMultiTimeSteps());
        node.setIntProperty("numYS", integrator.getThermostat().getNumYoshidaSuzukiTimeSteps());
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
    }

}

void* NoseHooverIntegratorProxy::deserialize(const SerializationNode& node) const {
    if (node.getIntProperty("version") != 1)
        throw OpenMMException("Unsupported version number");
    NoseHooverIntegrator* integrator;
    if (node.getBoolProperty("hasSubsystemThermostats")){
        // deserialize all chains
        integrator = new NoseHooverIntegrator(node.getDoubleProperty("stepSize"));
        for (auto& chainNode : node.getChildren()) {
            // particles
            const auto& particlesNode = chainNode.getChildNode("ThermostatedAtoms");
            vector<int> particles;
            for (auto& particleNode: particlesNode.getChildren()){
                particles.push_back(particleNode.getIntProperty("index"));
            }
            // pairs
            const auto& pairsNode = chainNode.getChildNode("ThermostatedPairs");
            vector<pair<int, int>> pairs;
            for (auto& pairNode: pairsNode.getChildren()){
                pairs.emplace_back(pairNode.getIntProperty("index1"), pairNode.getIntProperty("index2"));
            }
            integrator->addSubsystemThermostat(
                particles, pairs, 
                chainNode.getDoubleProperty("temperature"),
                chainNode.getDoubleProperty("collisionFrequency"),
                chainNode.getDoubleProperty("relativeTemperature"),
                chainNode.getDoubleProperty("relativeCollisionFrequency"),
                chainNode.getIntProperty("chainLength"),
                chainNode.getIntProperty("numMTS"),
                chainNode.getIntProperty("numYS")
            );
        }
    } else {
        integrator = new NoseHooverIntegrator(
            node.getDoubleProperty("temperature"),
            node.getDoubleProperty("collisionFrequency"),
            node.getDoubleProperty("stepSize"),
            node.getIntProperty("chainLength"),
            node.getIntProperty("numMTS"),
            node.getIntProperty("numYS")
        );
    }
    integrator->setConstraintTolerance(node.getDoubleProperty("constraintTolerance"));
125
    integrator->setMaximumPairDistance(node.getDoubleProperty("maximumPairDistance"));
126
127
128

    return integrator;
}