hillclimber 0.1.5a8__cp314-cp314-macosx_15_0_x86_64.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.
- hillclimber/__init__.py +39 -0
- hillclimber/actions.py +53 -0
- hillclimber/analysis.py +590 -0
- hillclimber/biases.py +293 -0
- hillclimber/calc.py +22 -0
- hillclimber/cvs.py +1065 -0
- hillclimber/interfaces.py +133 -0
- hillclimber/metadynamics.py +325 -0
- hillclimber/nodes.py +6 -0
- hillclimber/opes.py +359 -0
- hillclimber/selectors.py +230 -0
- hillclimber/virtual_atoms.py +341 -0
- hillclimber-0.1.5a8.dist-info/METADATA +209 -0
- hillclimber-0.1.5a8.dist-info/RECORD +469 -0
- hillclimber-0.1.5a8.dist-info/WHEEL +6 -0
- hillclimber-0.1.5a8.dist-info/entry_points.txt +8 -0
- hillclimber-0.1.5a8.dist-info/licenses/LICENSE +165 -0
- plumed/__init__.py +104 -0
- plumed/_lib/bin/plumed +0 -0
- plumed/_lib/bin/plumed-config +9 -0
- plumed/_lib/bin/plumed-patch +9 -0
- plumed/_lib/include/plumed/adjmat/AdjacencyMatrixBase.h +659 -0
- plumed/_lib/include/plumed/adjmat/ContactMatrix.h +59 -0
- plumed/_lib/include/plumed/asmjit/arch.h +228 -0
- plumed/_lib/include/plumed/asmjit/arm.h +43 -0
- plumed/_lib/include/plumed/asmjit/asmjit.h +69 -0
- plumed/_lib/include/plumed/asmjit/asmjit_apibegin.h +143 -0
- plumed/_lib/include/plumed/asmjit/asmjit_apiend.h +93 -0
- plumed/_lib/include/plumed/asmjit/asmjit_build.h +971 -0
- plumed/_lib/include/plumed/asmjit/assembler.h +183 -0
- plumed/_lib/include/plumed/asmjit/base.h +56 -0
- plumed/_lib/include/plumed/asmjit/codebuilder.h +944 -0
- plumed/_lib/include/plumed/asmjit/codecompiler.h +767 -0
- plumed/_lib/include/plumed/asmjit/codeemitter.h +528 -0
- plumed/_lib/include/plumed/asmjit/codeholder.h +777 -0
- plumed/_lib/include/plumed/asmjit/constpool.h +286 -0
- plumed/_lib/include/plumed/asmjit/cpuinfo.h +402 -0
- plumed/_lib/include/plumed/asmjit/func.h +1327 -0
- plumed/_lib/include/plumed/asmjit/globals.h +370 -0
- plumed/_lib/include/plumed/asmjit/inst.h +137 -0
- plumed/_lib/include/plumed/asmjit/logging.h +317 -0
- plumed/_lib/include/plumed/asmjit/misc_p.h +103 -0
- plumed/_lib/include/plumed/asmjit/moved_string.h +318 -0
- plumed/_lib/include/plumed/asmjit/operand.h +1599 -0
- plumed/_lib/include/plumed/asmjit/osutils.h +207 -0
- plumed/_lib/include/plumed/asmjit/regalloc_p.h +597 -0
- plumed/_lib/include/plumed/asmjit/runtime.h +227 -0
- plumed/_lib/include/plumed/asmjit/simdtypes.h +1104 -0
- plumed/_lib/include/plumed/asmjit/utils.h +1387 -0
- plumed/_lib/include/plumed/asmjit/vmem.h +183 -0
- plumed/_lib/include/plumed/asmjit/x86.h +45 -0
- plumed/_lib/include/plumed/asmjit/x86assembler.h +125 -0
- plumed/_lib/include/plumed/asmjit/x86builder.h +117 -0
- plumed/_lib/include/plumed/asmjit/x86compiler.h +322 -0
- plumed/_lib/include/plumed/asmjit/x86emitter.h +5149 -0
- plumed/_lib/include/plumed/asmjit/x86globals.h +535 -0
- plumed/_lib/include/plumed/asmjit/x86inst.h +2547 -0
- plumed/_lib/include/plumed/asmjit/x86instimpl_p.h +74 -0
- plumed/_lib/include/plumed/asmjit/x86internal_p.h +108 -0
- plumed/_lib/include/plumed/asmjit/x86logging_p.h +92 -0
- plumed/_lib/include/plumed/asmjit/x86misc.h +417 -0
- plumed/_lib/include/plumed/asmjit/x86operand.h +1133 -0
- plumed/_lib/include/plumed/asmjit/x86regalloc_p.h +734 -0
- plumed/_lib/include/plumed/asmjit/zone.h +1157 -0
- plumed/_lib/include/plumed/bias/Bias.h +82 -0
- plumed/_lib/include/plumed/bias/ReweightBase.h +58 -0
- plumed/_lib/include/plumed/blas/blas.h +253 -0
- plumed/_lib/include/plumed/blas/def_external.h +61 -0
- plumed/_lib/include/plumed/blas/def_internal.h +97 -0
- plumed/_lib/include/plumed/blas/real.h +49 -0
- plumed/_lib/include/plumed/cltools/CLTool.h +32 -0
- plumed/_lib/include/plumed/clusters/ClusteringBase.h +70 -0
- plumed/_lib/include/plumed/colvar/Colvar.h +32 -0
- plumed/_lib/include/plumed/colvar/ColvarInput.h +68 -0
- plumed/_lib/include/plumed/colvar/ColvarShortcut.h +81 -0
- plumed/_lib/include/plumed/colvar/CoordinationBase.h +52 -0
- plumed/_lib/include/plumed/colvar/MultiColvarTemplate.h +333 -0
- plumed/_lib/include/plumed/colvar/PathMSDBase.h +101 -0
- plumed/_lib/include/plumed/colvar/RMSDVector.h +78 -0
- plumed/_lib/include/plumed/config/Config.h +118 -0
- plumed/_lib/include/plumed/config/version.h +9 -0
- plumed/_lib/include/plumed/contour/ContourFindingObject.h +87 -0
- plumed/_lib/include/plumed/contour/DistanceFromContourBase.h +82 -0
- plumed/_lib/include/plumed/contour/FindContour.h +67 -0
- plumed/_lib/include/plumed/core/Action.h +540 -0
- plumed/_lib/include/plumed/core/ActionAnyorder.h +48 -0
- plumed/_lib/include/plumed/core/ActionAtomistic.h +343 -0
- plumed/_lib/include/plumed/core/ActionForInterface.h +99 -0
- plumed/_lib/include/plumed/core/ActionPilot.h +57 -0
- plumed/_lib/include/plumed/core/ActionRegister.h +124 -0
- plumed/_lib/include/plumed/core/ActionSet.h +163 -0
- plumed/_lib/include/plumed/core/ActionSetup.h +48 -0
- plumed/_lib/include/plumed/core/ActionShortcut.h +73 -0
- plumed/_lib/include/plumed/core/ActionToGetData.h +59 -0
- plumed/_lib/include/plumed/core/ActionToPutData.h +101 -0
- plumed/_lib/include/plumed/core/ActionWithArguments.h +140 -0
- plumed/_lib/include/plumed/core/ActionWithMatrix.h +87 -0
- plumed/_lib/include/plumed/core/ActionWithValue.h +258 -0
- plumed/_lib/include/plumed/core/ActionWithVector.h +94 -0
- plumed/_lib/include/plumed/core/ActionWithVirtualAtom.h +123 -0
- plumed/_lib/include/plumed/core/CLTool.h +177 -0
- plumed/_lib/include/plumed/core/CLToolMain.h +102 -0
- plumed/_lib/include/plumed/core/CLToolRegister.h +108 -0
- plumed/_lib/include/plumed/core/Colvar.h +115 -0
- plumed/_lib/include/plumed/core/DataPassingObject.h +94 -0
- plumed/_lib/include/plumed/core/DataPassingTools.h +54 -0
- plumed/_lib/include/plumed/core/DomainDecomposition.h +120 -0
- plumed/_lib/include/plumed/core/ExchangePatterns.h +47 -0
- plumed/_lib/include/plumed/core/FlexibleBin.h +63 -0
- plumed/_lib/include/plumed/core/GREX.h +61 -0
- plumed/_lib/include/plumed/core/GenericMolInfo.h +89 -0
- plumed/_lib/include/plumed/core/Group.h +41 -0
- plumed/_lib/include/plumed/core/ModuleMap.h +30 -0
- plumed/_lib/include/plumed/core/ParallelTaskManager.h +1023 -0
- plumed/_lib/include/plumed/core/PbcAction.h +61 -0
- plumed/_lib/include/plumed/core/PlumedMain.h +632 -0
- plumed/_lib/include/plumed/core/PlumedMainInitializer.h +118 -0
- plumed/_lib/include/plumed/core/RegisterBase.h +340 -0
- plumed/_lib/include/plumed/core/TargetDist.h +48 -0
- plumed/_lib/include/plumed/core/Value.h +547 -0
- plumed/_lib/include/plumed/core/WithCmd.h +93 -0
- plumed/_lib/include/plumed/dimred/SMACOF.h +55 -0
- plumed/_lib/include/plumed/drr/DRR.h +383 -0
- plumed/_lib/include/plumed/drr/colvar_UIestimator.h +777 -0
- plumed/_lib/include/plumed/fisst/legendre_rule_fast.h +44 -0
- plumed/_lib/include/plumed/function/Custom.h +54 -0
- plumed/_lib/include/plumed/function/Function.h +85 -0
- plumed/_lib/include/plumed/function/FunctionOfMatrix.h +368 -0
- plumed/_lib/include/plumed/function/FunctionOfScalar.h +135 -0
- plumed/_lib/include/plumed/function/FunctionOfVector.h +296 -0
- plumed/_lib/include/plumed/function/FunctionSetup.h +180 -0
- plumed/_lib/include/plumed/function/FunctionShortcut.h +130 -0
- plumed/_lib/include/plumed/function/FunctionWithSingleArgument.h +165 -0
- plumed/_lib/include/plumed/gridtools/ActionWithGrid.h +43 -0
- plumed/_lib/include/plumed/gridtools/EvaluateGridFunction.h +99 -0
- plumed/_lib/include/plumed/gridtools/FunctionOfGrid.h +295 -0
- plumed/_lib/include/plumed/gridtools/GridCoordinatesObject.h +179 -0
- plumed/_lib/include/plumed/gridtools/GridSearch.h +135 -0
- plumed/_lib/include/plumed/gridtools/Interpolator.h +45 -0
- plumed/_lib/include/plumed/gridtools/KDE.h +455 -0
- plumed/_lib/include/plumed/gridtools/RDF.h +40 -0
- plumed/_lib/include/plumed/gridtools/SumOfKernels.h +219 -0
- plumed/_lib/include/plumed/isdb/MetainferenceBase.h +398 -0
- plumed/_lib/include/plumed/lapack/def_external.h +207 -0
- plumed/_lib/include/plumed/lapack/def_internal.h +388 -0
- plumed/_lib/include/plumed/lapack/lapack.h +899 -0
- plumed/_lib/include/plumed/lapack/lapack_limits.h +79 -0
- plumed/_lib/include/plumed/lapack/real.h +50 -0
- plumed/_lib/include/plumed/lepton/CompiledExpression.h +164 -0
- plumed/_lib/include/plumed/lepton/CustomFunction.h +143 -0
- plumed/_lib/include/plumed/lepton/Exception.h +93 -0
- plumed/_lib/include/plumed/lepton/ExpressionProgram.h +137 -0
- plumed/_lib/include/plumed/lepton/ExpressionTreeNode.h +145 -0
- plumed/_lib/include/plumed/lepton/Lepton.h +85 -0
- plumed/_lib/include/plumed/lepton/MSVC_erfc.h +123 -0
- plumed/_lib/include/plumed/lepton/Operation.h +1302 -0
- plumed/_lib/include/plumed/lepton/ParsedExpression.h +165 -0
- plumed/_lib/include/plumed/lepton/Parser.h +111 -0
- plumed/_lib/include/plumed/lepton/windowsIncludes.h +73 -0
- plumed/_lib/include/plumed/mapping/Path.h +44 -0
- plumed/_lib/include/plumed/mapping/PathProjectionCalculator.h +57 -0
- plumed/_lib/include/plumed/matrixtools/MatrixOperationBase.h +54 -0
- plumed/_lib/include/plumed/matrixtools/MatrixTimesMatrix.h +309 -0
- plumed/_lib/include/plumed/matrixtools/MatrixTimesVectorBase.h +365 -0
- plumed/_lib/include/plumed/matrixtools/OuterProduct.h +238 -0
- plumed/_lib/include/plumed/maze/Core.h +65 -0
- plumed/_lib/include/plumed/maze/Loss.h +86 -0
- plumed/_lib/include/plumed/maze/Member.h +66 -0
- plumed/_lib/include/plumed/maze/Memetic.h +799 -0
- plumed/_lib/include/plumed/maze/Optimizer.h +357 -0
- plumed/_lib/include/plumed/maze/Random_MT.h +156 -0
- plumed/_lib/include/plumed/maze/Tools.h +183 -0
- plumed/_lib/include/plumed/metatomic/vesin.h +188 -0
- plumed/_lib/include/plumed/molfile/Gromacs.h +2013 -0
- plumed/_lib/include/plumed/molfile/endianswap.h +217 -0
- plumed/_lib/include/plumed/molfile/fastio.h +683 -0
- plumed/_lib/include/plumed/molfile/largefiles.h +78 -0
- plumed/_lib/include/plumed/molfile/libmolfile_plugin.h +77 -0
- plumed/_lib/include/plumed/molfile/molfile_plugin.h +1034 -0
- plumed/_lib/include/plumed/molfile/periodic_table.h +248 -0
- plumed/_lib/include/plumed/molfile/readpdb.h +447 -0
- plumed/_lib/include/plumed/molfile/vmdplugin.h +236 -0
- plumed/_lib/include/plumed/multicolvar/MultiColvarShortcuts.h +45 -0
- plumed/_lib/include/plumed/opes/ExpansionCVs.h +79 -0
- plumed/_lib/include/plumed/sasa/Sasa.h +32 -0
- plumed/_lib/include/plumed/secondarystructure/SecondaryStructureBase.h +372 -0
- plumed/_lib/include/plumed/setup/ActionSetup.h +25 -0
- plumed/_lib/include/plumed/small_vector/small_vector.h +6114 -0
- plumed/_lib/include/plumed/symfunc/CoordinationNumbers.h +41 -0
- plumed/_lib/include/plumed/tools/Angle.h +52 -0
- plumed/_lib/include/plumed/tools/AtomDistribution.h +138 -0
- plumed/_lib/include/plumed/tools/AtomNumber.h +152 -0
- plumed/_lib/include/plumed/tools/BiasRepresentation.h +106 -0
- plumed/_lib/include/plumed/tools/BitmaskEnum.h +167 -0
- plumed/_lib/include/plumed/tools/Brent1DRootSearch.h +159 -0
- plumed/_lib/include/plumed/tools/CheckInRange.h +44 -0
- plumed/_lib/include/plumed/tools/Citations.h +74 -0
- plumed/_lib/include/plumed/tools/ColvarOutput.h +118 -0
- plumed/_lib/include/plumed/tools/Communicator.h +316 -0
- plumed/_lib/include/plumed/tools/ConjugateGradient.h +80 -0
- plumed/_lib/include/plumed/tools/DLLoader.h +79 -0
- plumed/_lib/include/plumed/tools/ERMSD.h +73 -0
- plumed/_lib/include/plumed/tools/Exception.h +406 -0
- plumed/_lib/include/plumed/tools/File.h +28 -0
- plumed/_lib/include/plumed/tools/FileBase.h +153 -0
- plumed/_lib/include/plumed/tools/FileTools.h +37 -0
- plumed/_lib/include/plumed/tools/ForwardDecl.h +54 -0
- plumed/_lib/include/plumed/tools/Grid.h +638 -0
- plumed/_lib/include/plumed/tools/HistogramBead.h +136 -0
- plumed/_lib/include/plumed/tools/IFile.h +117 -0
- plumed/_lib/include/plumed/tools/KernelFunctions.h +113 -0
- plumed/_lib/include/plumed/tools/Keywords.h +380 -0
- plumed/_lib/include/plumed/tools/LatticeReduction.h +66 -0
- plumed/_lib/include/plumed/tools/LeptonCall.h +64 -0
- plumed/_lib/include/plumed/tools/LinkCells.h +126 -0
- plumed/_lib/include/plumed/tools/Log.h +41 -0
- plumed/_lib/include/plumed/tools/LoopUnroller.h +163 -0
- plumed/_lib/include/plumed/tools/Matrix.h +721 -0
- plumed/_lib/include/plumed/tools/MatrixSquareBracketsAccess.h +138 -0
- plumed/_lib/include/plumed/tools/MergeVectorTools.h +153 -0
- plumed/_lib/include/plumed/tools/Minimise1DBrent.h +244 -0
- plumed/_lib/include/plumed/tools/MinimiseBase.h +120 -0
- plumed/_lib/include/plumed/tools/MolDataClass.h +51 -0
- plumed/_lib/include/plumed/tools/NeighborList.h +112 -0
- plumed/_lib/include/plumed/tools/OFile.h +286 -0
- plumed/_lib/include/plumed/tools/OpenACC.h +180 -0
- plumed/_lib/include/plumed/tools/OpenMP.h +75 -0
- plumed/_lib/include/plumed/tools/PDB.h +154 -0
- plumed/_lib/include/plumed/tools/Pbc.h +139 -0
- plumed/_lib/include/plumed/tools/PlumedHandle.h +105 -0
- plumed/_lib/include/plumed/tools/RMSD.h +493 -0
- plumed/_lib/include/plumed/tools/Random.h +80 -0
- plumed/_lib/include/plumed/tools/RootFindingBase.h +79 -0
- plumed/_lib/include/plumed/tools/Stopwatch.h +475 -0
- plumed/_lib/include/plumed/tools/Subprocess.h +142 -0
- plumed/_lib/include/plumed/tools/SwitchingFunction.h +208 -0
- plumed/_lib/include/plumed/tools/Tensor.h +724 -0
- plumed/_lib/include/plumed/tools/TokenizedLine.h +123 -0
- plumed/_lib/include/plumed/tools/Tools.h +638 -0
- plumed/_lib/include/plumed/tools/Torsion.h +55 -0
- plumed/_lib/include/plumed/tools/TrajectoryParser.h +118 -0
- plumed/_lib/include/plumed/tools/Tree.h +61 -0
- plumed/_lib/include/plumed/tools/TypesafePtr.h +463 -0
- plumed/_lib/include/plumed/tools/Units.h +167 -0
- plumed/_lib/include/plumed/tools/Vector.h +433 -0
- plumed/_lib/include/plumed/tools/View.h +296 -0
- plumed/_lib/include/plumed/tools/View2D.h +100 -0
- plumed/_lib/include/plumed/tools/h36.h +39 -0
- plumed/_lib/include/plumed/vatom/ActionWithVirtualAtom.h +32 -0
- plumed/_lib/include/plumed/ves/BasisFunctions.h +380 -0
- plumed/_lib/include/plumed/ves/CoeffsBase.h +310 -0
- plumed/_lib/include/plumed/ves/CoeffsMatrix.h +220 -0
- plumed/_lib/include/plumed/ves/CoeffsVector.h +251 -0
- plumed/_lib/include/plumed/ves/FermiSwitchingFunction.h +74 -0
- plumed/_lib/include/plumed/ves/GridIntegrationWeights.h +50 -0
- plumed/_lib/include/plumed/ves/GridLinearInterpolation.h +81 -0
- plumed/_lib/include/plumed/ves/GridProjWeights.h +61 -0
- plumed/_lib/include/plumed/ves/LinearBasisSetExpansion.h +303 -0
- plumed/_lib/include/plumed/ves/Optimizer.h +444 -0
- plumed/_lib/include/plumed/ves/TargetDistModifer.h +53 -0
- plumed/_lib/include/plumed/ves/TargetDistribution.h +266 -0
- plumed/_lib/include/plumed/ves/VesBias.h +545 -0
- plumed/_lib/include/plumed/ves/VesTools.h +142 -0
- plumed/_lib/include/plumed/ves/WaveletGrid.h +75 -0
- plumed/_lib/include/plumed/volumes/ActionVolume.h +268 -0
- plumed/_lib/include/plumed/volumes/VolumeShortcut.h +147 -0
- plumed/_lib/include/plumed/wrapper/Plumed.h +5025 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile.h +663 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile_trr.h +89 -0
- plumed/_lib/include/plumed/xdrfile/xdrfile_xtc.h +90 -0
- plumed/_lib/lib/PythonCVInterface.dylib +0 -0
- plumed/_lib/lib/libplumed.dylib +0 -0
- plumed/_lib/lib/libplumedKernel.dylib +0 -0
- plumed/_lib/lib/libplumedWrapper.a +0 -0
- plumed/_lib/lib/pkgconfig/plumed.pc +13 -0
- plumed/_lib/lib/pkgconfig/plumedInternals.pc +13 -0
- plumed/_lib/lib/pkgconfig/plumedWrapper.pc +13 -0
- plumed/_lib/lib/plumed/fortran/plumed.f90 +879 -0
- plumed/_lib/lib/plumed/fortran/plumed_f08.f90 +2625 -0
- plumed/_lib/lib/plumed/modulefile +69 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt +543 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt.preplumed +540 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp +1628 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1590 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h +103 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h.preplumed +99 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp +2527 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +408 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +394 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp +2348 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2091 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp +3573 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3495 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1506 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1402 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp +997 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +906 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp +2780 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2738 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt +549 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt.preplumed +546 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h +104 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp +2624 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2610 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +395 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp +2419 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2164 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp +3546 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3468 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp +991 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +900 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp +2895 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2849 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp +886 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +880 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +347 -0
- plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +345 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.config +43 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt +575 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt.preplumed +572 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h +104 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp +2564 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2550 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h +410 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +396 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp +2435 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp.preplumed +2187 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp +3592 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3514 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp +958 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp.preplumed +929 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp +2987 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp.preplumed +2941 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp +904 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +898 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +353 -0
- plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +351 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.config +39 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake +82 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake.preplumed +82 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp +162 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp.preplumed +154 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp +107 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp.preplumed +99 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h +120 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h.preplumed +111 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp +215 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp.preplumed +197 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h +87 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h.preplumed +86 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp +2971 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp.preplumed +2970 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h +430 -0
- plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h.preplumed +429 -0
- plumed/_lib/lib/plumed/patches/namd-2.12.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.12.diff +267 -0
- plumed/_lib/lib/plumed/patches/namd-2.13.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.13.diff +267 -0
- plumed/_lib/lib/plumed/patches/namd-2.14.config +30 -0
- plumed/_lib/lib/plumed/patches/namd-2.14.diff +268 -0
- plumed/_lib/lib/plumed/patches/patch.sh +500 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.config +25 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90 +368 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90.preplumed +366 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90 +71 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90.preplumed +24 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90 +62 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90 +189 -0
- plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90.preplumed +185 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.config +26 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90 +422 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90.preplumed +420 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90 +70 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90 +62 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90 +233 -0
- plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90.preplumed +230 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.config +28 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile +175 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile.preplumed +171 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90 +486 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90.preplumed +484 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90 +74 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90 +64 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90 +532 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90.preplumed +518 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.config +28 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile +249 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile.preplumed +244 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90 +532 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90.preplumed +535 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90 +74 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90 +64 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90 +569 -0
- plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90.preplumed +560 -0
- plumed/_lib/lib/plumed/plumed-config +9 -0
- plumed/_lib/lib/plumed/plumed-mklib +9 -0
- plumed/_lib/lib/plumed/plumed-newcv +9 -0
- plumed/_lib/lib/plumed/plumed-partial_tempering +9 -0
- plumed/_lib/lib/plumed/plumed-patch +9 -0
- plumed/_lib/lib/plumed/plumed-runtime +0 -0
- plumed/_lib/lib/plumed/plumed-selector +9 -0
- plumed/_lib/lib/plumed/plumed-vim2html +9 -0
- plumed/_lib/lib/plumed/scripts/config.sh +126 -0
- plumed/_lib/lib/plumed/scripts/mklib.sh +175 -0
- plumed/_lib/lib/plumed/scripts/newcv.sh +26 -0
- plumed/_lib/lib/plumed/scripts/partial_tempering.sh +319 -0
- plumed/_lib/lib/plumed/scripts/patch.sh +4 -0
- plumed/_lib/lib/plumed/scripts/selector.sh +234 -0
- plumed/_lib/lib/plumed/scripts/vim2html.sh +190 -0
- plumed/_lib/lib/plumed/src/colvar/Template.cpp +116 -0
- plumed/_lib/lib/plumed/src/config/compile_options.sh +3 -0
- plumed/_lib/lib/plumed/src/config/config.txt +181 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake +6 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.runtime +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.shared +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.cmake.static +3 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc +6 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.runtime +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.shared +5 -0
- plumed/_lib/lib/plumed/src/lib/Plumed.inc.static +3 -0
- plumed/_lib/lib/plumed/vim/scripts.vim +6 -0
- plumed/_plumed_core.cpython-311-darwin.so +0 -0
- plumed/_plumed_core.cpython-312-darwin.so +0 -0
- plumed/_plumed_core.cpython-313-darwin.so +0 -0
- plumed/_plumed_core.cpython-314-darwin.so +0 -0
- plumedCommunications.cpython-311-darwin.so +0 -0
- plumedCommunications.cpython-312-darwin.so +0 -0
- plumedCommunications.cpython-313-darwin.so +0 -0
- plumedCommunications.cpython-314-darwin.so +0 -0
- plumedCommunications.pyi +431 -0
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
!
|
|
2
|
+
! Copyright (C) 2013-2017 Quantum ESPRESSO group
|
|
3
|
+
! This file is distributed under the terms of the
|
|
4
|
+
! GNU General Public License. See the file `License'
|
|
5
|
+
! in the root directory of the present distribution,
|
|
6
|
+
! or http://www.gnu.org/copyleft/gpl.txt .
|
|
7
|
+
!
|
|
8
|
+
!----------------------------------------------------------------------------
|
|
9
|
+
SUBROUTINE run_pwscf ( exit_status )
|
|
10
|
+
!----------------------------------------------------------------------------
|
|
11
|
+
!
|
|
12
|
+
!! author: Paolo Giannozzi
|
|
13
|
+
!! license: GNU
|
|
14
|
+
!! summary: Run an instance of the Plane Wave Self-Consistent Field code
|
|
15
|
+
!!
|
|
16
|
+
!! Run an instance of the Plane Wave Self-Consistent Field code
|
|
17
|
+
!! MPI initialization and input data reading is performed in the
|
|
18
|
+
!! calling code - returns in exit_status the exit code for pw.x,
|
|
19
|
+
!! returned in the shell. Values are:
|
|
20
|
+
!! * 0: completed successfully
|
|
21
|
+
!! * 1: an error has occurred (value returned by the errore() routine)
|
|
22
|
+
!! * 2-127: convergence error
|
|
23
|
+
!! * 2: scf convergence error
|
|
24
|
+
!! * 3: ion convergence error
|
|
25
|
+
!! * 128-255: code exited due to specific trigger
|
|
26
|
+
!! * 255: exit due to user request, or signal trapped,
|
|
27
|
+
!! or time > max_seconds
|
|
28
|
+
!! (note: in the future, check_stop_now could also return a value
|
|
29
|
+
!! to specify the reason of exiting, and the value could be used
|
|
30
|
+
!! to return a different value for different reasons)
|
|
31
|
+
!! @Note
|
|
32
|
+
!! 10/01/17 Samuel Ponce: Add Ford documentation
|
|
33
|
+
!! @endnote
|
|
34
|
+
!!
|
|
35
|
+
!
|
|
36
|
+
USE io_global, ONLY : stdout, ionode, ionode_id
|
|
37
|
+
USE parameters, ONLY : ntypx, npk, lmaxx
|
|
38
|
+
USE cell_base, ONLY : fix_volume, fix_area
|
|
39
|
+
USE control_flags, ONLY : conv_elec, gamma_only, ethr, lscf, twfcollect
|
|
40
|
+
USE control_flags, ONLY : conv_ions, istep, nstep, restart, lmd, lbfgs
|
|
41
|
+
USE command_line_options, ONLY : command_line
|
|
42
|
+
USE force_mod, ONLY : lforce, lstres, sigma, force
|
|
43
|
+
USE check_stop, ONLY : check_stop_init, check_stop_now
|
|
44
|
+
USE mp_images, ONLY : intra_image_comm
|
|
45
|
+
USE extrapolation, ONLY : update_file, update_pot
|
|
46
|
+
USE scf, ONLY : rho
|
|
47
|
+
USE lsda_mod, ONLY : nspin
|
|
48
|
+
USE fft_base, ONLY : dfftp
|
|
49
|
+
USE qmmm, ONLY : qmmm_initialization, qmmm_shutdown, &
|
|
50
|
+
qmmm_update_positions, qmmm_update_forces
|
|
51
|
+
USE qexsd_module, ONLY: qexsd_set_status
|
|
52
|
+
!
|
|
53
|
+
IMPLICIT NONE
|
|
54
|
+
INTEGER, INTENT(OUT) :: exit_status
|
|
55
|
+
!! Gives the exit status at the end
|
|
56
|
+
LOGICAL, external :: matches
|
|
57
|
+
!! checks if first string is contained in the second
|
|
58
|
+
INTEGER :: idone
|
|
59
|
+
! counter of electronic + ionic steps done in this run
|
|
60
|
+
!
|
|
61
|
+
exit_status = 0
|
|
62
|
+
IF ( ionode ) WRITE( unit = stdout, FMT = 9010 ) ntypx, npk, lmaxx
|
|
63
|
+
!
|
|
64
|
+
IF (ionode) CALL plugin_arguments()
|
|
65
|
+
CALL plugin_arguments_bcast( ionode_id, intra_image_comm )
|
|
66
|
+
!
|
|
67
|
+
! ... needs to come before iosys() so some input flags can be
|
|
68
|
+
! overridden without needing to write PWscf specific code.
|
|
69
|
+
!
|
|
70
|
+
CALL qmmm_initialization()
|
|
71
|
+
!
|
|
72
|
+
! ... convert to internal variables
|
|
73
|
+
!
|
|
74
|
+
CALL iosys()
|
|
75
|
+
!
|
|
76
|
+
! ... If executable names is "dist.x", compute atomic distances, angles,
|
|
77
|
+
! ... nearest neighbors, write them to file "dist.out", exit
|
|
78
|
+
!
|
|
79
|
+
IF ( matches('dist.x',command_line) ) THEN
|
|
80
|
+
IF (ionode) CALL run_dist ( exit_status )
|
|
81
|
+
RETURN
|
|
82
|
+
END IF
|
|
83
|
+
!
|
|
84
|
+
IF ( gamma_only ) WRITE( UNIT = stdout, &
|
|
85
|
+
& FMT = '(/,5X,"gamma-point specific algorithms are used")' )
|
|
86
|
+
!
|
|
87
|
+
! call to void routine for user defined / plugin patches initializations
|
|
88
|
+
!
|
|
89
|
+
CALL plugin_initialization()
|
|
90
|
+
!
|
|
91
|
+
CALL check_stop_init()
|
|
92
|
+
!
|
|
93
|
+
CALL setup ()
|
|
94
|
+
!
|
|
95
|
+
CALL qmmm_update_positions()
|
|
96
|
+
!
|
|
97
|
+
CALL init_run()
|
|
98
|
+
!
|
|
99
|
+
! ... dry run: code will stop here if called with exit file present
|
|
100
|
+
! ... useful for a quick and automated way to check input data
|
|
101
|
+
!
|
|
102
|
+
IF ( check_stop_now() ) THEN
|
|
103
|
+
CALL qexsd_set_status(255)
|
|
104
|
+
CALL punch( 'config' )
|
|
105
|
+
exit_status = 255
|
|
106
|
+
RETURN
|
|
107
|
+
ENDIF
|
|
108
|
+
!
|
|
109
|
+
main_loop: DO idone = 1, nstep
|
|
110
|
+
!
|
|
111
|
+
! ... electronic self-consistency or band structure calculation
|
|
112
|
+
!
|
|
113
|
+
IF ( .NOT. lscf) THEN
|
|
114
|
+
CALL non_scf ()
|
|
115
|
+
ELSE
|
|
116
|
+
CALL electrons()
|
|
117
|
+
END IF
|
|
118
|
+
!
|
|
119
|
+
! ... code stopped by user or not converged
|
|
120
|
+
!
|
|
121
|
+
IF ( check_stop_now() .OR. .NOT. conv_elec ) THEN
|
|
122
|
+
IF ( check_stop_now() ) exit_status = 255
|
|
123
|
+
IF ( .NOT. conv_elec ) exit_status = 2
|
|
124
|
+
CALL qexsd_set_status(exit_status)
|
|
125
|
+
! workaround for the case of a single k-point
|
|
126
|
+
twfcollect = .FALSE.
|
|
127
|
+
CALL punch( 'config' )
|
|
128
|
+
RETURN
|
|
129
|
+
ENDIF
|
|
130
|
+
!
|
|
131
|
+
! ... ionic section starts here
|
|
132
|
+
!
|
|
133
|
+
CALL start_clock( 'ions' ); !write(*,*)' start ions' ; FLUSH(6)
|
|
134
|
+
conv_ions = .TRUE.
|
|
135
|
+
!
|
|
136
|
+
! ... recover from a previous run, if appropriate
|
|
137
|
+
!
|
|
138
|
+
!IF ( restart .AND. lscf ) CALL restart_in_ions()
|
|
139
|
+
!
|
|
140
|
+
! ... file in CASINO format written here if required
|
|
141
|
+
!
|
|
142
|
+
IF ( lmd ) THEN
|
|
143
|
+
CALL pw2casino( istep )
|
|
144
|
+
ELSE
|
|
145
|
+
CALL pw2casino( 0 )
|
|
146
|
+
END IF
|
|
147
|
+
!
|
|
148
|
+
! ... force calculation
|
|
149
|
+
!
|
|
150
|
+
IF ( lforce ) CALL forces()
|
|
151
|
+
!
|
|
152
|
+
! ... stress calculation
|
|
153
|
+
!
|
|
154
|
+
IF ( lstres ) CALL stress ( sigma )
|
|
155
|
+
!
|
|
156
|
+
! ... send out forces to MM code in QM/MM run
|
|
157
|
+
! ... this is the right place for plugin forces:
|
|
158
|
+
!
|
|
159
|
+
CALL plugin_ext_forces()
|
|
160
|
+
!
|
|
161
|
+
IF ( lmd .OR. lbfgs ) THEN
|
|
162
|
+
!
|
|
163
|
+
if (fix_volume) CALL impose_deviatoric_stress(sigma)
|
|
164
|
+
if (fix_area) CALL impose_deviatoric_stress_2d(sigma)
|
|
165
|
+
!
|
|
166
|
+
! ... save data needed for potential and wavefunction extrapolation
|
|
167
|
+
!
|
|
168
|
+
CALL update_file ( )
|
|
169
|
+
!
|
|
170
|
+
! ... ionic step (for molecular dynamics or optimization)
|
|
171
|
+
!
|
|
172
|
+
CALL move_ions ( idone )
|
|
173
|
+
!
|
|
174
|
+
! ... then we save restart information for the new configuration
|
|
175
|
+
!
|
|
176
|
+
IF ( idone <= nstep .AND. .NOT. conv_ions ) THEN
|
|
177
|
+
CALL qexsd_set_status(255)
|
|
178
|
+
CALL punch( 'config' )
|
|
179
|
+
END IF
|
|
180
|
+
!
|
|
181
|
+
END IF
|
|
182
|
+
!
|
|
183
|
+
CALL stop_clock( 'ions' ); !write(*,*)' stop ions' ; FLUSH(6)
|
|
184
|
+
!
|
|
185
|
+
CALL qmmm_update_forces( force, rho%of_r, nspin, dfftp)
|
|
186
|
+
!
|
|
187
|
+
! ... exit condition (ionic convergence) is checked here
|
|
188
|
+
!
|
|
189
|
+
IF ( lmd .OR. lbfgs ) CALL add_qexsd_step(idone)
|
|
190
|
+
IF ( conv_ions ) EXIT main_loop
|
|
191
|
+
!
|
|
192
|
+
! ... receive new positions from MM code in QM/MM run
|
|
193
|
+
!
|
|
194
|
+
CALL qmmm_update_positions()
|
|
195
|
+
!
|
|
196
|
+
! ... terms of the hamiltonian depending upon nuclear positions
|
|
197
|
+
! ... are reinitialized here
|
|
198
|
+
!
|
|
199
|
+
IF ( lmd .OR. lbfgs ) THEN
|
|
200
|
+
!
|
|
201
|
+
! ... update the wavefunctions, charge density, potential
|
|
202
|
+
! ... update_pot initializes structure factor array as well
|
|
203
|
+
!
|
|
204
|
+
CALL update_pot()
|
|
205
|
+
!
|
|
206
|
+
! ... re-initialize atomic position-dependent quantities
|
|
207
|
+
!
|
|
208
|
+
CALL hinit1()
|
|
209
|
+
!
|
|
210
|
+
END IF
|
|
211
|
+
! ... Reset convergence threshold of iterative diagonalization for
|
|
212
|
+
! ... the first scf iteration of each ionic step (after the first)
|
|
213
|
+
!
|
|
214
|
+
ethr = 1.0D-6
|
|
215
|
+
!
|
|
216
|
+
END DO main_loop
|
|
217
|
+
!
|
|
218
|
+
! ... save final data file
|
|
219
|
+
!
|
|
220
|
+
CALL qexsd_set_status(exit_status)
|
|
221
|
+
CALL punch('all')
|
|
222
|
+
!
|
|
223
|
+
CALL qmmm_shutdown()
|
|
224
|
+
!
|
|
225
|
+
IF ( .NOT. conv_ions ) exit_status = 3
|
|
226
|
+
RETURN
|
|
227
|
+
!
|
|
228
|
+
9010 FORMAT( /,5X,'Current dimensions of program PWSCF are:', &
|
|
229
|
+
& /,5X,'Max number of different atomic species (ntypx) = ',I2,&
|
|
230
|
+
& /,5X,'Max number of k-points (npk) = ',I6,&
|
|
231
|
+
& /,5X,'Max angular momentum in pseudopotentials (lmaxx) = ',i2)
|
|
232
|
+
!
|
|
233
|
+
END SUBROUTINE run_pwscf
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
!
|
|
2
|
+
! Copyright (C) 2013-2017 Quantum ESPRESSO group
|
|
3
|
+
! This file is distributed under the terms of the
|
|
4
|
+
! GNU General Public License. See the file `License'
|
|
5
|
+
! in the root directory of the present distribution,
|
|
6
|
+
! or http://www.gnu.org/copyleft/gpl.txt .
|
|
7
|
+
!
|
|
8
|
+
!----------------------------------------------------------------------------
|
|
9
|
+
SUBROUTINE run_pwscf ( exit_status )
|
|
10
|
+
!----------------------------------------------------------------------------
|
|
11
|
+
!
|
|
12
|
+
!! author: Paolo Giannozzi
|
|
13
|
+
!! license: GNU
|
|
14
|
+
!! summary: Run an instance of the Plane Wave Self-Consistent Field code
|
|
15
|
+
!!
|
|
16
|
+
!! Run an instance of the Plane Wave Self-Consistent Field code
|
|
17
|
+
!! MPI initialization and input data reading is performed in the
|
|
18
|
+
!! calling code - returns in exit_status the exit code for pw.x,
|
|
19
|
+
!! returned in the shell. Values are:
|
|
20
|
+
!! * 0: completed successfully
|
|
21
|
+
!! * 1: an error has occurred (value returned by the errore() routine)
|
|
22
|
+
!! * 2-127: convergence error
|
|
23
|
+
!! * 2: scf convergence error
|
|
24
|
+
!! * 3: ion convergence error
|
|
25
|
+
!! * 128-255: code exited due to specific trigger
|
|
26
|
+
!! * 255: exit due to user request, or signal trapped,
|
|
27
|
+
!! or time > max_seconds
|
|
28
|
+
!! (note: in the future, check_stop_now could also return a value
|
|
29
|
+
!! to specify the reason of exiting, and the value could be used
|
|
30
|
+
!! to return a different value for different reasons)
|
|
31
|
+
!! @Note
|
|
32
|
+
!! 10/01/17 Samuel Ponce: Add Ford documentation
|
|
33
|
+
!! @endnote
|
|
34
|
+
!!
|
|
35
|
+
!
|
|
36
|
+
USE io_global, ONLY : stdout, ionode, ionode_id
|
|
37
|
+
USE parameters, ONLY : ntypx, npk, lmaxx
|
|
38
|
+
USE cell_base, ONLY : fix_volume, fix_area
|
|
39
|
+
USE control_flags, ONLY : conv_elec, gamma_only, ethr, lscf, twfcollect
|
|
40
|
+
USE control_flags, ONLY : conv_ions, istep, nstep, restart, lmd, lbfgs
|
|
41
|
+
USE command_line_options, ONLY : command_line
|
|
42
|
+
USE force_mod, ONLY : lforce, lstres, sigma, force
|
|
43
|
+
USE check_stop, ONLY : check_stop_init, check_stop_now
|
|
44
|
+
USE mp_images, ONLY : intra_image_comm
|
|
45
|
+
USE extrapolation, ONLY : update_file, update_pot
|
|
46
|
+
USE scf, ONLY : rho
|
|
47
|
+
USE lsda_mod, ONLY : nspin
|
|
48
|
+
USE fft_base, ONLY : dfftp
|
|
49
|
+
USE qmmm, ONLY : qmmm_initialization, qmmm_shutdown, &
|
|
50
|
+
qmmm_update_positions, qmmm_update_forces
|
|
51
|
+
USE qexsd_module, ONLY: qexsd_set_status
|
|
52
|
+
!
|
|
53
|
+
IMPLICIT NONE
|
|
54
|
+
INTEGER, INTENT(OUT) :: exit_status
|
|
55
|
+
!! Gives the exit status at the end
|
|
56
|
+
LOGICAL, external :: matches
|
|
57
|
+
!! checks if first string is contained in the second
|
|
58
|
+
INTEGER :: idone
|
|
59
|
+
! counter of electronic + ionic steps done in this run
|
|
60
|
+
!
|
|
61
|
+
exit_status = 0
|
|
62
|
+
IF ( ionode ) WRITE( unit = stdout, FMT = 9010 ) ntypx, npk, lmaxx
|
|
63
|
+
!
|
|
64
|
+
IF (ionode) CALL plugin_arguments()
|
|
65
|
+
CALL plugin_arguments_bcast( ionode_id, intra_image_comm )
|
|
66
|
+
!
|
|
67
|
+
! ... needs to come before iosys() so some input flags can be
|
|
68
|
+
! overridden without needing to write PWscf specific code.
|
|
69
|
+
!
|
|
70
|
+
CALL qmmm_initialization()
|
|
71
|
+
!
|
|
72
|
+
! ... convert to internal variables
|
|
73
|
+
!
|
|
74
|
+
CALL iosys()
|
|
75
|
+
!
|
|
76
|
+
! ... If executable names is "dist.x", compute atomic distances, angles,
|
|
77
|
+
! ... nearest neighbors, write them to file "dist.out", exit
|
|
78
|
+
!
|
|
79
|
+
IF ( matches('dist.x',command_line) ) THEN
|
|
80
|
+
IF (ionode) CALL run_dist ( exit_status )
|
|
81
|
+
RETURN
|
|
82
|
+
END IF
|
|
83
|
+
!
|
|
84
|
+
IF ( gamma_only ) WRITE( UNIT = stdout, &
|
|
85
|
+
& FMT = '(/,5X,"gamma-point specific algorithms are used")' )
|
|
86
|
+
!
|
|
87
|
+
! call to void routine for user defined / plugin patches initializations
|
|
88
|
+
!
|
|
89
|
+
CALL plugin_initialization()
|
|
90
|
+
!
|
|
91
|
+
CALL check_stop_init()
|
|
92
|
+
!
|
|
93
|
+
CALL setup ()
|
|
94
|
+
!
|
|
95
|
+
CALL qmmm_update_positions()
|
|
96
|
+
!
|
|
97
|
+
CALL init_run()
|
|
98
|
+
!
|
|
99
|
+
! ... dry run: code will stop here if called with exit file present
|
|
100
|
+
! ... useful for a quick and automated way to check input data
|
|
101
|
+
!
|
|
102
|
+
IF ( check_stop_now() ) THEN
|
|
103
|
+
CALL qexsd_set_status(255)
|
|
104
|
+
CALL punch( 'config' )
|
|
105
|
+
exit_status = 255
|
|
106
|
+
RETURN
|
|
107
|
+
ENDIF
|
|
108
|
+
!
|
|
109
|
+
main_loop: DO idone = 1, nstep
|
|
110
|
+
!
|
|
111
|
+
! ... electronic self-consistency or band structure calculation
|
|
112
|
+
!
|
|
113
|
+
IF ( .NOT. lscf) THEN
|
|
114
|
+
CALL non_scf ()
|
|
115
|
+
ELSE
|
|
116
|
+
CALL electrons()
|
|
117
|
+
END IF
|
|
118
|
+
!
|
|
119
|
+
! ... code stopped by user or not converged
|
|
120
|
+
!
|
|
121
|
+
IF ( check_stop_now() .OR. .NOT. conv_elec ) THEN
|
|
122
|
+
IF ( check_stop_now() ) exit_status = 255
|
|
123
|
+
IF ( .NOT. conv_elec ) exit_status = 2
|
|
124
|
+
CALL qexsd_set_status(exit_status)
|
|
125
|
+
! workaround for the case of a single k-point
|
|
126
|
+
twfcollect = .FALSE.
|
|
127
|
+
CALL punch( 'config' )
|
|
128
|
+
RETURN
|
|
129
|
+
ENDIF
|
|
130
|
+
!
|
|
131
|
+
! ... ionic section starts here
|
|
132
|
+
!
|
|
133
|
+
CALL start_clock( 'ions' ); !write(*,*)' start ions' ; FLUSH(6)
|
|
134
|
+
conv_ions = .TRUE.
|
|
135
|
+
!
|
|
136
|
+
! ... recover from a previous run, if appropriate
|
|
137
|
+
!
|
|
138
|
+
!IF ( restart .AND. lscf ) CALL restart_in_ions()
|
|
139
|
+
!
|
|
140
|
+
! ... file in CASINO format written here if required
|
|
141
|
+
!
|
|
142
|
+
IF ( lmd ) THEN
|
|
143
|
+
CALL pw2casino( istep )
|
|
144
|
+
ELSE
|
|
145
|
+
CALL pw2casino( 0 )
|
|
146
|
+
END IF
|
|
147
|
+
!
|
|
148
|
+
! ... force calculation
|
|
149
|
+
!
|
|
150
|
+
IF ( lforce ) CALL forces()
|
|
151
|
+
!
|
|
152
|
+
! ... stress calculation
|
|
153
|
+
!
|
|
154
|
+
IF ( lstres ) CALL stress ( sigma )
|
|
155
|
+
!
|
|
156
|
+
! ... send out forces to MM code in QM/MM run
|
|
157
|
+
!
|
|
158
|
+
IF ( lmd .OR. lbfgs ) THEN
|
|
159
|
+
!
|
|
160
|
+
if (fix_volume) CALL impose_deviatoric_stress(sigma)
|
|
161
|
+
if (fix_area) CALL impose_deviatoric_stress_2d(sigma)
|
|
162
|
+
!
|
|
163
|
+
! ... save data needed for potential and wavefunction extrapolation
|
|
164
|
+
!
|
|
165
|
+
CALL update_file ( )
|
|
166
|
+
!
|
|
167
|
+
! ... ionic step (for molecular dynamics or optimization)
|
|
168
|
+
!
|
|
169
|
+
CALL move_ions ( idone )
|
|
170
|
+
!
|
|
171
|
+
! ... then we save restart information for the new configuration
|
|
172
|
+
!
|
|
173
|
+
IF ( idone <= nstep .AND. .NOT. conv_ions ) THEN
|
|
174
|
+
CALL qexsd_set_status(255)
|
|
175
|
+
CALL punch( 'config' )
|
|
176
|
+
END IF
|
|
177
|
+
!
|
|
178
|
+
END IF
|
|
179
|
+
!
|
|
180
|
+
CALL stop_clock( 'ions' ); !write(*,*)' stop ions' ; FLUSH(6)
|
|
181
|
+
!
|
|
182
|
+
CALL qmmm_update_forces( force, rho%of_r, nspin, dfftp)
|
|
183
|
+
!
|
|
184
|
+
! ... exit condition (ionic convergence) is checked here
|
|
185
|
+
!
|
|
186
|
+
IF ( lmd .OR. lbfgs ) CALL add_qexsd_step(idone)
|
|
187
|
+
IF ( conv_ions ) EXIT main_loop
|
|
188
|
+
!
|
|
189
|
+
! ... receive new positions from MM code in QM/MM run
|
|
190
|
+
!
|
|
191
|
+
CALL qmmm_update_positions()
|
|
192
|
+
!
|
|
193
|
+
! ... terms of the hamiltonian depending upon nuclear positions
|
|
194
|
+
! ... are reinitialized here
|
|
195
|
+
!
|
|
196
|
+
IF ( lmd .OR. lbfgs ) THEN
|
|
197
|
+
!
|
|
198
|
+
! ... update the wavefunctions, charge density, potential
|
|
199
|
+
! ... update_pot initializes structure factor array as well
|
|
200
|
+
!
|
|
201
|
+
CALL update_pot()
|
|
202
|
+
!
|
|
203
|
+
! ... re-initialize atomic position-dependent quantities
|
|
204
|
+
!
|
|
205
|
+
CALL hinit1()
|
|
206
|
+
!
|
|
207
|
+
END IF
|
|
208
|
+
! ... Reset convergence threshold of iterative diagonalization for
|
|
209
|
+
! ... the first scf iteration of each ionic step (after the first)
|
|
210
|
+
!
|
|
211
|
+
ethr = 1.0D-6
|
|
212
|
+
!
|
|
213
|
+
END DO main_loop
|
|
214
|
+
!
|
|
215
|
+
! ... save final data file
|
|
216
|
+
!
|
|
217
|
+
CALL qexsd_set_status(exit_status)
|
|
218
|
+
CALL punch('all')
|
|
219
|
+
!
|
|
220
|
+
CALL qmmm_shutdown()
|
|
221
|
+
!
|
|
222
|
+
IF ( .NOT. conv_ions ) exit_status = 3
|
|
223
|
+
RETURN
|
|
224
|
+
!
|
|
225
|
+
9010 FORMAT( /,5X,'Current dimensions of program PWSCF are:', &
|
|
226
|
+
& /,5X,'Max number of different atomic species (ntypx) = ',I2,&
|
|
227
|
+
& /,5X,'Max number of k-points (npk) = ',I6,&
|
|
228
|
+
& /,5X,'Max angular momentum in pseudopotentials (lmaxx) = ',i2)
|
|
229
|
+
!
|
|
230
|
+
END SUBROUTINE run_pwscf
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
function plumed_preliminary_test(){
|
|
4
|
+
# check if the README.md contains the word ESPRESSO and if qe has been already configured
|
|
5
|
+
grep -q ESPRESSO README.md 1>/dev/null 2>/dev/null && test -f make.inc
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function plumed_before_patch(){
|
|
9
|
+
cp make.inc make.inc.plumedbck
|
|
10
|
+
PWD=`pwd`
|
|
11
|
+
echo "include ${PWD}/Plumed.inc ">make.inc
|
|
12
|
+
awk '{if($1=="QELIBS" && $2=="="){sub("=","= $(PLUMED_LOAD)"); print}else{print }}' make.inc.plumedbck >> make.inc
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function plumed_after_revert(){
|
|
16
|
+
mv make.inc.plumedbck make.inc
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function plumed_patch_info(){
|
|
20
|
+
echo ""
|
|
21
|
+
echo "For more information on Quantum Espresso you should visit http://www.quantum-espresso.org"
|
|
22
|
+
echo "To apply this patch configure Quantum Espresso by running ./configure first."
|
|
23
|
+
echo "The newer CMake installation workflow is not supported yet."
|
|
24
|
+
echo "To enable PLUMED on md runs use pw.x -plumed < md.in > md.out."
|
|
25
|
+
echo "A fixed PLUMED input file name 'plumed.dat' is used."
|
|
26
|
+
echo "This patch was kindly provided by Ralf Meyer, email: meyer.ralf(at)yahoo.com"
|
|
27
|
+
}
|
|
28
|
+
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
#/a Makefile for Modules
|
|
2
|
+
|
|
3
|
+
include ../make.inc
|
|
4
|
+
|
|
5
|
+
# location of needed modules
|
|
6
|
+
MODFLAGS=$(BASEMOD_FLAGS) \
|
|
7
|
+
$(MOD_FLAG)../ELPA/src
|
|
8
|
+
|
|
9
|
+
# list of modules
|
|
10
|
+
|
|
11
|
+
MODULES = \
|
|
12
|
+
additional_kpoints.o \
|
|
13
|
+
autopilot.o \
|
|
14
|
+
basic_algebra_routines.o \
|
|
15
|
+
becmod.o \
|
|
16
|
+
bfgs_module.o \
|
|
17
|
+
bspline.o \
|
|
18
|
+
bz_form.o \
|
|
19
|
+
cell_base.o \
|
|
20
|
+
check_stop.o \
|
|
21
|
+
command_line_options.o \
|
|
22
|
+
compute_dipole.o \
|
|
23
|
+
constants.o \
|
|
24
|
+
constraints_module.o \
|
|
25
|
+
control_flags.o \
|
|
26
|
+
coulomb_vcut.o \
|
|
27
|
+
dist.o \
|
|
28
|
+
electrons_base.o \
|
|
29
|
+
environment.o \
|
|
30
|
+
fd_gradient.o \
|
|
31
|
+
fft_base.o \
|
|
32
|
+
fft_rho.o \
|
|
33
|
+
fsockets.o \
|
|
34
|
+
funct.o \
|
|
35
|
+
generate_function.o \
|
|
36
|
+
gradutils.o \
|
|
37
|
+
gvecw.o \
|
|
38
|
+
input_parameters.o \
|
|
39
|
+
invmat.o \
|
|
40
|
+
io_files.o \
|
|
41
|
+
io_global.o \
|
|
42
|
+
ions_base.o \
|
|
43
|
+
kind.o \
|
|
44
|
+
lmdif.o \
|
|
45
|
+
mdiis.o \
|
|
46
|
+
mm_dispersion.o \
|
|
47
|
+
mp_bands.o \
|
|
48
|
+
mp_exx.o \
|
|
49
|
+
mp_global.o \
|
|
50
|
+
mp_images.o \
|
|
51
|
+
mp_pools.o \
|
|
52
|
+
mp_wave.o \
|
|
53
|
+
mp_world.o \
|
|
54
|
+
noncol.o \
|
|
55
|
+
open_close_input_file.o \
|
|
56
|
+
parameters.o \
|
|
57
|
+
parser.o \
|
|
58
|
+
plugin_flags.o \
|
|
59
|
+
plugin_arguments.o \
|
|
60
|
+
plugin_variables.o \
|
|
61
|
+
pw_dot.o \
|
|
62
|
+
qmmm.o \
|
|
63
|
+
random_numbers.o \
|
|
64
|
+
read_cards.o \
|
|
65
|
+
read_input.o \
|
|
66
|
+
read_namelists.o \
|
|
67
|
+
read_pseudo.o \
|
|
68
|
+
recvec.o \
|
|
69
|
+
recvec_subs.o \
|
|
70
|
+
run_info.o \
|
|
71
|
+
space_group.o \
|
|
72
|
+
set_para_diag.o \
|
|
73
|
+
set_signal.o \
|
|
74
|
+
set_vdw_corr.o \
|
|
75
|
+
setqf.o \
|
|
76
|
+
timestep.o\
|
|
77
|
+
tsvdw.o\
|
|
78
|
+
mbdlib.o\
|
|
79
|
+
version.o \
|
|
80
|
+
wannier_gw.o\
|
|
81
|
+
wannier_new.o \
|
|
82
|
+
wavefunctions.o \
|
|
83
|
+
ws_base.o \
|
|
84
|
+
xc_vdW_DF.o \
|
|
85
|
+
xc_rVV10.o \
|
|
86
|
+
io_base.o \
|
|
87
|
+
qes_types_module.o \
|
|
88
|
+
qes_libs_module.o \
|
|
89
|
+
qes_write_module.o \
|
|
90
|
+
qes_read_module.o \
|
|
91
|
+
qes_reset_module.o \
|
|
92
|
+
qes_init_module.o \
|
|
93
|
+
qes_bcast_module.o \
|
|
94
|
+
qexsd.o \
|
|
95
|
+
qexsd_copy.o \
|
|
96
|
+
qexsd_init.o \
|
|
97
|
+
qexsd_input.o \
|
|
98
|
+
hdf5_qe.o\
|
|
99
|
+
qeh5_module.o\
|
|
100
|
+
fox_init_module.o \
|
|
101
|
+
xsf.o \
|
|
102
|
+
wyckoff.o \
|
|
103
|
+
wypos.o \
|
|
104
|
+
zvscal.o \
|
|
105
|
+
wave_gauge.o \
|
|
106
|
+
plumed.o
|
|
107
|
+
|
|
108
|
+
# list of subroutines and functions (not modules) previously found in flib/clib
|
|
109
|
+
|
|
110
|
+
OBJS = \
|
|
111
|
+
atom_weight.o \
|
|
112
|
+
capital.o \
|
|
113
|
+
cryst_to_car.o \
|
|
114
|
+
expint.o \
|
|
115
|
+
generate_k_along_lines.o \
|
|
116
|
+
has_xml.o \
|
|
117
|
+
inpfile.o \
|
|
118
|
+
int_to_char.o \
|
|
119
|
+
latgen.o \
|
|
120
|
+
linpack.o \
|
|
121
|
+
matches.o \
|
|
122
|
+
plot_io.o \
|
|
123
|
+
radial_gradients.o \
|
|
124
|
+
rgen.o \
|
|
125
|
+
recips.o \
|
|
126
|
+
remove_tot_torque.o \
|
|
127
|
+
set_hubbard_l.o \
|
|
128
|
+
set_hubbard_n.o \
|
|
129
|
+
sort.o \
|
|
130
|
+
trimcheck.o \
|
|
131
|
+
test_input_file.o \
|
|
132
|
+
date_and_tim.o \
|
|
133
|
+
volume.o \
|
|
134
|
+
wgauss.o \
|
|
135
|
+
w0gauss.o \
|
|
136
|
+
w1gauss.o \
|
|
137
|
+
deviatoric.o \
|
|
138
|
+
customize_signals.o \
|
|
139
|
+
qmmm_aux.o \
|
|
140
|
+
sockets.o \
|
|
141
|
+
stack.o
|
|
142
|
+
|
|
143
|
+
# GPU versions of modules
|
|
144
|
+
MODULES += \
|
|
145
|
+
wavefunctions_gpu.o \
|
|
146
|
+
becmod_gpu.o \
|
|
147
|
+
becmod_subs_gpu.o \
|
|
148
|
+
cuda_subroutines.o \
|
|
149
|
+
random_numbers_gpu.o
|
|
150
|
+
|
|
151
|
+
TLDEPS= libfox libutil libla libfft librxc
|
|
152
|
+
|
|
153
|
+
all : libqemod.a
|
|
154
|
+
|
|
155
|
+
## The following is needed only for lapack compiled from sources
|
|
156
|
+
|
|
157
|
+
dlamch.o : dlamch.f
|
|
158
|
+
$(F77) $(FFLAGS_NOOPT) -c $<
|
|
159
|
+
|
|
160
|
+
libqemod.a: $(MODULES) $(OBJS)
|
|
161
|
+
$(AR) $(ARFLAGS) $@ $?
|
|
162
|
+
$(RANLIB) $@
|
|
163
|
+
|
|
164
|
+
tldeps :
|
|
165
|
+
if test -n "$(TLDEPS)" ; then \
|
|
166
|
+
( cd ../.. ; $(MAKE) $(TLDEPS) || exit 1 ) ; fi
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
clean :
|
|
170
|
+
- /bin/rm -f *.o *.a *.d *.i *~ *_tmp.f90 *.mod *.L plumed.f90
|
|
171
|
+
|
|
172
|
+
plumed.f90:
|
|
173
|
+
cp $(PLUMED_FORTRAN) plumed.f90
|
|
174
|
+
|
|
175
|
+
include make.depend
|