mass.m
来自「采用有限元法计算半导体的带隙结构和波函数。」· M 代码 · 共 27 行
M
27 行
%***************************************************************************************
% FEMQWEBS @Finite element method for quantum well electronic band structure calculation
% | ------------ |
% | Description: |
% | ------------ |
% The tool box provides the procedure to calculate all band edge energies
% and corresponding wavefunctions in sinlge quantum square well using
% Finite Element Method.
% | ------------ |
% | Author: |
% | ------------ |
% Full name: Le Quang Khai
% Email: ronaldokhai@yahoo.com or lqkhai@ajou.ac.kr
%***************************************************************************************
function [m]=mass(x)
nm=1e-9;
m0=9.1e-31;
mw=0.0665*m0;
mb=0.0901*m0;
if(mode(x)==1)
m=mb/mb;
return
else
m=mw/mb;
return
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?