📄 junctioncap.m
字号:
function cj = junctioncap(vb, cj0, m, phi)
% analysis of junction capacitance;
% if vb is a vector with two values, an average capacitance over the range
% given by the voltages is given
% otherwise a vector of capacitances is returned
if (length(vb) == 2)
keq = ((-phi^m)/((vb(2)-vb(1))*(1-m)))*((phi-vb(2))^(1-m)-(phi-vb(1))^(1-m));
cj = cj0 * keq;;
else
cj = cj0 ./ (1 - (vb/phi)).^m;
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -