【原创】利用Matlab绘制Materials studio能带图
作者: xianggui7895(站内联系TA)收录: 2011-04-06 发布: 2011-03-30 Materials Studio提供的能带图既呆板又难看,能不能把能带图画漂亮点呢?
答案当然是肯定的。MS提供了将能带图(实际上是所有chart图形)导出为csv文件的功能。能带图的CSV文件是逗号分割的数据位置,一共两列,第一列是K点位置坐标,第二列是各K点相应的能量值。傻瓜点的做法的是导入到Origin中重新作图,也有专门的软件对数据进行处理画图。不过,我在这里介绍使用Matlab对能带数据进行处理和绘图的方法,感兴趣的大家可以尝试一下,matlab强大的画图功能不会让你失望的:)
第一步:在MS中将能带图导出(file->export...)为csv文件;
第二步:打开Matlab,将csv文件保存到工作目录下;
第三步:新建m文件,内容如下,不同能带图进行相应修改:)
% plot band structure from *.csv file clear;
% general information
Filename = 'ZnO Band Structure-dot.csv';
Num_Pts = 67; % number of Band structure K points
% Note: MS exported csv files of band structure have two columns
% first is K points positions, and second is corresponding energy
% actual points number is Num_Pts-1:)
% computing process
M = csvread(Filename);
x = M(:,1); y = M(:,2);
L = size(M,1);