Data for paper: Control of fault weakening on the structural styles of underthrusting-dominated non-cohesive accretionary wedges
收藏NIAID Data Ecosystem2026-03-11 收录
下载链接:
https://zenodo.org/record/3677688
下载链接
链接失效反馈官方服务:
资源简介:
This repository contains data related to the paper:
A. Bauville, M. Furuchi and M. Gerbault, Control of fault weakening on the structural styles of underthrusting-dominated non-cohesive accretionary wedges, Journal of Geophysical Research, 2020.
It contains data for all simulations shown in Fig. 7 (last timestep)
List of file for each simulations:
modelState.json: json file containing various information about the state of the model
particles_strain.bin: binary file containing strain data for all particles
particles_x.bin: current x position for all particles
particles_y.bin: current y position for all particles
particles_xIni.bin: initial x position for all particles
particles_yIni.bin: initial y position for all particles
# File format
n, u, data
n = number of particles bytesize=[1 * int32]
u = characteristic unit bytesize=[1 * double]
data = data for n particles bytesize=[n * single]
# example to extract data from bin files in python
import numpy as np
import os
with open(FileName, 'rb') as f:
f.seek(12, os.SEEK_SET)
data = np.fromfile(f, dtype=np.single, count=-1, sep='')
创建时间:
2020-02-21



