CustomIntegratorProxy.cpp 7.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* -------------------------------------------------------------------------- *
 *                                   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: Peter Eastman, Yutong Zhao                                        *
 * 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/CustomIntegratorProxy.h"
#include <OpenMM.h>

using namespace std;
using namespace OpenMM;

CustomIntegratorProxy::CustomIntegratorProxy() : SerializationProxy("CustomIntegrator") {

}

void CustomIntegratorProxy::serialize(const void* object, SerializationNode& node) const {
    node.setIntProperty("version", 1);
    const CustomIntegrator& integrator = *reinterpret_cast<const CustomIntegrator*>(object);
    SerializationNode& globalVariablesNode = node.createChildNode("GlobalVariables");
    for(int i=0; i<integrator.getNumGlobalVariables(); i++) {
        globalVariablesNode.setDoubleProperty(integrator.getGlobalVariableName(i), integrator.getGlobalVariable(i));
    }
    SerializationNode& perDofVariablesNode = node.createChildNode("PerDofVariables");
    for(int i=0; i<integrator.getNumPerDofVariables(); i++) {
        SerializationNode& perDofValuesNode = perDofVariablesNode.createChildNode(integrator.getPerDofVariableName(i));
        vector<Vec3> perDofValues; integrator.getPerDofVariable(i, perDofValues);
        for(int j=0; j<perDofValues.size(); j++) {
            perDofValuesNode.createChildNode("Value").setDoubleProperty("x",perDofValues[j][0]).setDoubleProperty("y",perDofValues[j][1]).setDoubleProperty("z",perDofValues[j][2]);
        }
    }
    SerializationNode& computationsNode = node.createChildNode("Computations");
    for(int i=0; i<integrator.getNumComputations(); i++) {
        CustomIntegrator::ComputationType computationType;
        string computationVariable;
        string computationExpression;
        integrator.getComputationStep(i, computationType, computationVariable, computationExpression);
        computationsNode.createChildNode("Computation").setIntProperty("computationType",static_cast<int>(computationType))
            .setStringProperty("computationVariable",computationVariable).setStringProperty("computationExpression",computationExpression);
    }
    node.setStringProperty("kineticEnergyExpression",integrator.getKineticEnergyExpression());
    node.setIntProperty("randomSeed",integrator.getRandomNumberSeed());
68
    node.setDoubleProperty("stepSize",integrator.getStepSize());
69
70
71
72
    node.setDoubleProperty("constraintTolerance",integrator.getConstraintTolerance());
}

void* CustomIntegratorProxy::deserialize(const SerializationNode& node) const {
73
    if (node.getIntProperty("version") != 1)
74
        throw OpenMMException("Unsupported version number");
75
    CustomIntegrator* integrator = new CustomIntegrator(node.getDoubleProperty("stepSize"));
76
    const SerializationNode& globalVariablesNode = node.getChildNode("GlobalVariables");
peastman's avatar
peastman committed
77
78
    for (auto& prop : globalVariablesNode.getProperties())
        integrator->addGlobalVariable(prop.first, globalVariablesNode.getDoubleProperty(prop.first));
79
80
    const SerializationNode& perDofVariablesNode = node.getChildNode("PerDofVariables");
    int count = 0;
peastman's avatar
peastman committed
81
82
    for (auto& var : perDofVariablesNode.getChildren()) {
        integrator->addPerDofVariable(var.getName(), 0);
83
        vector<Vec3> perDofValues;
peastman's avatar
peastman committed
84
85
        for (auto& child : var.getChildren())
            perDofValues.push_back(Vec3(child.getDoubleProperty("x"), child.getDoubleProperty("y"), child.getDoubleProperty("z")));
86
        integrator->setPerDofVariable(count, perDofValues);
peastman's avatar
peastman committed
87
        count++;
88
89
    }
    const SerializationNode& computationsNode = node.getChildNode("Computations");
peastman's avatar
peastman committed
90
91
    for (auto& comp : computationsNode.getChildren()) {
        CustomIntegrator::ComputationType computationType = static_cast<CustomIntegrator::ComputationType>(comp.getIntProperty("computationType"));
92
        // make sure that the int casts to a valid enum
peastman's avatar
peastman committed
93
94
95
96
97
98
99
        if (computationType == CustomIntegrator::ComputeGlobal) {
            integrator->addComputeGlobal(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression"));
        } else if (computationType == CustomIntegrator::ComputePerDof) {
            integrator->addComputePerDof(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression"));
        } else if (computationType == CustomIntegrator::ComputeSum) {
            integrator->addComputeSum(comp.getStringProperty("computationVariable"), comp.getStringProperty("computationExpression"));
        } else if (computationType == CustomIntegrator::ConstrainPositions) {
100
            integrator->addConstrainPositions();
peastman's avatar
peastman committed
101
        } else if (computationType == CustomIntegrator::ConstrainVelocities) {
102
            integrator->addConstrainVelocities();
peastman's avatar
peastman committed
103
        } else if (computationType == CustomIntegrator::UpdateContextState) {
104
            integrator->addUpdateContextState();
peastman's avatar
peastman committed
105
106
107
108
109
110
        } else if (computationType == CustomIntegrator::IfBlockStart) {
            integrator->beginIfBlock(comp.getStringProperty("computationExpression"));
        } else if (computationType == CustomIntegrator::WhileBlockStart) {
            integrator->beginWhileBlock(comp.getStringProperty("computationExpression"));
        } else if (computationType == CustomIntegrator::BlockEnd) {
            integrator->endBlock();
111
112
113
114
115
116
117
118
        } else {
            throw(OpenMMException("Custom Integrator Deserialization: Unknown computation type"));
        }
    }
    integrator->setKineticEnergyExpression(node.getStringProperty("kineticEnergyExpression"));
    integrator->setRandomNumberSeed(node.getIntProperty("randomSeed"));
    integrator->setConstraintTolerance(node.getDoubleProperty("constraintTolerance"));
    return integrator;
119
}