Data for "Viscoelastic amplification of the pull-off stress in the detachment of a rigid flat punch from an adhesive soft viscoelastic layer"
收藏NIAID Data Ecosystem2026-05-01 收录
下载链接:
https://zenodo.org/record/10533304
下载链接
链接失效反馈官方服务:
资源简介:
This dataset contains all the data generated for the publication
[1] Ali Maghami, Michele Tricarico, Michele Ciavarella, Antonio Papangelo, Viscoelastic amplification of the pull-off stress in thedetachment of a rigid flat punch from an adhesive soft viscoelastic layer, Engineering Fracture Mechanics, (2024), https://doi.org/10.1016/j.engfracmech.2024.109898.
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_FlatPunchOnLayer_v2.mat" is the following:
%%%%%%%%%%%%%
clc
clearvars
close all
% Create a new figure
load('data_FlatPunchOnLayer_v2.mat');
figure
% Choose one of the following names:
% ''Fig4a'' ''Fig4b'' ''Fig5'' ''Fig6''
% ''Fig7a1'' ''Fig7a2'' ''Fig7b1'' ''Fig7b2'' ''Fig7c1'' ''Fig7c2''
% ''Fig8'' ''Fig9'' ''Fig10' ''Fig11''
name=Fig10;
% 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-02-02



