parentGrainReconstructor #666
-
Hi Ralf, In the step compute parent orientations, the parent phase was not reconstructed using the job.calcParentFromGraph function. I don't have the FCC parent phase in my data, conssequently, in my CSList. So, I'm having trouble in the initial guess of orientation relationship. Please, how can I deal with this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Hi Ariane, A happy new year, Ralf. |
Beta Was this translation helpful? Give feedback.
-
The documentation says
This means you need to define the parent phase yourself by csParent = crystalSymmetry('432','mineral','FCC') % whatever your parent phase is
p2c = orientation.KurdjumovSachs(csParent, ebsd('childPhase').CS)
job = parentGrainReconstructor(ebsd,grains,p2c) Ralf. |
Beta Was this translation helpful? Give feedback.
-
The reason is that you child 2 child misorientations do not fit the parent
to child orientation relationship.
what is the output of `job.calcParent2child`
Ralf.
|
Beta Was this translation helpful? Give feedback.
-
it seems you mixed the parent and the child phase. What es the output of csParent = crystalSymmetry('432','mineral','FCC') % whatever your parent phase is
p2c = orientation.KurdjumovSachs(csParent, ebsd('childPhase').CS)
job = parentGrainReconstructor(ebsd,grains,p2c) Ralf |
Beta Was this translation helpful? Give feedback.
The documentation says
This means you need to define the parent phase yourself by
Ralf.