grinprodgausnode.m
来自「MATLAB二维电阻抗断层成像算法!用于医学成像,里面包括有限元剖分正问题,及反」· M 代码 · 共 47 行
M
47 行
function int=grinprodgausnode(g,I);
%grinprodgausnode Computes the gradient part of the system matrix
%in the linear basis case. The conductivity is also in the linear basis.
% Function int=grinprodgausnode(g,I);
% computes the gradient part of the system matrix
% in the linear basis case. The conductivity is also in the linear basis.
%
% INPUT
%
% g = nodes of the element
% I = index of the chosen node (optional)
%
% OUTPUT
%
% int = three dimensional array or 3x3 matrix of the values of integral
w=[1/6*ones(3,1)];
ip=[1/2 0;1/2 1/2;0 1/2];
L=[-1 1 0;-1 0 1];
Jt=L*g;
iJt=inv(Jt);
dJt=abs(det(Jt));
G=iJt*L;
GdJt=G'*G*dJt;
msg=max(size(g));
if nargin > 1
S=[[1-ip(1,1)-ip(1,2);ip(1,1);ip(1,2)],[1-ip(2,1)-ip(2,2);ip(2,1);ip(2,2)],[1-ip(3,1)-ip(3,2);ip(3,1);ip(3,2)]]*w;
int=S(I)*GdJt;
else
int=zeros(msg,msg,3);
S=[[1-ip(1,1)-ip(1,2);ip(1,1);ip(1,2)],[1-ip(2,1)-ip(2,2);ip(2,1);ip(2,2)],[1-ip(3,1)-ip(3,2);ip(3,1);ip(3,2)]]*w;
for jj=1:3
int(:,:,jj)=S(jj)*GdJt;
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?