Data for "Bulk and fracture process zone contribution to the rate-dependent adhesion amplification in viscoelastic broad-band materials"
收藏NIAID Data Ecosystem2026-05-02 收录
下载链接:
https://zenodo.org/record/13358695
下载链接
链接失效反馈官方服务:
资源简介:
This dataset contains all the data generated for the publication
[1] A. Maghami, Q. Wang, M. Tricarico et al., Bulk and fracture process zone contribution to the rate-dependent adhesion amplification in viscoelastic broad-band materials. Journal of the Mechanics and Physics of Solids (2024), doi:https://doi.org/10.1016/j.jmps.2024.105844.
The provided data are those which appear in the figures of Ref. [1]. Data are stored using informative named structures in a ".mat" file. The data are easily accessible through the Commercial Software MATLAB (© 1994-2023 The MathWorks, Inc.) or by using the free software GNU Octave. An exemplary code for loading and plotting the data contained in "data_Sphere_Viscoelastic_BroadBand.mat" is the following:
%%%%%%%%%%%%%
clc
clearvars
close all
% Create a new figure
load('data_Sphere_Viscoelastic_BroadBand.mat');
figure
% Choose one of the following names:
% Fig_3_a, Fig_3_b, Fig_3_c,
% Fig_4, Fig_5_a, Fig_5_b, Fig_5_b_inset,
% Fig_6, Fig_6_inset, Fig_7, Fig_7_inset,
% Fig_8_a, Fig_8_b, Fig_10_a, Fig_10_b
name=Fig_3_a;
% Note: some plots in the manuscript are in log space.
% Plot the data from the structure
for i = 1:numel(name.x) hold on
x_cell = name.x(i);
y_cell = name.y(i);
x = cell2mat(x_cell);
y = cell2mat(y_cell);
plot(x, y);
end
%%%%%%%%%%%%%
The code can be easily adapted for plotting the curves of all the figures contained in Ref. [1].
创建时间:
2024-09-04



