From 05281d173e20ff61e72588fe72d6d0f738514904 Mon Sep 17 00:00:00 2001 From: Leahy Date: Thu, 14 Dec 2017 11:00:06 -0500 Subject: [PATCH] 2 --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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); ```