Simpatico  v1.10
StressAutoCorrelation.h
1 #ifndef DDMD_STRESS_AUTO_CORRELATION_H
2 #define DDMD_STRESS_AUTO_CORRELATION_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <ddMd/analyzers/AutoCorrAnalyzer.h>
12 #include <util/space/Tensor.h>
13 
14 namespace DdMd
15 {
16 
17  using namespace Util;
18 
35  class StressAutoCorrelation : public AutoCorrAnalyzer<Tensor, double>
36  {
37 
38  public:
39 
45  StressAutoCorrelation(Simulation& simulation);
46 
51  {}
52 
60 
61  protected:
62 
63  virtual void computeData();
64  virtual Tensor data();
65 
66  };
67 
68 }
69 #endif
Compute an autocorrelation function for a sequence of Data values.
Parallel domain decomposition (DD) MD simulation.
Main object for a domain-decomposition MD simulation.
A Tensor represents a Cartesian tensor.
Definition: Tensor.h:32
Utility classes for scientific computation.
Definition: accumulators.mod:1
Compute the shear stress autocorrelation function.
virtual ~StressAutoCorrelation()
Destructor.