hypre/struct_ls/smg_setup_rap.c

181 lines
5.9 KiB
C

/*BHEADER**********************************************************************
* Copyright (c) 2008, Lawrence Livermore National Security, LLC.
* Produced at the Lawrence Livermore National Laboratory.
* This file is part of HYPRE. See file COPYRIGHT for details.
*
* HYPRE is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License (as published by the Free
* Software Foundation) version 2.1 dated February 1999.
*
* $Revision$
***********************************************************************EHEADER*/
#include "_hypre_struct_ls.h"
#include "smg.h"
#define OLDRAP 1
#define NEWRAP 0
/*--------------------------------------------------------------------------
* Wrapper for 2 and 3d CreateRAPOp routines which set up new coarse
* grid structures.
*--------------------------------------------------------------------------*/
hypre_StructMatrix *
hypre_SMGCreateRAPOp( hypre_StructMatrix *R,
hypre_StructMatrix *A,
hypre_StructMatrix *PT,
hypre_StructGrid *coarse_grid )
{
hypre_StructMatrix *RAP;
hypre_StructStencil *stencil;
#if NEWRAP
HYPRE_Int cdir;
HYPRE_Int P_stored_as_transpose = 1;
#endif
stencil = hypre_StructMatrixStencil(A);
#if OLDRAP
switch (hypre_StructStencilDim(stencil))
{
case 2:
RAP = hypre_SMG2CreateRAPOp(R ,A, PT, coarse_grid);
break;
case 3:
RAP = hypre_SMG3CreateRAPOp(R ,A, PT, coarse_grid);
break;
}
#endif
#if NEWRAP
switch (hypre_StructStencilDim(stencil))
{
case 2:
cdir = 1;
RAP = hypre_SemiCreateRAPOp(R ,A, PT, coarse_grid, cdir,
P_stored_as_transpose);
break;
case 3:
cdir = 2;
RAP = hypre_SemiCreateRAPOp(R ,A, PT, coarse_grid, cdir,
P_stored_as_transpose);
break;
}
#endif
return RAP;
}
/*--------------------------------------------------------------------------
* Wrapper for 2 and 3d, symmetric and non-symmetric routines to calculate
* entries in RAP. Incomplete error handling at the moment.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_SMGSetupRAPOp( hypre_StructMatrix *R,
hypre_StructMatrix *A,
hypre_StructMatrix *PT,
hypre_StructMatrix *Ac,
hypre_Index cindex,
hypre_Index cstride )
{
#if NEWRAP
HYPRE_Int cdir;
HYPRE_Int P_stored_as_transpose = 1;
#endif
hypre_StructStencil *stencil;
stencil = hypre_StructMatrixStencil(A);
#if OLDRAP
switch (hypre_StructStencilDim(stencil))
{
case 2:
/*--------------------------------------------------------------------
* Set lower triangular (+ diagonal) coefficients
*--------------------------------------------------------------------*/
hypre_SMG2BuildRAPSym(A, PT, R, Ac, cindex, cstride);
/*--------------------------------------------------------------------
* For non-symmetric A, set upper triangular coefficients as well
*--------------------------------------------------------------------*/
if(!hypre_StructMatrixSymmetric(A))
{
hypre_SMG2BuildRAPNoSym(A, PT, R, Ac, cindex, cstride);
/*-----------------------------------------------------------------
* Collapse stencil for periodic probems on coarsest grid.
*-----------------------------------------------------------------*/
hypre_SMG2RAPPeriodicNoSym(Ac, cindex, cstride);
}
else
{
/*-----------------------------------------------------------------
* Collapse stencil for periodic problems on coarsest grid.
*-----------------------------------------------------------------*/
hypre_SMG2RAPPeriodicSym(Ac, cindex, cstride);
}
break;
case 3:
/*--------------------------------------------------------------------
* Set lower triangular (+ diagonal) coefficients
*--------------------------------------------------------------------*/
hypre_SMG3BuildRAPSym(A, PT, R, Ac, cindex, cstride);
/*--------------------------------------------------------------------
* For non-symmetric A, set upper triangular coefficients as well
*--------------------------------------------------------------------*/
if(!hypre_StructMatrixSymmetric(A))
{
hypre_SMG3BuildRAPNoSym(A, PT, R, Ac, cindex, cstride);
/*-----------------------------------------------------------------
* Collapse stencil for periodic probems on coarsest grid.
*-----------------------------------------------------------------*/
hypre_SMG3RAPPeriodicNoSym(Ac, cindex, cstride);
}
else
{
/*-----------------------------------------------------------------
* Collapse stencil for periodic problems on coarsest grid.
*-----------------------------------------------------------------*/
hypre_SMG3RAPPeriodicSym(Ac, cindex, cstride);
}
break;
}
#endif
#if NEWRAP
switch (hypre_StructStencilDim(stencil))
{
case 2:
cdir = 1;
hypre_SemiBuildRAP(A, PT, R, cdir, cindex, cstride,
P_stored_as_transpose, Ac);
break;
case 3:
cdir = 2;
hypre_SemiBuildRAP(A, PT, R, cdir, cindex, cstride,
P_stored_as_transpose, Ac);
break;
}
#endif
hypre_StructMatrixAssemble(Ac);
return hypre_error_flag;
}