You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am trying to write a linear interpolation function from simplexgrids
to simplexgrids. The main loop is as follows:
cf =CellFinder(grid_from)
for inode_to=1:nnodes_to
@views icell_from=gFindLocal!(λ, cf, coord[:,inode_to]; icellstart)
for i=1:dim+1
inode_from=cn_from[i,icell_from]
u_to[inode_to]+=λ[i]*u_from[inode_from]
end
icell_start=icell_from
end
This does not work. I figured out that I need to permute the λ values.
How is the sequence of barycentric coordinates defined with respect to cellnodes[:,icell] ?
And do we have a link with #1 ?
The text was updated successfully, but these errors were encountered:
Hi, I am trying to write a linear interpolation function from simplexgrids
to simplexgrids. The main loop is as follows:
This does not work. I figured out that I need to permute the λ values.
How is the sequence of barycentric coordinates defined with respect to
cellnodes[:,icell]
?And do we have a link with #1 ?
The text was updated successfully, but these errors were encountered: