Files
LIGGGHTS-PFM/src/granular_wall.cpp
2014-06-12 12:54:12 +02:00

38 lines
1.1 KiB
C++

/* ----------------------------------------------------------------------
LIGGGHTS - LAMMPS Improved for General Granular and Granular Heat
Transfer Simulations
LIGGGHTS is part of the CFDEMproject
www.liggghts.com | www.cfdem.com
Christoph Kloss, christoph.kloss@cfdem.com
Copyright 2009-2012 JKU Linz
Copyright 2012- DCS Computing GmbH, Linz
LIGGGHTS is based on LAMMPS
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
This software is distributed under the GNU General Public License.
See the README file in the top-level directory.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing authors:
Richard Berger (JKU Linz)
------------------------------------------------------------------------- */
#include "granular_wall.h"
using namespace LIGGGHTS::Walls;
IGranularWall::~IGranularWall()
{
}
Factory & Factory::instance() {
static Factory _instance;
return _instance;
}