HowarthsTransformation(varargin)
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. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
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 |