声振论坛

 找回密码
 我要加入

QQ登录

只需一步,快速开始

查看: 1250|回复: 5

[综合讨论] 请教matlab程序错误

[复制链接]
发表于 2011-3-30 14:32 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?我要加入

x
本帖最后由 haorizi2012 于 2011-3-30 14:33 编辑

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% A LATTICE BOLTZMANN FORMULATION FOR THE ANALYSIS OF
% RADIATIVE HEAT TRANSFER PROBLEMS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Lattice Boltzmann sample, written in matlab
% Copyright (C) 2010-12-10 14:53:49 Zhao Lei .
% Address:
% E-mail: haorizi2008.cool@163.com
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear
clf

% RADIATION CONSTANS

ly     = 51;
lx     = 51;                        
delta_x= 1./(lx-1);
delta_y= 1./(ly-1);
delta_t= 1.0e-004;
sigma = 5.67e-008;          % constant s is the geometric distance
Thot  = 1;
Tcold = 0;
Ib    = sigma*Thot.^4/pi ;  % blackbody intensity
G     = 4*pi.*Ib ;          % volumetric absorption
IEq   = G/(4*pi);           % equilibrinm PDFs
beta  = 1.0;                % extinction coefficient
n   =8;
alpha = pi/4;      %
tPlot = 100;       % iterations between successive graphical outputs
tStatistics = 10;  % iterations between successive file accesses
Kn = delta_x*beta <= 0.05;  % Kn number is smaller than a threshold value that ensures stability and accuracy

% D2Q8 LATTICE CONSTANTS
cx  = [  1,   0,   -1,   0,   1,   -1,  -1,   1  ];
cy  = [  0,   1,    0,  -1,   1,   1,   -1,  -1  ];

t   = ones(1,8)*alpha/(2*pi);       % weight
az  = [0:2*pi/n:7/4*pi];      
[y,x] = meshgrid(1:ly,1:lx);


ux  = delta_x/delta_t;   % velocity
uy  = delta_y/delta_t;
omega = sqrt((cx*ux)*(cx*ux)'+(cx*uy)*(cx*uy)')*beta;    % relaxation frequency


% INITIAL CONDITION FOR RADIATION:  
IIn  = ones(8,lx,ly);   %8 is the direction number,2 is r
IOut = ones(8,lx,ly);
ts = 0;

% MAIN LOOP
while (ts<80000 && Kn <= 0.05 && abs((abs(IOut)-abs(IIn))./abs(IIn)))<1e-6 || ts<100
      
    %  BOUNDARY CONDITIONS FOR RADIATION:
    for i=1:8
        IIn (i , : ,1) = sigma*Thot^4/pi;  % sigma is Stefan-Boltzmann constant
        IOut(i , 1 ,:) = 0;
        IOut(i ,lx ,:) = 0;
        IOut(i ,: ,ly) = 0;
    end
      % COLLISION STEP

    for i=1:8
        IEq(i,:,:)  = zeros(i,lx,ly);  %让平衡分布函数IEq初始为同维的零矩阵
        IEq(i,:,:)  = IEq(i,:,:)+ reshape(t*reshape(IIn,8,lx*ly),i,lx,ly);       % equilibrinm PDFs
        IOut(i,:,:) = zeros(i,lx,ly);
        IOut(i,:,:) = IIn(i,:,:) - omega .* (IIn(i,:,:)-IEq(i,:,:));
    end
   
      % STREAMING STEP RADIATION
    for i=1:8
       IIn(i,:,:) = circshift(IOut(i,:,:), [0,cx(i),cy(i)]);
       tx  = pi*sin(alpha/2)*cos(az(i));     %weight x direction
       ty  = pi*sin(alpha/2)*sin(az(i));     %weight y direction
    end
    ts = ts+1;
end
    % radiative heat fluxes
    Qx = sum(tx.*IOut);
    Qy = sum(ty.*IOut);
  
    % VISUALIZATION
    if (mod(ts,tPlot)==0)
       Q = reshape(sqrt(Qx.^2+Qy.^2),lx,ly);
       imagesc(Q');colorbar
       title('heat flux');
       axis equal off; drawnow
    end


耽误一下大家的时间,希望能得到大家的关注



回复
分享到:

使用道具 举报

发表于 2011-3-30 15:24 | 显示全部楼层
回复 1 # haorizi2012 的帖子

你不说你的问题,光贴个程序出来,你想让网友如何关注?
 楼主| 发表于 2011-3-30 19:03 | 显示全部楼层
回复 2 # mhkmars 的帖子

你运行一下就知道了啊,主要是  IEq(i,:,:)  = IEq(i,:,:)+ reshape(t*reshape(IIn,8,lx*ly),i,lx,ly);  这句,
??? Index exceeds matrix dimensions.  
发表于 2011-3-31 09:11 | 显示全部楼层

估计是你数组维数没有定义好,
发表于 2011-3-31 23:24 | 显示全部楼层
你的错误原因是矩阵访问超出边界了。比如矩阵里面只要3个元素,你访问第四个就出现类似错误了。程序运行问题,你可以在M文件里面加断点,单步调试。

评分

1

查看全部评分

发表于 2011-4-1 01:00 | 显示全部楼层
本帖最后由 ChaChing 于 2011-4-1 01:02 编辑

回复 3 # haorizi2012 的帖子

1. 请标题要明确!
2. Ref: 12F, 常见的程序出错问题整理 (eight)
http://forum.vibunion.com/forum/thread-46001-1-1.html

您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2024-11-16 09:36 , Processed in 0.068334 second(s), 19 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表