ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
relative.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2010-2022 The ESPResSo project
3 * Copyright (C) 2010,2011 Rudolf Weeber
4 *
5 * This file is part of ESPResSo.
6 *
7 * ESPResSo is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * ESPResSo is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22
23#include "config/config.hpp"
24
25#ifdef VIRTUAL_SITES_RELATIVE
26
27#include "BoxGeometry.hpp"
29
30#include <utils/Vector.hpp>
31#include <utils/matrix.hpp>
32
34 BoxGeometry const &box_geo);
36 CellStructure &cell_structure);
38vs_relative_pressure_tensor(CellStructure const &cell_structure);
39
40#endif // VIRTUAL_SITES_RELATIVE
Vector implementation and trait types for boost qvm interoperability.
This file contains the defaults for ESPResSo.
Matrix implementation and trait types for boost qvm interoperability.
Utils::Matrix< double, 3, 3 > vs_relative_pressure_tensor(CellStructure const &cell_structure)
Definition relative.cpp:194
void vs_relative_back_transfer_forces_and_torques(CellStructure &cell_structure)
Definition relative.cpp:166
void vs_relative_update_particles(CellStructure &cell_structure, BoxGeometry const &box_geo)
Definition relative.cpp:122
Describes a cell structure / cell system.
Matrix representation with static size.
Definition matrix.hpp:65