Frequency of Triple alpha variant clustering for Titanium #71
-
As we know that the transformation strains are minimized by self-accommodation mechanisms via triple alpha variants clustering in Ti64. Generally, Cluster I represents A/B/C, D/E/F, G/H/I, J/K/L; while Category II encompasses those that consist of variants A/E/I, B/D/L, C/G/K and F/H/J. Is there any feature available within MTEX to estimate the number or area frequency of triple alpha variant boundaries? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @Rhalder322 , the answer is yes and no. There is no built-in turn-key solution, but it is rather straight forward to program what you are looking for with few lines of code. Assuming you have run Example 8 to the end you should have a reconstructed prior beta microstructure and a variant ID assigned to each transformed alpha grain. I don't know exactly which convention you use to define variants A/B/C etc, but the convention used in ORTools for variants 1-12 is plotted into the command window during execution of example 8. This code snippet will get you the variant Ids at each triple junction that is made up of transformed alpha grains:
Best wishes |
Beta Was this translation helpful? Give feedback.
-
Hello Prof. Niessen, Q1. For a specific prior beta grain, all 12 alpha variants ( V1, V2, V3.........V12) can be identified based on the particular orientation (P1) of the beta grain and considering the Burgers orientation relationship. For another beta grain (P1*) having a different orientation than the previous one, the orientation of all 12 alpha variants ( V1*, V2*, V3*.........V12*) should also be different than the previous one. Therefore, how a specific alpha variant (V1, V2, V3.........V12) is identified in an EBSD map having several different orientation-based beta grains? Q2. Is it possible to get information of the corresponding parent phase plane & direction for a specific alpha variant defined by unique axis and rot. axis? For example, for the variants listed below, how to figure out which (111) plane and [110] direction is related to which alpha variant? Thank you for your support. Regards, |
Beta Was this translation helpful? Give feedback.
Hi @Rhalder322,
Here are the answers to your questions in order:
Please have a read of the MTEX help section on how child variant orientations are calculated for given a parent orientation.
As Frank stated in his earlier reply to you:
"Regarding the second question, if you run the latest ORTools version, the command
ORinfo(job.p2c);
will return this information. Alternatively you can typejob.p2c.variants(1)
into the command window to get this information."**Lastly, and importantly, if an explanation from the maintainers resolves your issue, please press the "Mark as answer" button on the appropriate response. Your assistance in this regard enables us to close discussions as comple…