Need help with plotting Taylor Factors in ODF sections #2182
Replies: 7 comments 3 replies
-
Hi Hesam, have a look here Taylor model in short: cs = crystalSymmetry('432');
sS = slipSystem.fcc(cs)
eps = strainRateTensor.uniaxial
M = calcTaylor(eps, sS)
plot(M) Ralf. |
Beta Was this translation helpful? Give feedback.
-
Thank Ralf. This is just getting the M factor. I would like to plot the M factors for each orientation in ODF sections (lets say Phi2). I appreciate if you continue the above code. Hesam |
Beta Was this translation helpful? Give feedback.
-
I got many errors for this |
Beta Was this translation helpful? Give feedback.
-
Can you please check the code below and let me know why I get errors: ebsd = ebsd('indexed'); This code calculates the M for all the indexed orientations but the plotting part does not work. I followed the following link: |
Beta Was this translation helpful? Give feedback.
-
Hi Ralph, Thank you very much for your prompt attention. I tried your code and unfortunately I got the following errors: I tried two different MTEX versions (5.11.2 and 5.8.1) and both return these error lines. I think the "ori = sP.makeGrid;" line before calculating Taylor factor bring this. Can we calculate the Taylor factors for all orientations and then we use the makeGrid? My material is Aluminum with FCC structure. Hesam cs1 = orthorhombic specimenSymmetry The above two symmetries does not match! Error in tensor/rotate_outer (line 18) Error in * (line 40)
|
Beta Was this translation helpful? Give feedback.
-
Ok, lets give it a next try :) CS = crystalSymmetry('432')
% define the slip system
sS = symmetrise(slipSystem.fcc(CS));
% define the strain
epsilon = strainTensor(diag([-0.4 1 -0.6]))
% compute the Taylor factor
M = calcTaylor(epsilon,sS);
% define the plotting sections and the corresponding orientations
sP = phi2Sections(CS,specimenSymmetry('222'));
sP.phi2 = (0:15:90)*degree;
% do the plot
plot(M,sP)
mtexColorbar Ralf. |
Beta Was this translation helpful? Give feedback.
-
Hi Ralf, Thank you so much for your kind help. The last code finally worked. Thanks in advance for your prompt attention. Hesam |
Beta Was this translation helpful? Give feedback.
-
Hi MTEX community,
I need help plotting the Taylor factors calculated using a uniaxial strain tensor for all my indexed orientations within ODF-Phi2 sections. Can someone assist me with the code for this?
Thanks in advance for your help.
Hesam
Beta Was this translation helpful? Give feedback.
All reactions