CRESSim–MPM: A Material Point Method Library for Surgical Soft Body Simulation with Cutting and Suturing
Abstract
A number of recent studies have focused on developing surgical simulation platforms to train machine learning (ML) agents or models with synthetic data for surgical assistance. While existing platforms excel at tasks such as rigid body manipulation and soft body deformation, they struggle to simulate more complex soft body behaviors like cutting and suturing. A key challenge lies in modeling soft body fracture and splitting using the finite-element method (FEM), which is the predominant approach in current platforms. Additionally, the two-way suture needle/thread contact inside a soft body is further complicated when using FEM. In this work, we use the material point method (MPM) for such challenging simulations and propose new rigid geometries and soft-rigid contact methods specifically designed for them. We introduce CRESSim-MPM, a GPU-accelerated MPM library that integrates multiple MPM solvers and incorporates surgical geometries for cutting and suturing, serving as a specialized physics engine for surgical applications. It is further integrated into Unity, requiring minimal modifications to existing projects for soft body simulation. We demonstrate the simulator’s capabilities in real-time simulation of cutting and suturing on soft tissue and provide an initial performance evaluation of different MPM solvers when simulating varying numbers of particles. The source code is available at https://github.com/yafei-ou/CRESSim-MPM.
I INTRODUCTION
Realistic and efficient simulators are playing an increasingly important role in robotics research, not only because they serve as a playground for validating robot control and automation methods, but also because they provide as much synthetic data as possible that can be used for training and testing machine learning (ML) models [1, 2, 3, 4, 5, 6], reducing the need of real-world dataset.
While there are numerous high-performance and real-time simulators for other robotics applications, such as autonomous driving (e.g., CARLA) and general robot manipulation (e.g., Isaac Sim), there are limited resources in terms of surgical robotics simulation. Although simulating rigid surgical instruments is usually not challenging, the simulation of surgical scenes and operations requires specific simulation capabilities less present in other robotics fields.
The nature of surgery requires simulating diverse objects, involving rigid bodies (e.g., surgical instruments and bones), soft bodies (e.g., soft tissue), and fluids (e.g., blood and smoke). Additionally, a unique range of manipulation is needed, including cutting, suturing, burning (cauterization), fluid suction, and irrigation, among others. Simulating and rendering each of these objects and the manipulation types can be a unique research field, making it particularly challenging to develop simulators that meet a wide range of these requirements for surgical robotics research. As a large group of surgical robotics researchers focus on increasing the level of autonomy in surgeries using ML, the lack of efficient and realistic surgical simulators remains a significant barrier.

Simulating soft tissue and the corresponding surgical interactions such as cutting and suturing is an extensively explored area. A large amount of previous work utilizes the finite element method (FEM) for simulating soft bodies, including the widely used SOFA Framework [7]. While FEM is accurate for biomedical modeling, its expensive computational cost makes it difficult to achieve efficient and parallel simulation often needed by robotics researchers. Interactions such as cutting and suturing further require real-time tetrahedron re-meshing algorithms and complex contact constraints when using FEM, making it more computationally expensive. FEM also suffers from inaccuracies and instabilities under large deformations required in surgical simulation due to the distorted finite elements. Additionally, while GPUs can accelerate certain FEM computations, achieving full parallel efficiency remains difficult despite ongoing efforts [8].
The material point method (MPM) [9] is a promising yet underexplored approach for surgical simulation. The technique, together with its variations and improvements, has shown wide application in diverse fields including solid mechanics, chemical physics, and computer animation. MPM utilizes material points (particles) and a background grid for simulating continuum materials, including both solids and fluids. Despite being a hybrid approach using both Lagrangian particles and an Eulerian grid, it is often viewed as a meshfree method [10] and largely mitigates the disadvantages of the mesh-based FEM. Although it can be more computationally expensive than FEM if implemented on the CPU, its efficiency can be boosted significantly by GPU acceleration. It performs well under large deformations and can simulate fracture without re-meshing. As will be shown in this work, it also enables straightforward rigid coupling for simulating interactions such as cutting and suturing.
Leveraging these strengths, we now present CRESSim-MPM, a GPU-accelerated MPM library tailored for surgical simulation, enabling both soft tissue cutting and suturing within one solver. Our contributions include:
-
•
A CUDA-based MPM library supporting multiple MPM solvers with C-style APIs for efficient integration with external applications and other physics solvers.
-
•
Custom geometries and contact models designed to simulate surgical interactions between MPM soft bodies and scalpels, suture needles, and suture threads.
-
•
A Unity package that allows easy use of the library and enables two-way interactions between MPM-based soft bodies and Unity’s built-in rigid body physics.
Based on these, we demonstrate:
-
•
A preliminary evaluation of the simulation speed using different MPM solvers and number of particles.
-
•
Real-time soft tissue cutting and suturing simulation within Unity, as shown in Fig. 1.
-
•
Teleoperation using the Master Tool Manipulator (MTM) from the da Vinci Research Kit (dVRK) [11].
To the best of our knowledge, this is also the first work to simulate soft tissue suturing using the MPM. Our method couples 1D suturing geometries (i.e., an arc-shaped needle with segmented suture thread) with soft tissue dynamics, enabling two-way coupling between MPM soft bodies and 1D rigid bodies. This formulation also lays the groundwork for incorporating other solvers, such as position-based dynamics (PBD), for future extensions. The use of MPM further allows for easy future integration of fluids, such as blood and smoke in surgeries, as MPM naturally supports fluid simulation [10].
CRESSim-MPM is part of the CRESSim project111https://tbs-ualberta.github.io/CRESSim/ [12, 6].
II RELATED WORK
II-A Surgical Simulators and Surgical Robotics
Surgical simulator development, particularly in the area of software-based (virtual) simulators, has mainly been influenced by two streams. The first one originates from the need for surgical training and skills assessment within a simulated environment, with the users being surgeons, residents, and medical researchers. This category primarily includes virtual simulators and hybrid simulators that are capable of simulating a wide range of surgical training tasks, such as cutting, suturing, and cauterization. Examples of these are the commercial ones, such as da Vinci SimNow222https://www.intuitive.com/products-and-services/da-vinci/learning/simnow/ and the open-source ones such as iMSTK333https://www.imstk.org/. However, they are less used by robotics researchers due to their proprietary nature, the lack of real-time performance, or difficulty in integrating with existing software, such as the Robot Operating System (ROS).
The second stream arises from the recent trend in surgical robotics research, particularly for surgical automation and autonomy. Studies including AMBF [13], ATAR [14], and V-Rep Simulator for the dVRK [15] provide diverse applications for surgical robotics research, such as for benchmarking, synthesizing data, and trial-and-error learning. Other works such as ORBIT-Surgical [16], Surgical Gym [17], FF-SRL [18], LapGym [19], AMBF-RL [20], SurRoL [21], dVRL [22], and UnityFlexML [1] has specific focus on machine learning applications. These platforms typically rely on an existing physics engine, such as PhysX (used in Nvidia Omniverse), FleX, SOFA, and Bullet. Therefore, their simulation capability largely depends on the physics solvers. For instance, Bullet is primarily a rigid body engine and only provides limited FEM soft body support. Both PhysX 5 and SOFA use FEM for soft body simulation. While PhysX 5 supports FEM, it has yet to achieve realistic interactions such as cutting and suturing. SOFA does support cutting but incurs high computational costs. These challenges may stem from inherent limitations of FEM itself, as discussed earlier. A recent study [23] integrates basic MPM support into SurRoL using MLS-MPM but does not address cutting and suturing contact methods. In contrast, our work focuses on developing a comprehensive engine-level MPM library specifically designed for simulating surgical soft-body manipulations.
II-B Real-Time Soft Body Simulation
The commonly used soft body simulation methods for real-time applications include FEM, MPM, and PBD. As discussed in Section I, FEM has several disadvantages when used for large-scale simulations in robotic research, including computational expenses, the need for real-time re-meshing for topological change, and inaccuracies and instabilities under large deformation.
PBD [24] and extended PBD (XPBD) [25] are efficient and numerically stable alternatives, which solve only positional constraints without relying on force integration, making the simulation highly stable. However, this also means less physically accurate behavior, and the realism of deformations depends on the formulation of constraints rather than the underlying physics. Although this is acceptable for computer animation, the application in biomedical and robotics research poses additional challenges, as careful parameter tuning is needed to match the simulation with real-world tissue behavior, as in [26]. Additionally, forming positional constraints can sometimes be challenging for certain types of materials, such as viscoelastic or elastoplastic models, which are common in biomedical applications.
MPM overcomes many disadvantages of FEM while preserving accuracy and versatility for simulating a wide range of material behaviors. MPM is considered within the particle-in-cell (PIC) methods family, where particles carry physical quantities and a background grid is used for computations. The initial PIC method [27] was developed for fluid mechanics, with later improvements by the fluid implicit particle method (FLIP) [28]. MPM extends the methods to simulating solids and multiphase materials, including elastic and hyperelastic materials, granular materials (e.g., snow–used by Disney in their film Frozen [29]–and sand), and elastoplastic materials such as biological tissues. In addition, since MPM does not explicitly use a mesh, topological changes are not a concern, making it easier to simulate cutting and fracture. The MPM and the PIC methods are related and have numerous variations such as generalized interpolation material point (GIMP) [30], convected particle domain interpolation (CPDI) [31], affine particle-in-cell (APIC) [32], moving least squares MPM (MLS-MPM) [33], and more recently position-based MPM (PB-MPM) [34]. However, MPM is less investigated and adopted for surgical simulation, possibly due to the lack of a high-performance library specifically built for surgical applications.
III MATERIAL POINT METHOD
III-A Standard MPM
MPM is an approach without explicit consideration of a computational mesh as in FEM. Instead, a background Eulerian (i.e., fixed) grid is used for force and momentum computations, whereas a continuum body is discretized into Lagrangian material points (i.e., moving particles) to store local material data, such as mass, velocity, stress tensor, and deformation gradient.

The standard formulation of the MPM follows 4 steps: (1) Particle to grid (P2G): Particle properties are transferred and distributed to the background grid using an interpolation shape function. (2) Grid update: the momentum of each grid node is updated using numerical integration. (3) Grid to particle (G2P): The updated node momenta are interpolated back to the particles. Particle properties such as the deformation gradient and stress are also updated. (4) Reset grid: clear grid node data to prepare for the next step. This is illustrated in Fig. 2. As an example, consider a Neo-Hookean hyperelastic model using a PIC-style particle velocity update. At time , particle data is transferred to the grid using
(1) |
Here, we use the subscript to denote the particle indices and for grid indices. is the position, is the mass, is the velocity, and is the shape function. As the shape function uses a basis function with finite support, only grid nodes within this region are affected by a specific particle. With a quadratic B-spline basis, a particle can transfer data to 3 neighboring nodes per dimension. Force is transferred from the particle to the grid using
(2) |
where is the internal force and is the external force. is the particle volume, is the stress tensor, is the body force. when only gravity is applied. is the gradient of the shape function.
Next, the grid is updated for each node with
(3) |
where is the total force. Boundary conditions (e.g., fixed nodes) can be applied by altering the momentum.
Updated nodal velocities are then transferred back to particles for integration, with
(4) |
Finally, particle velocity gradient , deformation gradient , volume, and stress are updated using
(5) | ||||
(6) | ||||
(7) | ||||
(8) |
denotes the identity matrix. Equation (8) is specific to the Neo-Hookean model for calculating the Cauchy stress, where and are the Lamé parameters. Some implementations use the Kirchhoff stress instead.
One benefit of MPM is that contact between multiple soft bodies is inherently handled, as each body is represented by a cluster of particles interacting through the shared background grid. This eliminates the need for explicit collision detection.
Since more advanced algorithms are now commonly used, standard MPM is implemented in this work only as a reference with limited feature support.
III-B Moving Least Squares MPM
The moving least squares MPM (MLS-MPM) [33] uses APIC-style transfers and unifies it with force computation by using a moving least squares shape function. This leads to modifications of the velocity and force transfers in the standard MPM formulation. For the internal force,
(9) |
where is the same shape basis function used in standard MPM, centered at node . for quadratic basis and grid cell size . APIC affine momentum and force transfer is then fused in P2G, with
(10) |
where can be updated in the APIC way during G2P using
(11) |
For quadratic basis, , resulting in a scaling on . The deformation gradient is then updated with
(12) |
Algorithm 1 shows the structure of APIC-style MLS-MPM.
III-C Position-Based MPM
PB-MPM, proposed in 2024 [34], is a new method that formulates MPM as a constraint-solving problem similar to PBD, allowing larger integration steps and better numerical stability. The modifications needed to convert any MPM algorithm to PB-MPM are minimal: at each simulation step, multiple P2G-G2P cycles are conducted to iteratively solve a candidate particle velocity gradient. In P2G, instead of calculating the stress, a material constraint is solved for all particles independently. For example, for an elastic material with MLS-MPM formulation, the co-rotational constraint-solving step includes
(13) | ||||
(14) | ||||
(15) | ||||
(16) |
which formulates a Jacobi-style constraint projection solver.
PB-MPM integrates the benefits of both PBD and MPM but also inherits certain drawbacks from PBD, such as reliance on non-physical parameters and stiffness that depends on the number of iterations. Therefore, its application should be considered based on specific use cases.
III-D Computational Speed Comparison
CRESSim-MPM currently implements the aforementioned three types of MPM solvers in 3D for users to select from. More solver algorithms can be added in a modular manner.
We provide an initial performance evaluation when simulating a cubic object falling under gravity with different numbers of particles for the implemented solvers on Nvidia RTX 4090 (compute capability 8.9), with CUDA Toolkit version 12.4.1. For all solvers, each step advances the simulation by second. For MLS-MPM and standard MPM, each step contains 10 integration sub-steps with . For PB-MPM, each step uses with 10 or 20 iterations. The grid size is fixed in all situations with nodes. The results are shown in Fig. 3. While comparing with existing implementations is reasonable, this work does not aim to outperform existing code in computational speed, as our main focus is on including multiple MPM solver options within one library. Further code optimization and performance benchmarking are planned as future work.

IV RIGID GEOMETRIES AND CONTACT MODELS FOR SURGICAL SIMULATION
IV-A Soft-Rigid Coupling

Two-way coupling between MPM soft bodies and externally-solved rigid bodies can be achieved at the grid level [29, 33]. The most straightforward approach is to use a signed distance field (SDF) for each rigid body and modify the predicted nodal velocity based on the contact model if a grid node is inside the rigid geometry. This is similar to a predictor-corrector method [10], as shown in Fig. 4. We set the nodal velocity to zero in the normal direction, and apply frictional correction to the tangential component, unless the node is separating from the rigid body. Mathematically, the relative velocity between a node and a rigid body is , with being the rigid body’s velocity. Given a rigid surface normal , is decomposed into the tangent component and the normal part :
(17) |
If the node is separating from the rigid body, the velocity is not changed, i.e., . Otherwise,
(18) |
where is the kinetic friction coefficient and applies a linear drag force on the velocity, which is useful for sticky effects such as tissue sticking to the scalpel and needle.
The velocity change can then be recorded and used as a momentum impulse applied back to the rigid body, yielding a two-way force coupling. Additional particle correction is performed to push out the remaining particles inside the rigid geometry, similar to [29]. The SDF-based approach works well for MPM-rigid collisions with regular geometries, as shown in Fig. 5.

IV-B Geometries and Contact Method for Cutting
For cutting, authors of [33] propose using a colored distance field (CDF). The CDF stores points that contain an unsigned distance and a color information, which encodes a set of nearby surfaces and the side it is located at. If a particle and a node are located on different sides of a surface, the node is considered incompatible, and no P2G and G2P transfer occurs. This forms a discontinuity that blocks energy transfer at the cutting surface.
While this approach allows cutting with a random surface geometry, it requires the additional storage of nearby geometries and the use of rigid particles. This work simplifies the approach and uses a regular SDF representation for all rigid geometries. For a cutting geometry, the sign of the SDF value represents the side of the point relative to the nearest surface. This eliminates the need to store additional data for cutting geometries and particles and unifies the grid-level contact resolution by simply using the absolute value of the SDF for contact. However, as the absolute value is always positive, a fattened collision region is needed during contact resolution, as opposed to using CDF.
Additionally, since a knife or scalpel can cut with only the edge side instead of the spine (blunt) side, it is inappropriate to have a geometry that cuts in all directions. Considering this, we apply a circular-shaped distance field to the spine side and use sticky contact (zero relative velocity) if a node is in this region. When the spine side touches an MPM soft body, it generates contact similar to a cylinder colliding with the soft body, as shown in Fig. 6. The SDF of a scalpel’s cross-section is illustrated in Fig. 7. The geometry is named slicer in our code implementation, which includes QuadSlicer and TriangleMeshSlicer.



IV-C Geometries and Contact Method for Suturing
In this work, we assume that the suture thread can be discretized into connected straight-line segments. To achieve suturing, we introduce the arc and the line segment geometries, which can model an arc-shaped suture needle and a discrete thread segment. They are both 1D geometries with SDFs. The signed distance is calculated analytically from a given query point to its nearest projected point on the geometry, which is always positive. The surface normal is the normalized vector from the projected point to the query point. Nodal velocities inside the SDF region are corrected differently than for regular geometries. The relative velocity is decomposed into three parts: one along the arc or line tangent , one that lies on the cross-section of the geometry , and one along the surface normal , as shown in Fig. 8, and only the tangent component is kept. Mathematically, the relative velocity is decomposed to
(19) |
where is the true tangent velocity along the arc or line. Nodal velocity correction is applied by replacing with in (18). This ensures that the rigid geometry can move inside a soft body if the motion is along the geometry (e.g., inserting a needle) while preventing lateral motion, as shown in Fig. 9. Geometries for suturing include Arc and ConnectedLineSegments, where the latter is a generalized geometry of a line segment.



V IMPLEMENTATION
V-A Object Model and Simulation Lifecycle
The library follows an object model similar to the one in PhysX, such that integration with other PhysX-based software is straightforward, as shown in Fig. 10.

Scene contains all simulation objects and provides the method advance(float dt) for starting to advance the simulation by a time step dt, and the method fetchResults() retrieves the results of the simulation, blocking the thread until the results are available. This is similar to PhysX’s simulation lifecycle which splits the simulation into two steps, allowing asynchronous tasks to run while the solver advances.
V-B Implementation Details and Usage
The library is implemented in CUDA C++ and is dependent only on the standard C++ library and the CUDA runtime. 3 types of Solver discussed in Section III are currently included. ParticleObject represents an object of material points simulated by MPM, and Shape is a rigid body. SimulationFactory is used to create all objects. C++ Users should only include the header simulation_factory.h. A backend C-style API engine is also provided for integration into existing software.
While we also provide a CPU version for each solver, they are not optimized for multi-core parallelism or single instruction, multiple data (SIMD). Users who require simulations that fully utilize the CPU should refer to alternative software, such as Taichi-MPM444https://github.com/yuanming-hu/taichi_mpm for MLS-MPM, and MPM-GIMP555https://sourceforge.net/p/mpmgimp for standard MPM and GIMP.
V-C Unity Integration
Integration into Unity is straightforward using the C-style APIs. Only a few modifications are needed to allow the coupling between the MPM soft body and rigid bodies simulated in Unity’s default engine. For each rigid body in Unity, a corresponding Shape is created for two-way coupling with the soft body. During each step, the rigid body is simulated first with Unity, after which the Shape’s velocity is updated. The MPM engine is then advanced, recording a total momentum change of the contact grids with the rigid body. This is then used to apply a momentum impulse on the rigid body back in Unity. A Unity plugin is provided as part of CRESSim-MPM, as shown in Fig. 11a.


VI SURGICAL SIMULATION EXAMPLES
This section includes screenshots from two example scenes representing surgical cutting and suturing. While the visuals and rendering are not highly realistic, the examples are primarily designed to showcase the physics capabilities. For demonstration purposes, we use two different solvers, although either one works in both scenarios. Additional examples are provided in the supplementary video.
VI-A Cutting (PB-MPM)
This example demonstrates that we can simulate soft tissue cutting using a scalpel. The scalpel moves right to cut the tissue first and then down to split and reveal both sides of the cut tissue. The screenshots are shown in Fig. 12.


VI-B Suturing (MLS-MPM)
This example demonstrates the capability of simulating soft tissue suturing using an arc-shaped needle. For the sake of simplicity, we use a kinematic chain of rigid links with spherical joints to represent a suture thread, which is implemented using Unity’s default physics engine. This is a traditional approach that does not provide an adequate level of realism [35, 38]. Nevertheless, the focus of this work is not the thread simulation itself. Integration of more advanced approaches, such as PBD-based threads [37], is straightforward since contact force coupling can be achieved in a similar manner. Screenshots of this example are shown in Fig. 13. This example can be teleoperated using the MTM robot from the dVRK, as shown in Fig. 11b.
VII LIMITATIONS AND FUTURE WORK
We are aware of several areas where the library can be enhanced, and we’re actively working on improving these before an official release. These include (1) code optimization, particularly through increased use of fused multiply-add (FMA) operations, shared memory for rigid shapes, and improved thread block scheduling; (2) implementation of additional material models, such as elastoplastic materials and fluids, to simulate specific tissue types, blood, and smoke; (3) integration of other MPM and PIC solvers, including APIC and FLIP, as well as PBD solvers for fascia and suture thread simulation; and (4) improved rendering of particle objects.
There is also a lack of performance comparison with existing general-purpose MPM implementations, such as Taichi-MPM which does not support features such as suturing and only uses MLS-MPM. This is left as a future work after code optimization. We also recognize that relying on CUDA restricts broader compatibility with computing devices beyond Nvidia GPUs. Extending to other platforms can require a significant amount of future work, although porting this work to AMD devices should be straightforward using ROCm/HIP.
VIII CONCLUSION
In this work, we introduced CRESSim-MPM, a new MPM library designed for surgical simulation that implements multiple solvers and surgery-specific contact models for cutting and suturing. By using it as a separate physics module, integration with existing surgical simulation platforms is straightforward, and we further provide a Unity plugin to allow direct integration into Unity. With the capability of simulating cutting and suturing on soft tissue efficiently on the GPU, this work enables more realistic and efficient surgical simulations that can be potentially used in various applications, including soft tissue modeling, surgical skills training, and surgical robot learning.
References
- [1] E. Tagliabue, A. Pore, D. Dall’Alba, E. Magnabosco, M. Piccinelli, and P. Fiorini, “Soft Tissue Simulation Environment to Learn Manipulation Tasks in Autonomous Robotic Surgery,” in 2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Oct. 2020, pp. 3261–3266.
- [2] Z.-Y. Chiu, F. Richter, E. K. Funk, R. K. Orosco, and M. C. Yip, “Bimanual regrasping for suture needles using reinforcement learning for rapid motion planning,” in 2021 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2021, pp. 7737–7743.
- [3] R. Bendikas, V. Modugno, D. Kanoulas, F. Vasconcelos, and D. Stoyanov, “Learning needle pick-and-place without expert demonstrations,” IEEE Robotics and Automation Letters, 2023.
- [4] J. W. Kim, T. Z. Zhao, S. Schmidgall, A. Deguet, M. Kobilarov, C. Finn, and A. Krieger, “Surgical robot transformer (srt): Imitation learning for surgical tasks,” arXiv preprint arXiv:2407.12998, 2024.
- [5] S. Zargarzadeh, M. Mirzaei, Y. Ou, and M. Tavakoli, “From decision to action in surgical autonomy: Multi-modal large language models for robot-assisted blood suction,” IEEE Robotics and Automation Letters, pp. 1–8, 2025.
- [6] Y. Ou and M. Tavakoli, “Learning autonomous surgical irrigation and suction with the da vinci research kit using reinforcement learning,” arXiv preprint arXiv:2411.14622, 2024.
- [7] F. Faure, C. Duriez, H. Delingette, J. Allard, B. Gilles, S. Marchesseau, H. Talbot, H. Courtecuisse, G. Bousquet, I. Peterlik, and S. Cotin, “SOFA: A Multi-Model Framework for Interactive Physical Simulation,” in Soft Tissue Biomechanical Modeling for Computer Assisted Surgery, Y. Payan, Ed. Berlin, Heidelberg: Springer Berlin Heidelberg, 2012, vol. 11, pp. 283–321.
- [8] O. Comas, Z. A. Taylor, J. Allard, S. Ourselin, S. Cotin, and J. Passenger, “Efficient Nonlinear FEM for Soft Tissue Modelling and Its GPU Implementation within the Open Source Framework SOFA,” in Biomedical Simulation, F. Bello and P. J. E. Edwards, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, 2008, vol. 5104, pp. 28–39.
- [9] D. Sulsky, S.-J. Zhou, and H. L. Schreyer, “Application of a particle-in-cell method to solid mechanics,” Computer Physics Communications, vol. 87, no. 1-2, pp. 236–252, May 1995.
- [10] A. De Vaucorbeil, V. P. Nguyen, S. Sinaie, and J. Y. Wu, “Material point method after 25 years: Theory, implementation, and applications,” in Advances in Applied Mechanics. Elsevier, 2020, vol. 53, pp. 185–398.
- [11] P. Kazanzides, Z. Chen, A. Deguet, G. S. Fischer, R. H. Taylor, and S. P. DiMaio, “An open-source research kit for the da Vinci® Surgical System,” in 2014 IEEE International Conference on Robotics and Automation (ICRA), May 2014, pp. 6434–6439.
- [12] Y. Ou, S. Zargarzadeh, P. Sedighi, and M. Tavakoli, “A Realistic Surgical Simulator for Non-Rigid and Contact-Rich Manipulation in Surgeries with the da Vinci Research Kit,” in 2024 21st International Conference on Ubiquitous Robots (UR), Jun. 2024, pp. 64–70.
- [13] A. Munawar, Y. Wang, R. Gondokaryono, and G. S. Fischer, “A Real-Time Dynamic Simulator and an Associated Front-End Representation Format for Simulating Complex Robots and Environments,” in 2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Nov. 2019, pp. 1875–1882.
- [14] N. Enayati, A. M. Okamura, A. Mariani, E. Pellegrini, M. M. Coad, G. Ferrigno, and E. De Momi, “Robotic Assistance-as-Needed for Enhanced Visuomotor Learning in Surgical Robotics Training: An Experimental Study,” in 2018 IEEE International Conference on Robotics and Automation (ICRA), May 2018, pp. 6631–6636.
- [15] G. A. Fontanelli, M. Selvaggio, M. Ferro, F. Ficuciello, M. Vendittelli, and B. Siciliano, “A V-REP Simulator for the da Vinci Research Kit Robotic Platform,” in 2018 7th IEEE International Conference on Biomedical Robotics and Biomechatronics (Biorob), Aug. 2018, pp. 1056–1061.
- [16] Q. Yu, M. Moghani, K. Dharmarajan, V. Schorp, W. C.-H. Panitch, J. Liu, K. Hari, H. Huang, M. Mittal, K. Goldberg, and A. Garg, “Orbit-Surgical: An Open-Simulation Framework for Learning Surgical Augmented Dexterity,” in 2024 IEEE International Conference on Robotics and Automation (ICRA), May 2024, pp. 15 509–15 516.
- [17] S. Schmidgall, A. Krieger, and J. Eshraghian, “Surgical Gym: A high-performance GPU-based platform for reinforcement learning with surgical robots,” in 2024 IEEE International Conference on Robotics and Automation (ICRA), May 2024, pp. 13 354–13 361.
- [18] D. Dall’Alba, M. Naskręt, S. Kamińska, and P. Korzeniowski, “FF-SRL: High Performance GPU-Based Surgical Simulation For Robot Learning,” in 2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Oct. 2024, pp. 8378–8384.
- [19] P. M. Scheikl, B. Gyenes, R. Younis, C. Haas, G. Neumann, M. Wagner, and F. Mathis-Ullrich, “LapGym - An Open Source Framework for Reinforcement Learning in Robot-Assisted Laparoscopic Surgery,” Journal of Machine Learning Research, vol. 24, no. 368, pp. 1–42, 2023.
- [20] V. M. Varier, D. K. Rajamani, F. Tavakkolmoghaddam, A. Munawar, and G. S. Fischer, “AMBF-RL: A real-time simulation based Reinforcement Learning toolkit for Medical Robotics,” in 2022 International Symposium on Medical Robotics (ISMR), Apr. 2022, pp. 1–8.
- [21] J. Xu, B. Li, B. Lu, Y.-H. Liu, Q. Dou, and P.-A. Heng, “SurRoL: An Open-source Reinforcement Learning Centered and dVRK Compatible Platform for Surgical Robot Learning,” in 2021 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). Prague, Czech Republic: IEEE, Sep. 2021, pp. 1821–1828.
- [22] F. Richter, R. K. Orosco, and M. C. Yip, “Open-Sourced Reinforcement Learning Environments for Surgical Robotics,” Jan. 2020.
- [23] Z. Yang, Y. Long, K. Chen, W. Wei, and Q. Dou, “Efficient physically-based simulation of soft bodies in embodied environment for surgical robot,” arXiv preprint arXiv:2402.01181, 2024.
- [24] M. Müller, B. Heidelberger, M. Hennix, and J. Ratcliff, “Position based dynamics,” Journal of Visual Communication and Image Representation, vol. 18, no. 2, pp. 109–118, Apr. 2007.
- [25] M. Macklin, M. Müller, and N. Chentanez, “XPBD: Position-based simulation of compliant constrained dynamics,” in Proceedings of the 9th International Conference on Motion in Games. Burlingame California: ACM, Oct. 2016, pp. 49–54.
- [26] F. Liu, Z. Li, Y. Han, J. Lu, F. Richter, and M. C. Yip, “Real-to-Sim Registration of Deformable Soft Tissue with Position-Based Dynamics for Surgical Robot Autonomy,” in 2021 IEEE International Conference on Robotics and Automation (ICRA). Xi’an, China: IEEE, May 2021, pp. 12 328–12 334.
- [27] H. Francis H, “The particle-in-cell computing method for fluid dynamics,” Methods Comput. Phys., vol. 3, pp. 319–343, 1964.
- [28] J. Brackbill and H. Ruppel, “FLIP: A method for adaptively zoned, particle-in-cell calculations of fluid flows in two dimensions,” Journal of Computational Physics, vol. 65, no. 2, pp. 314–343, Aug. 1986.
- [29] A. Stomakhin, C. Schroeder, L. Chai, J. Teran, and A. Selle, “A material point method for snow simulation,” ACM Transactions on Graphics, vol. 32, no. 4, pp. 1–10, Jul. 2013.
- [30] S. G. Bardenhagen and E. M. Kober, “The Generalized Interpolation Material Point Method,” Computer Modeling in Engineering & Sciences, vol. 5, no. 6, pp. 477–496, 2004.
- [31] A. Sadeghirad, R. M. Brannon, and J. Burghardt, “A convected particle domain interpolation technique to extend applicability of the material point method for problems involving massive deformations,” International Journal for Numerical Methods in Engineering, vol. 86, no. 12, pp. 1435–1456, 2011.
- [32] C. Jiang, C. Schroeder, A. Selle, J. Teran, and A. Stomakhin, “The affine particle-in-cell method,” ACM Transactions on Graphics, vol. 34, no. 4, pp. 1–10, Jul. 2015.
- [33] Y. Hu, Y. Fang, Z. Ge, Z. Qu, Y. Zhu, A. Pradhana, and C. Jiang, “A moving least squares material point method with displacement discontinuity and two-way rigid body coupling,” ACM Transactions on Graphics, vol. 37, no. 4, pp. 1–14, Aug. 2018.
- [34] C. Lewin, “A Position Based Material Point Method,” in ACM SIGGRAPH 2024 Talks. Denver CO USA: ACM, Jul. 2024, pp. 1–2.
- [35] J. Brown, J.-C. Latombe, and K. Montgomery, “Real-time knot-tying simulation,” The Visual Computer, vol. 20, no. 2-3, pp. 165–179, May 2004.
- [36] M. LeDuc, S. Payandeh, and J. Dill, “Toward Modeling of a Suturing Task,” Graphics Interface, vol. 3, pp. 273–279, 2003.
- [37] A. Munawar, J. Y. Wu, G. S. Fischer, R. H. Taylor, and P. Kazanzides, “Open Simulation Environment for Learning and Practice of Robot-Assisted Surgical Suturing,” IEEE Robotics and Automation Letters, vol. 7, no. 2, pp. 3843–3850, Apr. 2022.
- [38] R. Phellan, B. Hachem, J. Clin, J.-M. Mac-Thiong, and L. Duong, “Real-time biomechanics using the finite element method and machine learning: Review and perspective,” Medical Physics, vol. 48, no. 1, pp. 7–18, Jan. 2021.