资源简介
是一个难得的VASP自动生成POTCAR,VASP作图处理软件功能丰富工具的软件。使用者不需要去写复杂的代码,全部由VASPKIT搞定,目前使用较新的版本了1.00
代码片段和文件信息
% An example for the visualization of 3D-bandstructure for graphene by using MATLAB
clc
clear
kx_mesh=load(‘KX.grd‘);
ky_mesh=load(‘KY.grd‘);
CBM_mesh=load(‘BAND.B5.grd‘);
VBM_mesh=load(‘BAND.B4.grd‘);
surf(kx_meshky_meshVBM_mesh);
hold on
surf(kx_meshky_meshCBM_mesh);
contourf(kx_meshky_meshCBM_mesh4)
grid on
hold off
xlabel(‘$\it{k}_{x} (\textrm{1/\AA})$‘‘Interpreter‘‘latex‘‘Fontname‘‘TimesNewRoman‘)
ylabel(‘$\it{k}_{y} (\textrm{1/\AA})$‘‘Interpreter‘‘latex‘‘Fontname‘‘TimesNewRoman‘)
zlabel(‘Energy (eV)‘)
axis image
axis vis3d
shading interp;
colormap(hsv);
set(gca‘FontSize‘18);
hold off
zlim([-66]);
评论
共有 条评论