/* -------------------------------------------------------------------------- * * 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-2024 Stanford University and the Authors. * * Authors: Andrew C. Simmonett and Andreas Kraemer * 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/internal/AssertionUtilities.h" #include "openmm/DrudeNoseHooverIntegrator.h" #include "ReferencePlatform.h" #include "openmm/serialization/XmlSerializer.h" #include "openmm/System.h" #include "openmm/DrudeForce.h" #include "openmm/Context.h" #include #include using namespace OpenMM; using namespace std; extern "C" void registerDrudeSerializationProxies(); //extern "C" OPENMM_EXPORT void registerDrudeReferenceKernelFactories(); //extern "C" OPENMM_EXPORT void registerKernelFactories(); void assertIntegratorsEqual(const DrudeNoseHooverIntegrator& integrator1, const DrudeNoseHooverIntegrator& integrator2){ ASSERT_EQUAL(integrator1.getStepSize(), integrator2.getStepSize()); ASSERT_EQUAL(integrator1.getConstraintTolerance(), integrator2.getConstraintTolerance()); ASSERT_EQUAL(integrator1.getMaximumPairDistance(), integrator2.getMaximumPairDistance()); ASSERT_EQUAL(integrator1.getNumThermostats(), integrator2.getNumThermostats()); ASSERT_EQUAL(integrator1.getIntegrationForceGroups(), integrator2.getIntegrationForceGroups()); for (int i = 0; i < integrator1.getNumThermostats(); i++) { const auto &thermostat1 = integrator1.getThermostat(i); const auto &thermostat2 = integrator2.getThermostat(i); ASSERT_EQUAL(thermostat1.getTemperature(), thermostat2.getTemperature()); ASSERT_EQUAL(thermostat1.getCollisionFrequency(), thermostat2.getCollisionFrequency()); ASSERT_EQUAL(thermostat1.getRelativeTemperature(), thermostat2.getRelativeTemperature()); ASSERT_EQUAL(thermostat1.getRelativeCollisionFrequency(), thermostat2.getRelativeCollisionFrequency()); ASSERT_EQUAL(thermostat1.getChainLength(), thermostat2.getChainLength()); ASSERT_EQUAL(thermostat1.getNumMultiTimeSteps(), thermostat2.getNumMultiTimeSteps()); ASSERT_EQUAL(thermostat1.getNumYoshidaSuzukiTimeSteps(), thermostat2.getNumYoshidaSuzukiTimeSteps()); ASSERT_EQUAL(thermostat1.getChainID(), thermostat2.getChainID()); const auto &thermostat1Atoms = thermostat1.getThermostatedAtoms(); const auto &thermostat2Atoms = thermostat2.getThermostatedAtoms(); ASSERT_EQUAL(thermostat1Atoms.size(), thermostat2Atoms.size()); for (int j = 0; j < thermostat1Atoms.size(); ++j) { ASSERT_EQUAL(thermostat1Atoms[j], thermostat2Atoms[j]); } const auto &thermostat1Pairs = thermostat1.getThermostatedPairs(); const auto &thermostat2Pairs = thermostat2.getThermostatedPairs(); ASSERT_EQUAL(thermostat1Pairs.size(), thermostat2Pairs.size()); for (int j = 0; j < thermostat1Pairs.size(); ++j) { ASSERT_EQUAL(thermostat1Pairs[j].first, thermostat2Pairs[j].first); ASSERT_EQUAL(thermostat1Pairs[j].second, thermostat2Pairs[j].second); } } } void testSerialization() { // Check with default constructor System system; system.addForce(new DrudeForce()); for (int i=0; i<10; i++) system.addParticle(1.0); DrudeNoseHooverIntegrator integrator(331, 0.21, 1.1, 0.1, 0.004, 5, 5, 5); integrator.setIntegrationForceGroups(3); // Serialize and then deserialize it. stringstream buffer2; XmlSerializer::serialize(&integrator, "Integrator", buffer2); DrudeNoseHooverIntegrator* copy = XmlSerializer::deserialize(buffer2); ASSERT_EQUAL(copy->getThermostat(0).getThermostatedAtoms().size(), 0); assertIntegratorsEqual(integrator, *copy); } int main() { try { testSerialization(); } catch(const exception& e) { cout << "exception: " << e.what() << endl; return 1; } cout << "Done" << endl; return 0; }