HowarthsTransformat​ion(varargin)

HowarthsTransformation.m file solves HowarthsTransformation of boundary layer problem .
39.0 次下载
更新时间 2017/9/4

查看许可证

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

引用格式

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

MATLAB 版本兼容性
创建方式 R2012b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Chemistry 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.2.0.0

changed from Gamma1 to Gamma

1.1.0.0

The picture description of the problem

1.0.0.0