freeconv.asv
来自「Free Convection Past a Vertical Flat Pla」· ASV 代码 · 共 23 行
ASV
23 行
% 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)=langedax(3);
xdot(3)=-3*x(1)*x(3)+2*x(2)^2-x(4);
xdot(4)=x(5);
xdot(5)=-3*Pr*x(1)*x(5);
xdot=xdot';
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?