File size: 1,007 Bytes
a0ac7b1 dae4e5e a0ac7b1 dae4e5e a0ac7b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ---
license: mit
tags:
- physics-ml
- graph-neural-networks
- computational-mechanics
- elastoplastic
---
# G-PARC: Graph Physics-Aware Recurrent Convolutions
Model weights, test data, and configuration files for the G-PARC elastoplastic simulation paper.
## Models
| Model | Description |
|-------|-------------|
| G-PARCv1 | Graph Physics-Aware Recurrent Convolutions — fully learned GNN operators |
| G-PARCv2 | MLS differential operators + numerical Euler integration |
| MeshGraphKAN | Kolmogorov-Arnold Network message passing with Fourier basis |
| MeshGraphNet | Standard encode-process-decode GNN (Pfaff et al., 2021) |
## Dataset
PLAID 2D Elasto-Plasto-Dynamics benchmark — high-velocity impact on steel plates.
- **Variables**: Displacement field (U_x, U_y)
- **Normalization**: Global max
- **Meshes**: Unstructured quad elements
## Usage
```python
from huggingface_hub import hf_hub_download
ckpt = hf_hub_download("jacktbeerman/Gparc", "checkpoints/gparcv2_best.pth")
```
|