diff --git a/README.md b/README.md index 0c9f8c6..a68a116 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,11 @@ function [w] = membrane_solution3(T,P) end ``` - +### Approach +- A matrix is set up using finite element analysis of the interior nodes of a 5x5 matrix +- A vector for the y direction is then set up for the membrane +- Using linear algebra, a vector for the displacement of the nodes is created +- The vector can then be transformed to represent the actual surface as a matrix # Part B ```matlab @@ -74,7 +78,9 @@ function [w] = membrane_solution(T,P,n) % Membrane displacement is shown on chart end ``` - +### Approach +- This problem uses the same steps as with the membrane_solution3 function, except it allows for the user to change the number of interior nodes +- This required alterations of the all the indexing and sizing in the function along with a few calculations # Part D ```matlab