Skip to main content

A python reader for SeisSol xdmf output

Project description

seissolxdmf

A python reader for SeisSol xdmf output (posix or hdf5) and hdf5 meshes. Below is an simple example, illustrating the use of the module:

import seissolxdmf as sx
fn = 'test-fault.xdmf'
# Number of cells
nElements = sx.ReadNElements(fn)
# Read time step
dt = sx.ReadTimeStep(fn)
# Read number of time steps
ndt = sx.ReadNElements(fn)
# load geometry array as a numpy array of shape ((nodes, 3))
geom = sx.ReadGeometry(fn)
# load connectivity array as a numpy array of shape ((nElements, 3 or 4))
# The connectivity array gives for each cell a list of vertex ids.
connect = sx.ReadConnect(fn)
# load SRs as a numpy array of shape ((ndt, nElements))
SRs = sx.ReadData(fn, 'SRs')
# load the 8th time ste of the SRs array as a numpy array of shape (nElements)
SRs = sx.ReadData(fn, 'SRs', 8)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

seissolxdmf-0.0.4-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page