PeriDEM 0.2.0
PeriDEM -- Peridynamics-based high-fidelity model for granular media
|
▼Cfe::BaseElem | A base class which provides methods to map points to/from reference element and to compute quadrature data |
Cfe::LineElem | A class for mapping and quadrature related operations for linear 2-node line element |
Cfe::QuadElem | A class for mapping and quadrature related operations for bi-linear quadrangle element |
Cfe::TetElem | A class for mapping and quadrature related operations for linear tetrahedron element |
Cfe::TriElem | A class for mapping and quadrature related operations for linear triangle element |
▼Cmaterial::BaseInfluenceFn | A base class for computing influence function |
Cmaterial::ConstInfluenceFn | A class to implement constant influence function |
Cmaterial::GaussianInfluenceFn | A class to implement Gaussian influence function |
Cmaterial::LinearInfluenceFn | A class to implement linear influence function |
▼Cnsearch::BaseNSearch | A class for nearest neighbor search |
Cnsearch::NFlannSearchKd< dim > | A class for nearest neighbor search using nanoflann library |
Cparticle::BaseParticle | A class to store particle geometry, nodal discretization, and methods |
Cutil::geometry::BoxPartition | Defines simple rectangle domain |
Cinp::ContactDeck | Structure to read and store particle-particle contact related input data |
Cinp::ContactPairDeck | Structure to read and store particle-particle contact related input data |
Cutil::DistributionSample< T > | Templated probability distribution |
Cgeometry::Fracture | A class for fracture state of bonds |
Cutil::geometry::GeomData | Input data for geometrical objects |
▼Cutil::geometry::GeomObject | Defines abstract geometrical domain |
Cutil::geometry::AnnulusGeomObject | Defines annulus rectangle |
Cutil::geometry::Circle | Defines circle |
Cutil::geometry::ComplexGeomObject | Defines complex geometrical object |
Cutil::geometry::Cube | Defines cube |
Cutil::geometry::Cuboid | Defines cuboid |
Cutil::geometry::Cylinder | Defines cylinder |
Cutil::geometry::Drum2D | Defines Drum2D |
Cutil::geometry::Hexagon | Defines Hexagon |
Cutil::geometry::Line | Defines Line |
Cutil::geometry::NullGeomObject | Defines null (empty) geom object |
Cutil::geometry::Rectangle | Defines Rectangle |
Cutil::geometry::Sphere | Defines sphere |
Cutil::geometry::Square | Defines Square |
Cutil::geometry::Triangle | Defines Triangle |
Cinp::Input | A class to read input file |
Cutil::io::InputParser | Input command line argument parser |
Crw::writer::LegacyVtkWriter | A vtk writer for simple point data and complex fem mesh data |
Cutil::io::Logger | Prints log to std::cout and also write to the file |
Cutil::io::LoggerDeck | Deck to store log parameters |
Cinp::MatData | Structure for elastic properties and fracture properties |
▼Cmaterial::Material | Collection of methods and database related to peridynamic material |
Cmaterial::PdElastic | A class providing methods to compute energy density and force of peridynamic material |
Cmaterial::PdState | A class providing methods to compute energy density and force of peridynamic material |
Cmaterial::PmbMaterial | A class providing methods to compute energy density and force of peridynamic material |
Cmaterial::RnpMaterial | A class providing methods to compute energy density and force of peridynamic material |
Cinp::MaterialDeck | Structure to read and store material related data |
Cutil::Matrix3 | A structure to represent 3d matrices |
Cfe::Mesh | A class for mesh data |
Cinp::MeshDeck | Structure to read and store mesh related input data |
▼Cmodel::ModelData | A class to store model data |
▼Cmodel::DEMModel | A class for discrete element particle simulation with peridynamic model |
Cperidynamics::Model | Main model class to simulate peridynamics deformation of single particle |
Ctwoparticle_demo::Model | Main model class to handle demo two-particle test implementation. Goal is to show that it is easy to specialize the DEMModel class for different scenarios |
Cinp::ModelDeck | Structure to read and store model related input data |
Cutil::parallel::MpiStatus | Struct that stores MPI-related information |
Crw::reader::MshReader | A class to read Gmsh (msh) mesh files |
Crw::writer::MshWriter | A .msh writer for simple point data and complex fem mesh data |
Cinp::OutputDeck | Structure to read input data for performing simulation output |
Cinp::ParticleDeck | Structure to read and store particle related input data |
▼Cloading::ParticleLoading | A base class to apply displacement and force boundary condition |
Cloading::ParticleFLoading | A class to apply force boundary condition |
Cloading::ParticleULoading | A class to apply displacement boundary condition |
Cparticle::ParticleTransform | A struct that stores transformation parameters and provides method to transform the particle. Basically, given a reference particle, this provides method to translate, rotate, and scale the reference particle |
Cinp::ParticleZone | User-input data for particle zone |
Cinp::PBCData | User-input data for particle neighbor search |
Cinp::PICDeck | User-input data for particle neighbor search |
Cinp::PNeighborDeck | User-input data for particle neighbor search |
Cutil::Point | A structure to represent 3d vectors |
Cnsearch::PointCloudAdaptor | Allows custom point cloud data structure to interface with nanoflann. See https://github.com/jlblancoc/nanoflann for more details |
Cfe::QuadData | A struct to store the quadrature data. List of data are |
Cparticle::RefParticle | A class to store reference particle related data. Consider a case of multiple hexagon-shaped particle related to each other by affine transformation. In such a case, it is possible to consider a reference hexagon particle and store the mesh and other details of only the reference particle. To get the data relevant to specific hexagon particle, one can apply the appropriate transformation on data for the reference hexagon particle |
Cinp::RestartDeck | Structure to read and store restart related data input |
Cutil::SymMatrix3 | A structure to represent 3d matrices |
Ctest::testNSearchData | |
Cnsearch::TreeSearchCheckIDExcludeResult< _DistanceType, _IndexType > | To collect results of nanoflann tree search. In this class, we check the tag of a potential point and add the point to search list if the tag does not match the tag of a point for which neighbors are computed. This is useful when computing neighbor list for contact. In this case, we do not want points from the same particle to be in the contact neighbor lsit. Default result output of nanoflann search uses std::vector<std::pair<size_t, double>>. We prefer to get the index and distance in a separate list |
Cnsearch::TreeSearchCheckIDIncludeResult< _DistanceType, _IndexType > | To collect results of nanoflann tree search. In this class, we check the tag of a potential point and add the point to search list if the tag matches the tag of a point for which neighbors are computed. This is useful when computing neighbor list for peridynamics. In this case, we want points from the same particle to be in the peridynamics neighbor lsit. Default result output of nanoflann search uses std::vector<std::pair<size_t, double>>. We prefer to get the index and distance in a separate list |
Cnsearch::TreeSearchResult< _DistanceType, _IndexType > | To collect results of nanoflann tree search. Default result output of nanoflann search uses std::vector<std::pair<size_t, double>>. We prefer to get the index and distance in a separate list |
Crw::reader::VtkParticleReader | A vtk writer for simple point data and complex fem mesh data |
Crw::writer::VtkParticleWriter | A vtk writer for simple point data and complex fem mesh data |
Crw::reader::VtkReader | A class to read VTK (.vtu) mesh files |
Crw::writer::VtkWriter | A vtk writer for simple point data and complex fem mesh data |
Crw::writer::Writer | A interface class writing data |
Cinp::Zone | User-input data for zones |