Plotting a 2D crystal lattice from two primitive lattice vectors

52 ビュー (過去 30 日間)
Jennifer Garrison
Jennifer Garrison 2019 年 9 月 7 日
コメント済み: savitha muthanna 2021 年 8 月 16 日
I am trying generate a plot of a crystal lattice based on two prmitive lattice vectors:
v1= -0.5i + -sqrt(3)/2j
v2= 1i
where i and j are orhtogonal unit vecotors to represent the x and y directions.
I am not sure where to begin.
  2 件のコメント
darova
darova 2019 年 9 月 8 日
That is what you want?
crystal-lattices-and-unit-cells.png
Jennifer Garrison
Jennifer Garrison 2019 年 9 月 8 日
It only needs to be 2D but yes. I basically need to define my own coordinate system that is not the standard cartesian one with those vectors and display the lattice points like you did.

サインインしてコメントする。

採用された回答

John D'Errico
John D'Errico 2019 年 9 月 8 日
First, you need to understand that MATLAB does not understand what you intend by this notation:
v1= -0.5i + -sqrt(3)/2j
Both i and j are sqrt(-1) in MATLAB. They are not distinct. Instead, just write them as vectors:
v1= [-0.5, -sqrt(3)/2];
v2= [1 , 0];
[x,y] = meshgrid(0:10,0:5);
xy = [x(:),y(:)];
T = [v1;v2];
xyt = xy*T;
xt = reshape(xyt(:,1),size(x));
yt = reshape(xyt(:,2),size(y));
plot(xt,yt,'ro-')
hold on
plot(xt',yt','r-')
axis equal
axis square
untitled.jpg
  3 件のコメント
Bjorn Gustavsson
Bjorn Gustavsson 2020 年 4 月 29 日
Simply extend John's or my suggestion to 3-D. You can call meshgrid (or ndgrid) with 3 inputs and 3 outputs:
[i1,j2,k3] = meshgrid(0:3,0:4,0:2);
Then define your 3 lattice-vectors, and use plot3 to plot the grid.
savitha muthanna
savitha muthanna 2021 年 8 月 16 日
@John D'Errico Would you know the primitive lattice vectors to generate a hex lattice with triangular(equilateral) cells?

サインインしてコメントする。

その他の回答 (2 件)

Bjorn Gustavsson
Bjorn Gustavsson 2019 年 9 月 8 日
If you do it stepwise it becomes "not too tricky":
e1 = [-0.5; -sqrt(3)/2]; % Your unit
e2 = [1; 0]; % vectors
[I1,I2] = meshgrid(-10:10,-8:8); % A 2-D set of points
r_crystal = [e1,e2]*[I1(:)';I2(:)']; % calculate r_c = n*e1 + m*e2 for all points
plot(r_crystal(1,:),r_crystal(2,:),'.')
You can dood.e with how big crystal you want or what shape, but this should give you something.
HTH
  1 件のコメント
Jennifer Garrison
Jennifer Garrison 2019 年 9 月 8 日
Thank you so much that's exactly what I needed!

サインインしてコメントする。


Yarlapati Akshay
Yarlapati Akshay 2020 年 4 月 30 日
r_1st=2
N_1st=

カテゴリ

Help Center および File ExchangeCrystals についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by