Viscous Flow Theory

Codes to some popular problems and methods in Viscous Flow Theory
79 descargas
Actualizado 16 Jan 2022

Viscous Flow Theory

Codes to some popular problems and methods in Viscous Flow Theory.

View Viscous Flow Theory on File Exchange

1. mynumdiff -

Computes the derivative of the function f(x) where x is the grid on which f(x) has been computed. We assume f(x) = sin(x) and the limits to be [-2pi, 2pi], but this is customizable for different functions.

a. Computes the derivative using the forward difference, backward difference and central difference formula and plots the analytical derivative on the same graph.
b. Computes the error at each point for different values of dx and plots on a separate log-log graph for each difference formula.
c. Plots max error in the entire domain as function of dx for all the three difference formulae on the same graph.

2. mynumintegrate -

Computes the integral of the function f(x) between the lower limit a and upper limit b. Here x is the grid on which f(x) has been computed. We assume f(x) = sin(x) and the limits to be [-2pi, 2pi], but this is customizable for different functions.

a. Computes the integral using the trapezoidal rule and Simpson’s rule and plots the analytical derivative on the same graph.
b. Computes the error at each point for different values of dx and plots it on a separate graph.
c. Computes the integral using inbuilt functions trapz and compare it with the calculated integrals.

3. mystreamline -

Creates a function, mystreamline(u,v,x,y) to compute the streamlines for a given velocity field u(x,y) and v(x,y), where -

u(x,y) = cx/(x^2 + y^2)
v(x,y) = cy/(x^2 + y^2)

where c is a constant. These functions are customizable.

a. Computes the streamlines analytically.
b. Computes the streamlines numerically and compares them with the analytical solution in a domain [x, y] ⊆ [[−1,1],[−1,1]], which is also customizable based on the fields chosen. The inbuilt matlab function is used to compare the streamlines.
c. Computes the pathlines numerically using a similar method mypathline(u,v,x,y,t) for 20 particles starting from random locations on the domain and shows that they lie on the streamlines. Identifies stagnation points, if any.

4. hagen_poiseuille -

Solves the ordinary differential equation numerically and compares it with the analytical solution of the Hagen-Poiseuille flow. For more information on this flow, please read this article.

5. rotating_cylinders -

Consider the flow between two rotating cylinders rotating with angular velocity Ω1, Ω2 such that r1 ≤ r ≤ r2. Here the subscripts 1, 2 refer to the inner and the outer cylinders respectively. The streamlines are assumed to be circular so that the only component of velocity is the tangential velocity, . Furthermore, is only a function of radial distance r, and time t.

a. Solves the ordinary differential equation numerically and compares with the analytical solution of the flow between two rotating cylinders.

To learn more about the stability of such flows, please watch this video.

6. paintbrush_problem -

a. Computes the numerical solution of the model Paintbrush problem (Page 183 of “An Introduction to Fluid Dynamics” by G K Batchelor) and compares it with the analytical solution.
b. Plots the error and the residual as a function of iterations and the grid resolution.

7. TDMA_solver -

Is a function to implement the tridiagonal matrix algorithm (TDMA). For more information on the TDMA solver, please read this article.

Citar como

Ruthu S Sanketh (2024). Viscous Flow Theory (https://github.com/ruthussanketh/viscous-flow/releases/tag/v1.0.0), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2021b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.