-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunTanguyAnalysis.m
More file actions
84 lines (65 loc) · 2.77 KB
/
runTanguyAnalysis.m
File metadata and controls
84 lines (65 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
%% aSi - run 0 - Strain Rate = 0.0005 1/ps
close all
structure_1 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e12/sr_00050/data/MATLAB/';
structure_2 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e11/sr_00050/data/MATLAB/';
structure_3 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e10/sr_00050/data/MATLAB/';
showBanding({structure_1,structure_2,structure_3},...
'system','tanguy',...
'nBins',100,...
'span',20,...
'averagealong','strainrate',...
'quenchduration',{'1.00','0.10','0.01'},...
'strainrate','0.0005',...
'runnumber','0')
%% aSi - run 0 - Strain Rate = 0.0001 1/ps
close all
structure_1 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e12/sr_00010/data/MATLAB/';
structure_2 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e11/sr_00010/data/MATLAB/';
structure_3 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e10/sr_00010/data/MATLAB/';
showBanding({structure_1,structure_2,structure_3},...
'system','tanguy',...
'nBins',100,...
'span',20,...
'averagealong','strainrate',...
'quenchduration',{'1.00','0.10','0.01'},...
'strainrate','0.0001',...
'runnumber','0')
%% aSi - run 0 - Quench Rate = 0.01 K/ps - Strain Rate = 0.00002 1/ps
close all
structure_1 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e12/sr_00002/data/MATLAB/';
structure_2 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e11/sr_00002/data/MATLAB/';
structure_3 = '/Volumes/MARCC/scratch/Si/run0/shear/qr_1e10/sr_00002/data/MATLAB/';
showBanding({structure_1,structure_2,structure_3},...
'system','tanguy',...
'nBins',100,...
'span',20,...
'averagealong','strainrate',...
'quenchduration',{'1.00','0.10','0.01'},...
'strainrate','0.00002',...
'runnumber','0')
%% aSi - run 1 - Strain Rate = 0.0001 1/ps
close all
structure_1 = '/Volumes/MARCC/scratch/Si/run1/shear/qr_1e12/sr_00010/data/MATLAB/';
structure_2 = '/Volumes/MARCC/scratch/Si/run1/shear/qr_1e11/sr_00010/data/MATLAB/';
structure_3 = '/Volumes/MARCC/scratch/Si/run1/shear/qr_1e10/sr_00010/data/MATLAB/';
showBanding({structure_1,structure_2,structure_3},...
'system','tanguy',...
'nBins',100,...
'span',20,...
'averagealong','strainrate',...
'quenchduration',{'1.00','0.10','0.01'},...
'strainrate','0.0001',...
'runnumber','1')
%% aSi - run 2 - Strain Rate = 0.0001 1/ps
close all
structure_1 = '/Volumes/MARCC/scratch/Si/run2/shear/qr_1e12/sr_00010/data/MATLAB/';
structure_2 = '/Volumes/MARCC/scratch/Si/run2/shear/qr_1e11/sr_00010/data/MATLAB/';
structure_3 = '/Volumes/MARCC/scratch/Si/run2/shear/qr_1e10/sr_00010/data/MATLAB/';
showBanding({structure_1,structure_2,structure_3},...
'system','tanguy',...
'nBins',100,...
'span',20,...
'averagealong','strainrate',...
'quenchduration',{'1.00','0.10','0.01'},...
'strainrate','0.0001',...
'runnumber','2')