Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
Leahy committed Dec 14, 2017
1 parent c61a346 commit 05281d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
```
Expand Down

0 comments on commit 05281d1

Please sign in to comment.