-
Notifications
You must be signed in to change notification settings - Fork 185
/
mtex_settings.m
233 lines (170 loc) · 6.71 KB
/
mtex_settings.m
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
function mtex_settings
% initialize MTEX toolbox
%
% This file contains some global settings
% to be set by the user. Please read carefully the predefined
% settings and correct them if you experience troubles.
%% user defined global settings
%------------------------------------------------------------------------
%% default global plotting options
% here you can define default plot options
% default fontsize
% the next lines try to set the fontsize depending on the screen resolution
ppi = get(0,'ScreenPixelsPerInch');
fontSize = round(15 * ppi/100);
% however, you can set the fontsize also to fixed value
%fontSize = 15;
setMTEXpref('FontSize',fontSize);
set(0,'DefaultAxesFontSize',fontSize);
set(0,'DefaultLegendFontSize',fontSize);
try set(0,'defaultPolarAxesFontSize',fontSize); end %#ok<TRYNC>
% default plotting of specimen coordinates
xyzPlot = plottingConvention(zvector,xvector);
setMTEXpref('xyzPlotting',xyzPlot);
% default figure size, possible values are a factor between 0 and 1 or
% 'tiny', 'small', 'normal', 'large', 'huge'
setMTEXpref('figSize','large');
% whether to show or not to show a micronbar on EBSD maps
setMTEXpref('showMicronBar','on')
% whether to show or not to show a coordinates on EBSD maps
setMTEXpref('showCoordinates','off')
% how to annotate pole figure plots
% the following line add X and Y to the plot
% you may want to replace this by 'RD' and 'ND'
pfAnnotations = @(varargin) text([vector3d.X,vector3d.Y,vector3d.Z],{'X','Y','Z'},...
'BackgroundColor','w','tag','axesLabels',varargin{:});
% you can uncomment the following line to disable the annotations
%pfAnnotations = @(varargin) [];
setMTEXpref('pfAnnotations',pfAnnotations);
% default spacing between multiple plots
setMTEXpref('outerPlotSpacing',10);
% setMTEXpref('innerPlotSpacing',10);
% possible methods for Voronoi tessellation: matlab, qhull, jcvoronoi
setMTEXpref('voronoiMethod','jcvoronoi');
% default marker size
% set the marker size depending on the fontSize
% but you can change this also to a fixed value
markerSize = 0.75*fontSize;
setMTEXpref('markerSize',markerSize);
set(0,'DefaultLineMarkerSize',markerSize);
% default annotation style
setMTEXpref('annotationStyle',...
{'marker','s','MarkerEdgeColor','w','MarkerFaceColor','k','hitTest','off'});
% on some systems Matlab has problems displaying RGB maps with opengl. This
% tries to turn it off to overcome this problem. You might try to set this
% to false as this gives usually better graphics performance.
setMTEXpref('openglBug',false)
%% Euler angle convention
% default Euler angle convention
setMTEXpref('EulerAngleConvention','Bunge');
%% file extensions to be associated with MTEX
% add here your pole figure and EBSD data file extensions
setMTEXpref('poleFigureExtensions',...
{'.int','.cpf','.cor','.exp','.xpa','.xpe','.xpf','.axs','.uxd','.xrd','.ras','.asc',...
'.cns','.cnv','.ana','.dat','.out','.ibm','.jul','.epf','.ppf','.pow',...
'.xrdml','.gpf','.plf','.nja','.ptx','.rpf','.pwd','.slc'});
setMTEXpref('EBSDExtensions',...
{'.ebsd','.ctf','.ang','.hkl','.tsl','.sor','.csv','.crc'});
% set default colors
colors = load(fullfile(mtex_path,'plotting','plotting_tools','colors.mat'),'rgb');
% in former MTEX version this was
% color.rgb = vega20;
setMTEXpref('colors',colors.rgb)
% make these colors the default in Matlab
set(0,'DefaultAxesColorOrder',colors.rgb)
%% Default save-mode for generated code snipped (import wizard)
% set to true if generated import-script should be stored on disk by
% default
setMTEXpref('SaveToFile',false)
%% Default Path to data files
% modify following pathes according to your needs, if your files are located at
% different path
setMTEXpref('CIFPath', fullfile(mtexDataPath,'cif'));
setMTEXpref('EBSDPath', fullfile(mtexDataPath,'EBSD'));
setMTEXpref('PoleFigurePath',fullfile(mtexDataPath,'PoleFigure'));
setMTEXpref('ODFPath', fullfile(mtexDataPath,'ODF'));
setMTEXpref('TensorPath', fullfile(mtexDataPath,'tensor'));
setMTEXpref('ExamplePath', fullfile(mtex_path,'..','examples'));
%% set default location to look for data with import wizard
% if not activated, the paths are selected according to the above
setMTEXpref('ImportWizardPath','workpath')
%setMTEXpref('ImportWizardPath',@cd)
%% Default ColorMap
% LaboTeX color map
%setMTEXpref('defaultColorMap',LaboTeXColorMap);
% white to black color map
% setMTEXpref('defaultColorMap','white2blackColorMap');
% jet colormap begin with white
setMTEXpref('defaultColorMap',WhiteJetColorMap);
% MATLAB default color map
% setMTEXpref('defaultColorMap','default');
%% EBSD Phase Colors
% set default color pallte
setMTEXpref('colorPalette','CSS');
% colors for EBSD phase plotting
setMTEXpref('PhaseColorOrder',...
{'LightSkyBlue',...
'DarkSeaGreen',...
'GoldenRod',...
'LightCoral',...
'DarkBlue',...
'DarkGreen',...
'DarkRed',...
'DarkViolet',...
'Gray',...
'Thistle',...
'Aquamarine',...
'MediumSeaGreen',...
'LightSalmon',...
'SteelBlue',...
'MediumPurple',...
'Moccasin',...
'OliveDrab'});
%%
setMTEXpref('stopOnSymmetryMissmatch',true)
setMTEXpref('mtexMethodsAdvise',true)
%% MOSEK integration
% <https://www.mosek.com/ MOSEK> provides an alternative to the
% optimization toolbox
%MOSEKpath = '~/repo/mosek/9.0/toolbox/r2015aom';
%addpath(MOSEKpath);
setMTEXpref('mosek',false)
%% Use extern/insidepoly instead of matlab/inpolygon
% this should be faster
setMTEXpref('insidepoly',true)
%% Turn off Grain Selector
% turning off the grain selector allows faster plotting
% setMTEXpref('GrainSelector',false)
%% Workaround for LaTex bug
% change the following to "Tex" if you have problems with displaying LaTex
% symbols
% by default turn LaTeX on only on Windows or Mac
setMTEXpref('textInterpreter','LaTeX');
%% available memory
% change this value to specify the total amount of free ram
% on your system in kilobytes. By default this is set to 500 MB.
setMTEXpref('memory',500*1024);
%% FFT Accuracy
% change this value to have more accurate but slower computation when
% involving FFT algorithms
%
setMTEXpref('FFTAccuracy',1E-2);
setMTEXpref('maxS1Bandwidth',1024);
setMTEXpref('maxS2Bandwidth',512);
setMTEXpref('maxSO3Bandwidth',64);
%% degree character
% MTEX sometimes experences problems when printing the degree character
% reenter the degree character here in this case
degreeChar = native2unicode([194 176],'UTF-8');
%degree_char = '?';
setMTEXpref('degreeChar',degreeChar);
arrowChar = char(8594);
%arrowChar = '→';
%arrowChar = '~>';
setMTEXpref('arrowChar',arrowChar);
%% compatibility issues
warning('off','MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame');
warning('off','MATLAB:divideByZero'); %#ok<RMWRN>
%% end user defined global settings
%--------------------------------------------------------------------------
end