Hello,
I've been trying to make prismatic and pyramidal fiber of an hcp system without success, next, my procedure:
First I try with the basal fiber doing this:
1. Define the symmetry and an orientation of a basal pole
csa = crystalsymmetry('hexagonal');
o_basal = orientation.byEuler(0,0,0,csa);
2. Define the fiber with the orientation and a vector 3d to align every direction parallel to the normal to the orientation defined.
f_bsl = fibre(o_basal,vector3d.Z)
---
size: 1 x 1
mineral: Titanium (Alpha) (622, X||a, Y||b*, Z||c)
o1: (0°,0°,0°)
h: (0001)
---
plotPDF(f_bsl,h,csa,'lineColor','r','linewidth',2)
Luckily, I built the basal fiber right, as you can see in the plot attached. However, I couldn't get the same results for prismatic and pyramidal ones.
For that reason, I try to build the prismatic and pyramidal fibers, with two orientations.
For prismatic I take as reference the orientation (1 1 -2 0) (1 -1 0 0),
o_pr = orientation.byMiller([1 1 0],[1 -1 0],csa);
--
Bunge Euler angles in degree
phi1 Phi phi2 Inv.
360 90 30 0
The idea is to complete the fiber since phi1 = 0*degree to phi2 = 360*degree
o_pr1 = orientation.byEuler(0*degree,90*degree,30*degree,csa);
f_pr = fibre(o_pr1,o_pr);
---
o1: (0°,90°,30°)
h: (2-1-10)
>>
It supposed that it must did the prismatic fiber, but the result is other as you can see in the attached pole figure.
How can I solve it? And also I would like that the point in the center of pole figure appear when it supossed to be there?
Best Regards
Camilo Garzón