File: PotentialParticle.cpp

package info (click to toggle)
yade 2026.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,448 kB
  • sloc: cpp: 97,645; python: 52,173; sh: 677; makefile: 162
file content (16 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*CWBoon 2015 */

#ifdef YADE_POTENTIAL_PARTICLES
//! To implement potential particles (Houlsby 2009) using sphere
#include "PotentialParticle.hpp"

namespace yade { // Cannot have #include directive inside.

YADE_PLUGIN((PotentialParticle));


PotentialParticle::~PotentialParticle() { }

} // namespace yade

#endif // YADE_POTENTIAL_PARTICLES