Dataset Viewer

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.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

Dataset Description

Overview

This dataset contains solutions to the two-dimensional parametric heat equation given by:

ut=Δu,t[0,T],(x1,x2)[0,1]2,μ[1,1]d u_t = \Delta u, \quad t \in [0, T], \left(x_1, x_2\right) \in [0,1]^2, \mu \in [-1,1]^d

with the initial condition:

u(0,x1,x2,μ)=u0(x1,x2,μ)=1dm=1du0m(x1,x2,μm)=1dm=1dμmsin(πmx1)sin(πmx2)/m0.5u0m(x1,x2,μm)=μmsin(πmx1)sin(πmx2)/m0.5 \begin{gathered} u\left(0, x_1, x_2, \mu\right) = u_0\left(x_1, x_2, \mu\right) = \frac{1}{d} \sum_{m=1}^d u_0^m\left(x_1, x_2, \mu_m\right) = -\frac{1}{d} \sum_{m=1}^d \mu_m \sin \left(\pi m x_1\right) \sin \left(\pi m x_2\right) / m^{0.5} \\ u_0^m\left(x_1, x_2, \mu_m\right) = -\mu_m \sin \left(\pi m x_1\right) \sin \left(\pi m x_2\right) / m^{0.5} \end{gathered}

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