derivation.m
来自「Free Convection Past a Vertical Flat Pla」· M 代码 · 共 20 行
M
20 行
% Author: Housam Binous
% Free Convection Past a Vertical Flat Plate
% National Institute of Applied Sciences and Technology, Tunis, TUNISIA
% Email: binoushousam@yahoo.com
function f=derivation(a)
x0=[0 0 a(1) 1 a(2)];
[t,Y]=ode15s(@freeconv,[0 5],x0);
% we need to verify the outer fluid conditions
% this is a split boundary condition problem
f(1)=Y(end,2);
f(2)=Y(end,4)^2+Y(end,5)^2;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?