Space Discretization #12
-
What space discretization did you use to generate the datasets? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This was largely driven by the domain expert and the numerical solver used for the simulations and specifics can be found in the individual dataset readmes. Some used pseudospectral methods (Fourier or Chebychev), some used finite volume over uniform grids, some used Smoothed-particle Hydrodynamics (SPH) so are technically lagrangian methods interpolated onto a grid. Ultimately, all were interpolated onto a uniform grid in some coordinate space where most are in Euclidean space though a couple are spherical or curvilinear. For pseudospectral methods, this was done by simply evaluating the basis functions at the uniform grid points. For FV, the simulations themselves are on uniform grids so the simulation grid is used directly. |
Beta Was this translation helpful? Give feedback.
This was largely driven by the domain expert and the numerical solver used for the simulations and specifics can be found in the individual dataset readmes. Some used pseudospectral methods (Fourier or Chebychev), some used finite volume over uniform grids, some used Smoothed-particle Hydrodynamics (SPH) so are technically lagrangian methods interpolated onto a grid.
Ultimately, all were interpolated onto a uniform grid in some coordinate space where most are in Euclidean space though a couple are spherical or curvilinear. For pseudospectral methods, this was done by simply evaluating the basis functions at the uniform grid points. For FV, the simulations themselves are on uniform grids s…