The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Dataset Description
Overview
This dataset contains solutions to the two-dimensional parametric heat equation given by:
with the initial condition:
Dataset Specifications
In this dataset, the parameter dimension is set to $d = 16$. The dataset contains 5000 sampled trajectories for $\mu \sim \operatorname{Unif}([-1,1]^d)$ within an L-shaped domain. We impose zero Dirichlet boundary conditions.
The solution was computed on a triangular mesh generated using the Delaunay algorithm with the following specifications:
- Number of points: 14047
- Mesh elements:
- Lines: 502
- Triangles: 27590
Temporal discretization is performed with a time step $\Delta t = 0.00005$, and each trajectory is simulated for 100 time steps.
Data Structure
Each dataset file (e.g., heat_dataset_2000_3000.npz
) contains the following arrays:
x
: (Array of shape [14047,]) The x-coordinates of the mesh points.y
: (Array of shape [14047,]) The y-coordinates of the mesh points.u0
: (Array of shape [14047,]) The initial condition of the solution at time ( t = 0 ).u
: (Array of shape [1000, 100, 14047]) The solution at each time step for each sampled trajectory:- 1000: Number of trajectories.
- 100: Number of time steps per trajectory.
- 14047: Mesh points per solution snapshot.
dt
: (Float) The time step ( \Delta t = 0.00005 ).
Applications
This dataset is suitable for applications in:
- Reduced-order modeling
- Neural Operator
- Machine learning for scientific computing
- Parametric PDE solvers
Additional Information
- The dataset is constructed using finite element methods (TensorMesh) on an L-shaped domain.
- Simulated time: ~270s/1000 trajectories.
- Downloads last month
- 34