liste1
PURPOSE
LISTE1 Assembles lists of internal, boundary, interface nodes (similar to liste)
SYNOPSIS
function [lbor,lint,lintint,lgamma]=liste1(ifro);
DESCRIPTION
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
- eig_schur_2d EIG_SCHUR_2D Eigenvalues computation Schur complement matrix
- schur_loc SCHUR_LOC Computes local matrices and lists for implementing the Schur method
- schur_matrix SCHUR_MATRIX Computes Schur complement matrix Sigma and its preconditioner
- stiffq1H STIFFQ1H Construction of stiffness Q1 matrix on the coarse grid.
SOURCE CODE
0001 function [lbor,lint,lintint,lgamma]=liste1(ifro);
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 noe=length(ifro);
0022
0023
0024 lint=[];lbor=[];lgamma=[]; lintint=[];
0025 for i=1:noe
0026 if(ifro(i)==1)
0027 lbor=[lbor;i];
0028 else
0029 lint=[lint;i];
0030 end
0031 end
0032
0033 for i=1:length(lint)
0034 if(ifro(i)==-1)
0035 lgamma=[lgamma;i];
0036 else
0037 lintint=[lintint;i];
0038 end
0039 end
0040
0041 return
Generated on Fri 21-Sep-2007 10:07:00 by m2html © 2003