I would suggest the following.
A) Verify by plotting pole figures that the orientation of the data from ebsd1 (OIM-TSL ) quartz (?) and orientation of the data from ebsd2 (Oxford Channel ) muscovite (?)
are correctly aligned in specimen coordinates within MTEX
B) Define elasttic stiffness tensor of alpha-quartz and muscovite
You may need to adjust the tensor CS a,b,c, alpha,beta,gamma to agree with you CS of your imported data
BUT do not change the 'x||a','z||c’ or 'x||a','z||c*’ of the tensor CS as they are tensor reference axes.
%************************************************
% Define elastic stiffness tensor (GPa)
%************************************************
%
% Reference Elastic constants
% alpha-Quartz McSkimin et al 1965 J.Appl.Phys.v.36p.1624-1632
%
% Reference Crystal Structure
% alpha quartz Trigonal SG P3221 25°C d=2.648 g/cm3
%
% Define density (g/cm3)
rho_quartz= 2.6480;
%
% Define Cartesian Tensor crystal symmetry & frame
cs_Tensor = symmetry('-3m',[ 4.9134 4.9134 5.4052],...
[ 90.0000 90.0000 120.0000]*degree,'x||a','z||c',...
'mineral','Alpha-Quartz 1965');
%
% elastic Cij stiffness tensor (GPa) as matrix M
M =....
[[ 86.80 7.04 11.91 -18.04 0.00 0.00];...
[ 7.04 86.80 11.91 18.04 0.00 0.00];...
[ 11.91 11.91 105.75 0.00 0.00 0.00];...
[ -18.04 18.04 0.00 58.20 0.00 0.00];...
[ 0.00 0.00 0.00 0.00 58.20 -18.04];...
[ 0.00 0.00 0.00 0.00 -18.04 39.88]];
%
% M as stiffness tensor C with MTEX tensor command
C_quartz = tensor(M,cs_Tensor);
%
%************************************************
% Define elastic stiffness tensor (GPa)
%************************************************
%
% Reference Elastic constants
% Muscovite Vaughan and Guggenheim JGR 1986
%
% Reference Crystal Structure
% Rothbauer, R., (1971) Untersuchung eines 2M1-Muskovits
% mit Neutronenstrahlen, Neues J. Mineral. Monal., 143-154.
% Muscovite C2/c x||a z||c*
% KAl2AlSi3O10(OH)2 2M1
% Define density 2.834 (g/cm3)
rho_muscovite = 2.834;
%
% Define Cartesian Tensor crystal symmetry & frame
cs_Tensor = symmetry('2/m',[ 5.1918 9.0153 20.0457],...
[ 90.00 95.74 90.00]*degree,'x||a','z||c*',...
'mineral','Muscovite');
%
% elastic Cij stiffness tensor (GPa) as matrix M
M =....
[[ 181.00 48.80 25.60 0.00 -14.20 0.00];...
[ 48.80 178.40 21.20 0.00 1.10 0.00];...
[ 25.60 21.20 58.60 0.00 1.00 0.00];...
[ 0.00 0.00 0.00 16.50 0.00 -5.20];...
[ -14.20 1.10 1.00 0.00 19.50 0.00];...
[ 0.00 0.00 0.00 -5.20 0.00 72.00]];
%
% M as stiffness tensor C with MTEX tensor command
C_muscovite = tensor(M,cs_Tensor);
C) Calculate averages for each mineral
[C_Voigt_quartz,C_Reuss_quartz,C_Hill_quartz] = ...
calcTensor(ebsd1(‘Quartz'),C_quartz)
[C_Voigt_muscovite,C_Reuss_muscovite,C_Hill_muscovite] = ...
calcTensor(ebsd2(‘Muscovite '),C_muscovite )
D) Define volume fractions of Quartz (vf_quartz) and Muscovite (vf_muscovite) from optical microscope or SEM and calculated weighted average
For example Hill average
C_Hill_Aggregate= vf_Quartz*C_Hill_quartz + vf_muscovite*C_Hill_muscovite
density_Aggregate = vf_Quartz*rho_quartz + vf_muscovite*rho_muscovite
all the best David