report on sbfem coding
report on sbfem coding
Laplace Inetrpolant:
From the matlab code of Laplace Interpolant, I focused on understanding the concept of loop over
vertices and circum function. The code iterates through each vertex of the polygon. The shape
function values are normalized by the sum of numerators in order to ensure the partition of unity.
triangles formed by neighbouring nodes in the polygon. In order to construct the shape function,
This matlab code interprets the function that computes shape function and its derivatives for a
increasing order like 2 nodes for linear shape function, 3 nodes for quadratic shape function, 4
My confusion lies on the shape function for 4 node element. How are shape function
Also, If I want to generalize this to 5 or more nodes, are there any specific principles or
I understand the general mathematical approach the code implements for the stiffness matrix
computation. The code structure and purpose are clear to me. However, I have some confusions
coordinates but are not defined in the function inputs. My confusion is should these be pre-
computed?
I understand that the eigenvalue problem is used to compute the scaled boundary
How do the dimensions of these matrices change with the number of nodes or the degree
of the shape functions? Should we be considering any constraints to ensure these matrices
are well-formed?
How does the code handle cases where the Jacobian determinant in the given code becomes
small or negative?
These are some of the part where I am confused on, Professor. Currently, I am also working on