Recent content by Arkady87

  1. A

    Graduate Solving one dimension steady state heat equation with finite differences

    I have a project where I need to solve T''(x) = bT^4 ; 0<=x<=1 T(0) = 1 T'(1) = 0 using finite differences to generate a system of equations in Matlab and solve the system to find the solution So far I have: (using centred 2nd degree finite difference) T''(x) = (T(x+h) - 2T(x) +...