資源簡介
是一個難得的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]);
評論
共有 條評論