📄 usrsetup.m
字号:
% problem parameters% constants calculationmu = 4*pi*1e-7;epsilon = 8.854*1e-12;speed = 1/(sqrt(mu*epsilon)); % speed of travelling wave% geometry dimension (unit: m)L = 0.025;h = 0.007;l = 0.05;H = 0.035;% origin coordinates valuesxo = 0;yo = 0;% spatial discretization (unit: cm)hx = 0.0025;hy = 0.0035;% time discretization (unit: sec)dt = .8e-12;% Gaussian pulse definitionfc = 0.9e9; % fc=900MHz% parameters for update iterationstol = 1e-10;MAX_STEP = 1000;scheme = 0; % update scheme, '1' for explicit, '0' for implicit% number of sampling points from TD to FDN = realpow(2,16);startFreq = 300e6;endFreq = 900e6;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -