?? boundaryconditions.m
字號:
function BoundaryConditions(h,N)
global rou T V;
%Subsonic inflow boundary(point 1) conditions
rou(h,1)=1;
V(h,1)=2*V(h,2)-V(h,3);
T(h,1)=1;
%Supersonic outflow boundary(point N) conditions
V(h,N)=2*V(h,N-1)-V(h,N-2);
rou(h,N)=2*rou(h,N-1)-rou(h,N-2);
T(h,N)=2*T(h,N-1)-T(h,N-2);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -