Parallel Finite Element - General geometry Ewald-like Method
Part of Continuum-particle Simulation Suite under MICCOM
fix_point_discretizedWall_lj_cut.h
Go to the documentation of this file.
1 // Parallel Finite Element-General Geometry Ewald-like Method.
2 // Copyright (C) 2015-2016 Xujun Zhao, Jiyuan Li, Xikai Jiang
3 
4 // This code is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 
10 // This code is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 
15 
16 // You should have received a copy of the GNU General Public
17 // License along with this code; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 
20 
21 #pragma once
22 
23 #include "fix_point.h"
24 namespace libMesh
25 {
26 
28 {
29 
30 public:
31 
33 
35 
36  void initParams();
37 
38  void print_fix();
39 
40  void compute();
41 
42  void read_wall_particle();
43 protected:
44  Real epsilon;
45  Real sigma;
46  Real rCut;
47  unsigned int num_wall_particles;
48  const std::string wall_particle_filename = "wall_particle.pos";
49  std::vector<Point> wall_particle_pos;
50 
51 };
52 
53 }
Real epsilon
Definition: fix_point_discretizedWall_lj_cut.h:44
Real rCut
Definition: fix_point_discretizedWall_lj_cut.h:46
~FixPointDiscretizedWallLJCut()
Definition: fix_point_discretizedWall_lj_cut.h:34
FixPointDiscretizedWallLJCut(PMLinearImplicitSystem &pm_sys)
Definition: fix_point_discretizedWall_lj_cut.C:4
Definition: fix_point.h:40
Definition: fix_point_discretizedWall_lj_cut.h:27
Real sigma
Definition: fix_point_discretizedWall_lj_cut.h:45
Definition: brownian_system.h:58
unsigned int num_wall_particles
Definition: fix_point_discretizedWall_lj_cut.h:47
const std::string wall_particle_filename
Definition: fix_point_discretizedWall_lj_cut.h:48
void read_wall_particle()
Definition: fix_point_discretizedWall_lj_cut.C:59
Definition: pm_linear_implicit_system.h:52
void initParams()
Check if num of parameters are correct.
Definition: fix_point_discretizedWall_lj_cut.C:12
void print_fix()
Definition: fix_point_discretizedWall_lj_cut.C:30
std::vector< Point > wall_particle_pos
Definition: fix_point_discretizedWall_lj_cut.h:49
void compute()
Definition: fix_point_discretizedWall_lj_cut.C:38