diff --git a/applications/solvers/molecularDynamics/gnemdFoam/Make/files b/applications/solvers/molecularDynamics/gnemdFoam/Make/files new file mode 100755 index 0000000000..b59e704979 --- /dev/null +++ b/applications/solvers/molecularDynamics/gnemdFoam/Make/files @@ -0,0 +1,3 @@ +gnemdFoam.C + +EXE = $(FOAM_APPBIN)/gnemdFoam diff --git a/applications/solvers/molecularDynamics/gnemdFoam/Make/options b/applications/solvers/molecularDynamics/gnemdFoam/Make/options new file mode 100755 index 0000000000..80f9773456 --- /dev/null +++ b/applications/solvers/molecularDynamics/gnemdFoam/Make/options @@ -0,0 +1,11 @@ +EXE_INC = \ + -I$(LIB_SRC)/lagrangian/molecule/lnInclude \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/lagrangian/basic/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude + +EXE_LIBS = \ + -lmeshTools \ + -lfiniteVolume \ + -llagrangian \ + -lmolecule diff --git a/applications/solvers/molecularDynamics/gnemdFoam/gnemdFoam.C b/applications/solvers/molecularDynamics/gnemdFoam/gnemdFoam.C new file mode 100755 index 0000000000..0356c42fd2 --- /dev/null +++ b/applications/solvers/molecularDynamics/gnemdFoam/gnemdFoam.C @@ -0,0 +1,90 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Application + gnemdFOAM + +Description + MD for Fluid Mechanics and hybridising with a continuum solver. + +\*---------------------------------------------------------------------------*/ + +#include "fvCFD.H" +#include "md.H" + +int main(int argc, char *argv[]) +{ + +# include "setRootCase.H" +# include "createTime.H" +# include "createMesh.H" + + moleculeCloud molecules(mesh); + +# include "createMDFields.H" + + molecules.removeHighEnergyOverlaps(); + +# include "temperatureAndPressureVariables.H" + + label nAveragingSteps = 0; + + Info << "\nStarting time loop\n" << endl; + + while (runTime.run()) + { + runTime++; + + nAveragingSteps++; + + Info << "Time = " << runTime.timeName() << endl; + + molecules.integrateEquationsOfMotion(); + +# include "meanMomentumEnergyAndNMols.H" + +# include "temperatureAndPressure.H" + +# include "calculateMDFields.H" + +# include "averageMDFields.H" + + runTime.write(); + +# include "resetMDFields.H" + + if (runTime.outputTime()) + { + nAveragingSteps = 0; + } + + Info << "ExecutionTime = " << runTime.elapsedCpuTime() << " s" + << " ClockTime = " << runTime.elapsedClockTime() << " s" + << nl << endl; + } + + Info << "End\n" << endl; + + return(0); +} diff --git a/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/files b/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/files new file mode 100755 index 0000000000..c3a050bb68 --- /dev/null +++ b/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/files @@ -0,0 +1,3 @@ +mdEquilibrationFoam.C + +EXE = $(FOAM_APPBIN)/mdEquilibrationFoam diff --git a/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/options b/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/options new file mode 100755 index 0000000000..80f9773456 --- /dev/null +++ b/applications/solvers/molecularDynamics/mdEquilibrationFoam/Make/options @@ -0,0 +1,11 @@ +EXE_INC = \ + -I$(LIB_SRC)/lagrangian/molecule/lnInclude \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/lagrangian/basic/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude + +EXE_LIBS = \ + -lmeshTools \ + -lfiniteVolume \ + -llagrangian \ + -lmolecule diff --git a/applications/solvers/molecularDynamics/mdEquilibrationFoam/mdEquilibrationFoam.C b/applications/solvers/molecularDynamics/mdEquilibrationFoam/mdEquilibrationFoam.C new file mode 100755 index 0000000000..f98371327b --- /dev/null +++ b/applications/solvers/molecularDynamics/mdEquilibrationFoam/mdEquilibrationFoam.C @@ -0,0 +1,86 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Application + mdEquilibrationFOAM + +Description + Equilibrates and/or preconditions MD systems + +\*---------------------------------------------------------------------------*/ + +#include "fvCFD.H" +#include "md.H" + +int main(int argc, char *argv[]) +{ + +# include "setRootCase.H" +# include "createTime.H" +# include "createMesh.H" + + moleculeCloud molecules(mesh); + + molecules.removeHighEnergyOverlaps(); + +# include "temperatureAndPressureVariables.H" + +# include "readmdEquilibrationDict.H" + + label nAveragingSteps = 0; + + Info << "\nStarting time loop\n" << endl; + + while (runTime.run()) + { + runTime++; + + nAveragingSteps++; + + Info << "Time = " << runTime.timeName() << endl; + + molecules.integrateEquationsOfMotion(); + +# include "meanMomentumEnergyAndNMols.H" + +# include "temperatureAndPressure.H" + +# include "temperatureEquilibration.H" + + runTime.write(); + + if (runTime.outputTime()) + { + nAveragingSteps = 0; + } + + Info << "ExecutionTime = " << runTime.elapsedCpuTime() << " s" + << " ClockTime = " << runTime.elapsedClockTime() << " s" + << nl << endl; + } + + Info << "End\n" << endl; + + return(0); +} diff --git a/applications/solvers/molecularDynamics/mdEquilibrationFoam/readmdEquilibrationDict.H b/applications/solvers/molecularDynamics/mdEquilibrationFoam/readmdEquilibrationDict.H new file mode 100755 index 0000000000..b205b5ae31 --- /dev/null +++ b/applications/solvers/molecularDynamics/mdEquilibrationFoam/readmdEquilibrationDict.H @@ -0,0 +1,18 @@ +Info<< "Reading MD Equilibration Dictionary" << nl << endl; + +IOdictionary mdEquilibrationDict +( + IOobject + ( + "mdEquilibrationDict", + runTime.system(), + mesh, + IOobject::MUST_READ, + IOobject::NO_WRITE + ) +); + +scalar targetTemperature = readScalar +( + mdEquilibrationDict.lookup("equilibrationTargetTemperature") +); diff --git a/applications/utilities/preProcessing/molConfig/Make/files b/applications/utilities/preProcessing/molConfig/Make/files new file mode 100755 index 0000000000..6501e68426 --- /dev/null +++ b/applications/utilities/preProcessing/molConfig/Make/files @@ -0,0 +1,8 @@ +latticeStructures = latticeStructures +velocityDistributions = velocityDistributions + +createMolecules.C +molConfig.C +genMolConfig.C + +EXE = $(FOAM_APPBIN)/molConfig diff --git a/applications/utilities/preProcessing/molConfig/Make/options b/applications/utilities/preProcessing/molConfig/Make/options new file mode 100755 index 0000000000..196a4d66dd --- /dev/null +++ b/applications/utilities/preProcessing/molConfig/Make/options @@ -0,0 +1,15 @@ +EXE_INC = \ + -I$(latticeStructures) \ + -I$(velocityDistributions) \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/dynamicMesh/lnInclude \ + -I$(LIB_SRC)/lagrangian/molecule/lnInclude \ + -I$(LIB_SRC)/lagrangian/basic/lnInclude \ + -I$(LIB_SRC)/finiteVolume/lnInclude + +EXE_LIBS = \ + -lmeshTools \ + -ldynamicMesh \ + -lfiniteVolume \ + -llagrangian \ + -lmolecule diff --git a/applications/utilities/preProcessing/molConfig/correctVelocities.H b/applications/utilities/preProcessing/molConfig/correctVelocities.H new file mode 100755 index 0000000000..0c69f15c7c --- /dev/null +++ b/applications/utilities/preProcessing/molConfig/correctVelocities.H @@ -0,0 +1,21 @@ +for (molN = totalMols; molN < totalMols + totalZoneMols; molN++) +{ + + // Remove bulk momentum introduced by random numbers and add + // desired bulk velocity + + // For systems with molecules of significantly differing masses, this may + // need to be an iterative process or employ a better algorithm for + // removing an appropriate share of the excess momentum from each molecule. + + initialVelocities(molN) += bulkVelocity - momentumSum/totalZoneMols/mass; +} + +// momentumSum = vector::zero; +// +// for (molN = totalMols; molN < totalMols + totalZoneMols; molN++) +// { +// momentumSum += mass*initialVelocities(molN); +// } +// +// Info << "Check momentum adjustment: " << momentumSum << endl; diff --git a/applications/utilities/preProcessing/molConfig/createMolecules.C b/applications/utilities/preProcessing/molConfig/createMolecules.C new file mode 100755 index 0000000000..20318f06d6 --- /dev/null +++ b/applications/utilities/preProcessing/molConfig/createMolecules.C @@ -0,0 +1,253 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\/ M anipulation | +------------------------------------------------------------------------------- +License + This file is part of OpenFOAM. + + OpenFOAM is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + OpenFOAM is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with OpenFOAM; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +\*----------------------------------------------------------------------------*/ + +#include "molConfig.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +void Foam::molConfig::createMolecules() +{ + Info<< nl << "Creating molecules from zone specifications\n" << endl; + + DynamicList initialPositions(0); + + DynamicList