HowarthsTransformat​ion(varargin)

HowarthsTransformation.m file solves HowarthsTransformation of boundary layer problem .
39 téléchargements
Mise à jour 4 sept. 2017

Afficher la licence

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);

Citation pour cette source

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

Compatibilité avec les versions de MATLAB
Créé avec R2012b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Chemistry dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.2.0.0

changed from Gamma1 to Gamma

1.1.0.0

The picture description of the problem

1.0.0.0