HowarthsTransformat​ion(varargin)

HowarthsTransformation.m file solves HowarthsTransformation of boundary layer problem .
39 descargas
Actualizado 4 sep 2017

Ver licencia

HowarthsTransformation.m file provides a framework for solving the problem.
y3y5_0 = HowarthsTransformation(rhofun, miufun, hw, M, Pr, Gamma, y3y5_0guess)
The default values of the parameters are:
rhofun = @(h) h^(-1);
miufun = @(h) h^(2/3);
hw = 2; M = 0; Pr = 0.7;
Gamma = 1.4; y3y5_0guess = [0.1;2];
as described in the link:
https://en.wikipedia.org/wiki/Blasius_boundary_layer#Howarth_transformation
Example 1
y3y5_0 = HowarthsTransformation() %using only default values;

Example 2
y3y5_0 = HowarthsTransformation(@(h)1/(2+tanh(h)), @(h)h^0.7, 5, 0.7, 1.4);

Citar como

Lateef Adewale Kareem (2024). HowarthsTransformation(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/64329-howarthstransformation-varargin), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2012b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Chemistry en Help Center y MATLAB Answers.

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.2.0.0

changed from Gamma1 to Gamma

1.1.0.0

The picture description of the problem

1.0.0.0