Git Product home page Git Product logo

mpm2d's Introduction

MPM2D

2D implementation of the Material Point Method.

water snow elastic

Sections

Overview

C++ implementation of the Material Point Method.

The Material Point Method is a numerical technique used to simulate the behavior of continuum materials.

The continuum body is described by a number a Lagrangian elements : the material points. Kinematic equations are solved on the material points
The material points are surrounded by a background Eulerian grid where the dynamic equations are solved.

It can be summarize in 4 main steps:

  1. Transfer data from particles de grid nodes
  2. Update node state (apply forces)
  3. Transfer data from grid nodes to particles
  4. Update particles state

Papers implemented

The following papers are implemented here:

Dependencies

The following libraries are includes in the ext/ directory:

This project additionally requires the following libraries:

  • OpenGL and GLFW - Visuals.
  • Eigen - Eigen can be used to replace Algebra, but it is not as fast. The source code is in ext/Eigen/MPM2D/src/ (not updated).

The followings are optional dependencies :

Code structure

The code, located in src/, is structured as following:

  • main.cpp: OpenGL context. Run simulation.
  • solver.h and solver.cpp: MPM algorithm functions (transfers and updates). Rendering and WriteToFile.
  • node.h and node.cpp: Class for grid nodes.
  • border.h and border.cpp: Class for 2D linear borders. Collision and Friction.
  • particle.h and particle.cpp: Class and subclasses for particles and materials. Constitutive model and deformation functions.
  • constants.h: Option control and global constants.

Implementation

Characteristics:

Here are the main features of this implementation:

  • Sand, Water, Snow and purely elastic simulations already implemented
  • 2D.
  • Affine-Particle-in-Cell (APIC) transfer type.
  • B-Spline Quadratic or Cubic interpolation functions (Quadratic is faster, but not as precise).
  • Node forces are updated with an explicit method.
  • The domain has to be a convex geometry (for collision detection).

Add material type:

It is easy to add a new type of material. In particle.h and particle.cpp, create a new subclasse of Particle. Beside constructors, the subclass must contain the following functions:

  • In particle.h:
static std::vector<NewMaterial> InitializeParticles() {
        // Define initial particle mass, volume, position, velocity and acceleration
        std::vector<NewMaterial> outParticles;
        // ...
	return outParticles;
}
static std::vector<NewMaterial> AddParticles() {
        // Define mass, volume, position, velocity and acceleration of particles to add during the simulation
	std::vector<NewMaterial> outParticles;
        // ...
	return outParticles;
}
  • In particle.cpp:
void NewMaterial::ConstitutiveModel() {
    // Update Ap (pre-update deformation gradient)
}
void NewMaterial::UpdateDeformation(const Matrix2f& T) {
    // Update deformation gradient. 
    // T is the sum of the close node velocity gradients.
    // Elasticity, Plasticity functions (return-mapping, hardening) ...
}
void NewMaterial::DrawParticle() {
    // OpenGL output of particle points
}

Change domain geometry:

The shape of the domain can be changed, but is has to follow this rules:

  • It has to be convex.
  • It has to be included in [CUB ; X_GRID - CUB] x [CUB ; Y_GRID - CUB], where CUB is the range of the interpolation function (2 for Cubic, 1.5 for Quadratic).
  • Borders have to be straight lines.

To modify the domain, in border.h, use the InitializeBorders static function:

static std::vector<Border> InitializeBorders() {
        std::vector<Border> outBorders;
        std::vector<Vector2f> Corners;

        // New border line
	Corners.push_back(Vector2f(X1, Y1));    // First point
	Corners.push_back(Vector2f(X2, Y2));    // Second point
        // type can be [1](sticky), [2](Separating) or [3](Sliding)
        // normal has to be oriented inside the domain and normalized
	outBorders.push_back(Border(type, normal, Corners));
	Corners.clear();

        // Add other border

	return outBorders;
}



Options

Here is a list of different options available. They can be modify in the constants.h file.

  • Grid:
// Size of the domain
const static int X_GRID = 128;
const static int Y_GRID = 64;
  • Particle:
// Select Particle subclass (material type). [Water], [DrySand], [Snow], [Elastic]
#define Material NewMaterial
  • Transfer particles <-> grid:
// Interpolation type: [1] Cubic - [2] Quadratic
#define INTERPOLATION 1	
// Time-step (typically about 1e-4)
const static float DT = 0.0001f;
  • Output (outputs will be generated in the out/ directory):
// Generate a .mp4 of the OpenGL window
#define RECORD_VIDEO true
// Generate a .ply file with node coordinates
#define WRITE_TO_FILE false	
// Draw nodes (active nodes have a different color)
#define DRAW_NODES false        // not recommended (slow)



mpm2d's People

Contributors

elias-gu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

mpm2d's Issues

About Eigen

A very excellent code of MPM. I saw a version using Eigen. But Snow and Elastic are not included in that code. can them run based on Eigen? Because i am trying to convert your code to 3D mode and algerbra.h cannot use like Vector3f. however, 3D elastic and snow cannot run successfully.

Can't link external dependecies

When I trying to compile the code, I put it into vs 2015 and add the include and libraries directories in Project Properties, and it shows the link error as:
Capture

Could you tell us how you configure your vs?

Thank you in advance.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.