Data for "Enhancement of adhesion strength through microvibrations: Modeling and experiments"
收藏资源简介:
This dataset contains all the data generated for the publication [1] M. Tricarico, M. Ciavarella, A. Papangelo, Enhancement of adhesion strength through microvibrations: Modeling and experiments. Journal of the Mechanics and Physics of Solids, doi: https://doi.org/10.1016/j.jmps.2024.106020 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 "RawData.mat" is the following: %%%%%%%%%%%%% clc clearvars close all % Create a new figure load('RawData.mat'); figure % Choose one of the following names: % Fig_2_a_top, Fig_2_a_bottom, Fig_2_b, % Fig_2_c_1, Fig_2_c_2, Fig_2_c_3, Fig_2_c_4 % Fig_3_, Fig_3_, % Fig_5, Fig_5_inset, % Fig_6_a, Fig_6_b, Fig_6_c_a, Fig_6_c_F % Fig_7a,Fig_7a_inset % Fig_8A_dgamma, Fig_8A_E % Fig_9A, % Fig_B10 % Fig_C11 name=Fig_3_aA; % Note: some plots in the manuscript are in log space. % Plot the data from the structure if isa(name.x,'cell') == 1 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 else x = name.x; y= name.y; plot(x, y); end %%%%%%%%%%%%% The code can be easily adapted for plotting the curves of all the figures contained in Ref. [1].



