diff --git a/README.md b/README.md index c64915e..73ced6b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Part A ### Problem Statement -Create a function that uses the central finite difference approximation to solve for the displacements of a membrane with 3 x 3 interior nodes. The function should take the pressure and temperature as inputs and output a column vector, w. +Create a function that uses the central finite difference approximation to solve for the displacements of a membrane with 3 x 3 interior nodes. The function should take the pressure and tension as inputs and output a column vector, w. ``` matlab function [w] = membrane_solution3(T,P) % Set up initial matrix @@ -24,7 +24,10 @@ function [w] = membrane_solution3(T,P) % Set up initial matrix end ``` -### Part B +## Part B +### Problem Statement +Using the function from part A as well as a given tension of 0.006 and a given pressure of 0.001, solve for w and plot the result in 3 dimensions + ``` matlab [w] = membrane_solution3(0.006,0.001); ```