Data for paper: Control of fault weakening on the structural styles of underthrusting-dominated non-cohesive accretionary wedges
收藏资源简介:
This repository contains data related to the paper:<br> 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:<br> modelState.json: json file containing various information about the state of the model<br> particles_strain.bin: binary file containing strain data for all particles<br> particles_x.bin: current x position for all particles<br> particles_y.bin: current y position for all particles<br> particles_xIni.bin: initial x position for all particles<br> particles_yIni.bin: initial y position for all particles # File format<br> n, u, data n = number of particles bytesize=[1 * int32]<br> u = characteristic unit bytesize=[1 * double]<br> data = data for n particles bytesize=[n * single] # example to extract data from bin files in python<br> import numpy as np<br> import os with open(FileName, 'rb') as f:<br> f.seek(12, os.SEEK_SET)<br> data = np.fromfile(f, dtype=np.single, count=-1, sep='')



