votca 2024.1-dev
Loading...
Searching...
No Matches
nematicorder.h
Go to the documentation of this file.
1/*
2 * Copyright 2009-2019 The VOTCA Development Team (http://www.votca.org)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18#ifndef VOTCA_CSG_NEMATICORDER_H
19#define VOTCA_CSG_NEMATICORDER_H
20
21// VOTCA includes
22#include <votca/tools/eigen.h>
23
24// Local VOTCA includes
25#include "topology.h"
26
27namespace votca {
28namespace csg {
29
31 public:
32 NematicOrder() = default;
33 ~NematicOrder() = default;
34
35 void Process(Topology &top, const std::string &filter = "*");
36
37 Eigen::SelfAdjointEigenSolver<Eigen::Matrix3d> &NematicU() {
38 return nemat_u_;
39 }
40 Eigen::SelfAdjointEigenSolver<Eigen::Matrix3d> &NematicV() {
41 return nemat_v_;
42 }
43 Eigen::SelfAdjointEigenSolver<Eigen::Matrix3d> &NematicW() {
44 return nemat_w_;
45 }
46
47 private:
48 Eigen::Matrix3d mu_, mv_, mw_;
49 Eigen::SelfAdjointEigenSolver<Eigen::Matrix3d> nemat_u_, nemat_v_, nemat_w_;
50};
51
52} // namespace csg
53} // namespace votca
54
55#endif /* VOTCA_CSG_NEMATICORDER_H */
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > & NematicW()
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > nemat_v_
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > nemat_w_
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > & NematicU()
void Process(Topology &top, const std::string &filter="*")
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > nemat_u_
Eigen::SelfAdjointEigenSolver< Eigen::Matrix3d > & NematicV()
topology of the whole system
Definition topology.h:81
base class for all analysis tools
Definition basebead.h:33