Datasets:
sample_id int64 0 1.28k | x listlengths 8.19k 8.19k | u0 listlengths 8.19k 8.19k | u_end listlengths 8.19k 8.19k |
|---|---|---|---|
0 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [0.7797311544418335,0.7791992425918579,0.7786476016044617,0.7781033515930176,0.7776013612747192,0.77(...TRUNCATED) | [0.880287230014801,0.8803086280822754,0.8803300261497498,0.8803514242172241,0.8803728222846985,0.880(...TRUNCATED) |
1 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-0.448224276304245,-0.4475504159927368,-0.4468773603439331,-0.44616544246673584,-0.4454323947429657(...TRUNCATED) | [-0.3723476231098175,-0.37252771854400635,-0.37270793318748474,-0.3728882968425751,-0.37306874990463(...TRUNCATED) |
2 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [0.6825408935546875,0.6823999881744385,0.6822937726974487,0.6822145581245422,0.6821081042289734,0.68(...TRUNCATED) | [1.409852147102356,1.4096777439117432,1.40950345993042,1.409328579902649,1.4091534614562988,1.408978(...TRUNCATED) |
3 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-0.12022387981414795,-0.12061087787151337,-0.1210169792175293,-0.12142391502857208,-0.1218188852071(...TRUNCATED) | [-0.3557881712913513,-0.355692058801651,-0.3555959463119507,-0.355499804019928,-0.35540369153022766,(...TRUNCATED) |
4 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [0.6092218160629272,0.6085163354873657,0.6077998280525208,0.6070942282676697,0.6064004302024841,0.60(...TRUNCATED) | [0.963047981262207,0.9629963040351868,0.9629446864128113,0.9628931879997253,0.9628418684005737,0.962(...TRUNCATED) |
5 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [0.9261073470115662,0.9257233142852783,0.9253416657447815,0.9249275326728821,0.9245328307151794,0.92(...TRUNCATED) | [1.059780478477478,1.0598342418670654,1.0598881244659424,1.0599418878555298,1.0599955320358276,1.060(...TRUNCATED) |
6 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-0.5886461138725281,-0.5885134339332581,-0.5884259939193726,-0.5883352756500244,-0.588228166103363,(...TRUNCATED) | [-0.3043263554573059,-0.30422693490982056,-0.30412745475769043,-0.3040280342102051,-0.30392861366271(...TRUNCATED) |
7 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-0.24551555514335632,-0.24544097483158112,-0.24540004134178162,-0.24536091089248657,-0.245316177606(...TRUNCATED) | [-0.5338693857192993,-0.533841609954834,-0.5338137149810791,-0.5337859392166138,-0.533758282661438,-(...TRUNCATED) |
8 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-0.8465754985809326,-0.846809983253479,-0.847026526927948,-0.8472524881362915,-0.8474738001823425,-(...TRUNCATED) | [-0.3384767770767212,-0.338387131690979,-0.33829745650291443,-0.33820778131484985,-0.338118076324462(...TRUNCATED) |
9 | [0.0,0.0001220703125,0.000244140625,0.0003662109375,0.00048828125,0.0006103515625,0.000732421875,0.0(...TRUNCATED) | [-1.2191811800003052,-1.2199161052703857,-1.2206448316574097,-1.2213585376739502,-1.2220821380615234(...TRUNCATED) | [-0.2741147577762604,-0.27400708198547363,-0.2738994061946869,-0.27379173040390015,-0.27368399500846(...TRUNCATED) |
1D Burgers' Equation Data
Input–output pairs for the 1D viscous Burgers' equation on a periodic domain, intended for training and benchmarking neural operators.
Each sample maps an initial condition u_0(x) = u(x, 0) to the solution u(x, t_end). Initial conditions are drawn from a Gaussian random field ande the PDE is solved numerically with a pseudo-spectral method.
The 1D viscous Burgers' equation on a periodic domain $x \in [0, 1)$ reads
where $\nu > 0$ is the kinematic viscosity. The first term is a non-linear advective term and the second is a diffusive term.
Initial conditions are sampled according to
where $\Delta$ is the Laplacian.
To integrate the equation forward in time, the convective term is advanced with a fourth-order Runge-Kutta (RK4) method, while the diffusive term is discretised with a backward Euler method and the resulting linear system is solved exactly by a point-wise multiplication in spectral space.
Parameters
| Parameter | Value |
|---|---|
| Kinematic viscosity | 0.02 |
| Spatial resolution | 8192 |
| Domain | [0, 1) (periodic) |
| End time | 1.0 |
| dtype | float32 |
| Time-step size | 1e-5 |
| Number of samples | 1280 |
Schema
Each row is one sample:
| Column | Type | Description |
|---|---|---|
sample_id |
int64 |
Sample index |
x |
list<float32> (length 8192) |
Spatial grid coordinates |
u0 |
list<float32> (length 8192) |
Initial condition |
u_end |
list<float32> (length 8192) |
Solution |
Dataset attributes (nu, dt, t_end, resolution, seed,
num_samples, dtype) are stored in the accompanying metadata.json.
Details
The norax library contains the code used generate this dataset and demonstrates how it can be used to train a Fourier neural operator.
Citations
This dataset is generated according to the method described in Li, Zongyi, et al. "Fourier neural operator for parametric partial differential equations." arXiv preprint arXiv:2010.08895 (2020).
- Downloads last month
- 66