freeconv.m
来自「Free Convection Past a Vertical Flat Pla」· M 代码 · 共 22 行
M
22 行
% Author: Housam Binous
% Free Convection Past a Vertical Flat Plate
% National Institute of Applied Sciences and Technology, Tunis, TUNISIA
% Email: binoushousam@yahoo.com
function xdot=freeconv(t,x)
global langeda delta
% derivation of the governing equations can be found in Deen's book
% Analysis of Transport Phenomena, OPU, 1998.
xdot(1)=x(2);
xdot(2)=langeda*x(1)-x(3)*x(1);
xdot(3)=x(4)
xdot(4)=1/delta^2*(x(3)-0.5*x(1)^2);
xdot=xdot';
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?