Howway commited on
Commit
0a64e41
·
verified ·
1 Parent(s): 0a904ab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +157 -0
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - time-series-forecasting
5
+ - tabular-regression
6
+ tags:
7
+ - physics
8
+ - pde
9
+ - fluid-dynamics
10
+ - simulation
11
+ - numerical-methods
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # INC Dataset: Implicit Neural Correction for PDE Solvers
17
+
18
+ ## Dataset Description
19
+
20
+ This dataset contains simulation data for training and evaluating implicit neural correction methods for partial differential equation (PDE) solvers. The dataset includes two challenging dynamical systems demonstrating complex spatiotemporal behaviors:
21
+
22
+ 1. **Kuramoto-Sivashinsky (KS) Equation** - 1D chaotic dynamics
23
+ 2. **Backward-Facing Step (BFS) Flow** - 2D incompressible Navier-Stokes with complex geometry
24
+
25
+ ### Dataset Summary
26
+
27
+ - **Repository**: [INC: Implicit Neural Correction for PDE Solvers](https://github.com/tum-pbs/INC)
28
+ - **Paper**: [INC: An Indirect Neural Corrector for Auto-Regressive Hybrid PDE Solvers](https://openreview.net/forum?id=s3Uk3lrfjy) (NeurIPS 2025)
29
+
30
+ ## Dataset Structure
31
+
32
+ ```
33
+ INC_Data/
34
+ ├── KS/
35
+ │ └── Dataset/
36
+ │ ├── train/
37
+ │ ├── valid/
38
+ │ └── test/
39
+ └── BFS/
40
+ └── Dataset/
41
+ │ ├── train/
42
+ │ ├── valid/
43
+ │ └── test/
44
+ └── Results/
45
+ └── NoModel/ # Baseline without correction
46
+ └── INC_SmallCNN/
47
+ └── {timestamp}_mstep8_.../ # an example model
48
+ ```
49
+ There are two main subdirectories corresponding to the two PDE systems, each containing training, validation, and test datasets. For BFS, there is also a `Results` directory showcasing baseline and corrected model results.
50
+
51
+ ### Data Fields
52
+
53
+ Each dataset contains time-series simulation data with the following characteristics:
54
+
55
+
56
+ #### Kuramoto-Sivashinsky Equation
57
+ - **Spatial Resolution**: 64 grid points
58
+ - **Temporal Resolution**: dt = 0.01
59
+ - **Physical Domain**: [0, 22]
60
+ - **Parameters**: Periodic boundary conditions
61
+ - **File Format**: `.pth` (PyTorch dictionary with trajectories and metadata)
62
+ - **Data Structure**:
63
+ - `trajectories`: shape `(num_trajectories, time_steps, spatial_points)` = `(27, 10001, 64)` for train
64
+ - `domain_size`: shape `(num_trajectories,)` = `(27,)`
65
+ - `metadata`: dict with generation parameters (gen_dt, resolution, time_scheme, etc.)
66
+ - **Dataset Sizes**:
67
+ - Train: 27 trajectories × 10,001 timesteps
68
+ - Valid: 3 trajectories × 10,001 timesteps
69
+ - Test: 6 trajectories × 10,001 timesteps
70
+
71
+ #### Backward-Facing Step (BFS)
72
+ - **Spatial Resolution**: Multi-block grid with refinement, downsampled to approximately $128 \times 32$
73
+ - **Temporal Resolution**: Saved with fixed intervals (dt = 0.1)
74
+ - **Physical Domain**: 2D channel with backward-facing step geometry (5 blocks)
75
+ - **Parameters**: Reynolds numbers {1300, 1350, 1400}, Step height {0.85, 0.875, 1.0}
76
+ - **File Format**: Combined `.json` (metadata) + `.npz` (tensor data) per timestep
77
+ - **Data Structure**:
78
+ - Each configuration has 5 blocks with varying resolutions
79
+ - Block shapes vary by position: e.g., `(1, 2, 16, 16)` for velocity, `(1, 1, 16, 16)` for pressure
80
+ - Metadata includes: domain name, spatial dimensions, viscosity, block info, boundaries
81
+ - Data arrays: velocity (2 channels), pressure (1 channel), vertex coordinates, boundary conditions
82
+ - **Dataset Sizes**:
83
+ - Train: 3 configurations × ~801 timesteps each
84
+ - Valid: 1 configuration × 301 timesteps
85
+ - Test: 1 configuration × 3,001 timesteps
86
+
87
+
88
+ ## Dataset Generation
89
+
90
+ The data was generated using classical numerical PDE solvers:
91
+
92
+ - **Burgers**: 5th-order WENO scheme with RK4 time integration
93
+ - **Kuramoto-Sivashinsky**: Pseudo-spectral method with exponential time differencing
94
+ - **BFS**: PISO algorithm with custom CUDA implementation for multi-block domains
95
+
96
+ ### Generation Scripts
97
+
98
+ The original data generation code is available in the [INC repository](https://github.com/tum-pbs/INC):
99
+ - `scripts/Sim_BFS.py` - Generate BFS flow data
100
+ - `solvers/solver_1d.py` - Contains Burgers and KS solvers
101
+
102
+ ## Use Cases
103
+
104
+ This dataset is designed for:
105
+
106
+ 1. **Hybrid Physics-ML Models**: Training neural networks to correct numerical solver errors
107
+ 2. **Operator Learning**: Learning mappings between PDE solution spaces
108
+ 3. **Time-Series Forecasting**: Predicting long-term evolution of chaotic dynamical systems
109
+ 4. **Benchmarking**: Evaluating neural PDE solver architectures (FNO, U-Net, DeepONet)
110
+ 5. **Physics-Informed Learning**: Combining data-driven and physics-based approaches
111
+
112
+
113
+ See the [paper](https://openreview.net/forum?id=s3Uk3lrfjy) for detailed results and methodology.
114
+
115
+ ## Citation
116
+
117
+ If you use this dataset in your research, please cite:
118
+
119
+ ```bibtex
120
+ @article{INC2025,
121
+ title={{INC}: An Indirect Neural Corrector for Auto-Regressive Hybrid {PDE} Solvers},
122
+ author={Hao Wei, Aleksandra Franz, Björn Malte List, Nils Thuerey},
123
+ booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems},
124
+ year={2025},
125
+ url={https://openreview.net/forum?id=s3Uk3lrfjy}
126
+ }
127
+ ```
128
+
129
+ ## Limitations and Biases
130
+
131
+ - **Domain Specificity**: Dataset is limited to three specific PDEs; generalization to other equations may require additional data
132
+ - **Resolution Trade-off**: Coarser resolutions improve computational efficiency but may miss fine-scale features
133
+ - **Boundary Conditions**: Limited to periodic (KS) and no-slip wall (BFS) boundaries
134
+ - **Parameter Range**: Limited range of physical parameters (viscosity, Reynolds number, domain geometry)
135
+
136
+ ## Additional Information
137
+
138
+ ### Licensing
139
+
140
+ This dataset is released under the Apache 2.0 License. You are free to use, modify, and distribute the data with proper attribution.
141
+
142
+ ### Contact
143
+
144
+ For questions or issues with the dataset:
145
+ - **GitHub Issues**: [INC Repository](https://github.com/tum-pbs/INC/issues)
146
+
147
+ ### Acknowledgments
148
+
149
+ This work builds upon numerical methods and deep learning architectures from:
150
+ - PICT solver (Franz et al., 2025)
151
+ - Fourier Neural Operator (Li et al., 2020)
152
+ - DeepONet (Lu et al., 2021)
153
+
154
+
155
+ ---
156
+
157
+ **For detailed usage instructions and training examples, see the [main repository](https://github.com/tum-pbs/INC).**