InterviewSolution
| 1. |
Find the second-order accurate finite difference approximation of the first derivative of the velocity component (u) in the x-direction using the Taylor series expansion. (Note: i and j are in the x and y-direction respectively).(a) \(\frac{u_{i,j+1}-u_{i,j-1}}{\Delta x}\)(b) \(\frac{u_{i+1,j}-u_{i-1,j}}{\Delta x}\)(c) \(\frac{u_{i+1,j}-u_{i-1,j}}{2\Delta x}\)(d) \(\frac{u_{i,j+1}-u_{i,j-1}}{2\Delta x}\)I have been asked this question in examination.This interesting question is from Finite Difference Method in chapter Finite Difference Methods of Computational Fluid Dynamics |
|
Answer» The correct option is (c) \(\frac{u_{i+1,J}-u_{i-1,j}}{2\Delta x}\) |
|