bound1.m
来自「实现对电磁层析模型的建立」· M 代码 · 共 32 行
M
32 行
function int=bound1(g);%bound1 Computes the boundary integral of one linear basis function in 2D FEM% Function int=bound1(g) calculates the boundary integral% of one basis function from g(1,:) to g(2,:).%% INPUT%% g = integration endpoints%% OUTPUT%% int = value of the integral% 10.5. 1996 P. Ronkanen and M. Vauhkonen% University of Kuopio, Department of Applied Physics, PO Box 1627,% FIN-70211 Kuopio, Finland, email: Marko.Vauhkonen@uku.fiint=1/2*sqrt((g(2,1)-g(1,1))^2+(g(2,2)-g(1,2))^2); %w=[1/2,1/2];%ip=[1/2-1/6*sqrt(3),1/2+1/6*sqrt(3)];%dJt=sqrt((g(2,1)-g(1,1))^2+(g(2,2)-g(1,2))^2); %int=0;% for ii=1:2% S=[1-ip(ii);ip(ii)];% int=int+w(ii)*S;% end%int=int*dJt;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?