n2p2 - A neural network potential package
Loading...
Searching...
No Matches
Prediction.cpp
Go to the documentation of this file.
1// n2p2 - A neural network potential package
2// Copyright (C) 2018 Andreas Singraber (University of Vienna)
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17#include "Prediction.h"
18#include "Stopwatch.h"
19#include <fstream> // std::ifstream
20#include <iostream>
21#include <map> // std::map
22#include <stdexcept> // std::runtime_error
23#include "utility.h"
24
25using namespace std;
26using namespace nnp;
27
29 fileNameSettings ("input.nn" ),
30 fileNameScaling ("scaling.data" ),
31 formatWeightsFilesShort ("weights.%03zu.data" ),
32 formatWeightsFilesCharge("weightse.%03zu.data")
33{
34}
35
37{
38 initialize();
42 map<string, string> formatWeights {
43 {"short", formatWeightsFilesShort},
45 };
46 setupNeuralNetworkWeights(formatWeights);
47 setupSymmetryFunctionStatistics(false, false, true, false);
48}
49
50void Prediction::readStructureFromFile(string const& fileName)
51{
52 ifstream file;
53 file.open(fileName.c_str());
54 structure.reset();
55 structure.setElementMap(elementMap);
56 structure.readFromFile(fileName);
58 if (normalize)
59 {
61 }
62 file.close();
63
64 return;
65}
66
68{
70 if (normalize)
71 {
73 }
76
77 return;
78}
bool normalize
Definition Mode.h:665
double convEnergy
Definition Mode.h:673
ElementMap elementMap
Global element map, populated by setupElementMap().
Definition Mode.h:627
void addEnergyOffset(Structure &structure, bool ref=true)
Add atomic energy offsets to reference energy.
Definition Mode.cpp:2034
void initialize()
Write welcome message with version information.
Definition Mode.cpp:56
double convLength
Definition Mode.h:674
void setupGeneric(std::string const &nnpDir="", bool skipNormalize=false, bool initialHardness=false)
Combine multiple setup routines and provide a basic NNP setup.
Definition Mode.cpp:213
double meanEnergy
Definition Mode.h:672
virtual void setupNeuralNetworkWeights(std::map< std::string, std::string > fileNameFormats=std::map< std::string, std::string >())
Set up neural network weights from files with given name format.
Definition Mode.cpp:1469
virtual void setupSymmetryFunctionScaling(std::string const &fileName="scaling.data")
Set up symmetry function scaling from file.
Definition Mode.cpp:736
double convCharge
Definition Mode.h:675
void removeEnergyOffset(Structure &structure, bool ref=true)
Remove atomic energy offsets from reference energy.
Definition Mode.cpp:2053
void evaluateNNP(Structure &structure, bool useForces=true, bool useDEdG=true)
Evaluate neural network potential (includes total energy, optionally forces and in some cases charges...
Definition Mode.cpp:1984
void setupSymmetryFunctionStatistics(bool collectStatistics, bool collectExtrapolationWarnings, bool writeExtrapolationWarnings, bool stopOnExtrapolationWarnings)
Set up symmetry function statistics collection.
Definition Mode.cpp:1127
void loadSettingsFile(std::string const &fileName="input.nn")
Open settings file and load all keywords into memory.
Definition Mode.cpp:162
void readStructureFromFile(std::string const &fileName="input.data")
std::string fileNameSettings
Definition Prediction.h:35
Structure structure
Definition Prediction.h:39
std::string formatWeightsFilesShort
Definition Prediction.h:37
std::string formatWeightsFilesCharge
Definition Prediction.h:38
std::string fileNameScaling
Definition Prediction.h:36
Definition Atom.h:29