Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

trapezoidal.h

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2001 The AUTHORS 
00003  *   Romeu Andre' Pieritz, Ph.D.        - romeu_pieritz@hotmail.com
00004  *   Rafael Mendes, Eng.                – mendes_rafael@yahoo.com
00005  *   Rodrigo Ferraz de Andrade, Eng.    – rferraz@iname.com 
00006  * All rights reserved.
00007  *
00008  * Permission to use, copy and distribute this software and its
00009  * documentation for educational and personal use, without fee is hereby granted, 
00010  * provided that the above copyright notice and the following
00011  * two paragraphs appear in all copies of this software.
00012  *
00013  * IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR
00014  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
00015  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUTHORS
00016  * HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00017  *
00018  * THE AUTHORS SPECIFICALLY DISCLAIMS ANY WARRANTIES,
00019  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
00020  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HERE UNDER IS
00021  * ON AN "AS IS" BASIS, AND THE AUTHORS HAVE NO OBLIGATION TO
00022  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
00023  *
00024  * SINMEC Lab. - CFD Sinflow Project - http://www.sinmec.ufsc.br/cfd
00025  */
00026 
00027 
00028 // File Define
00029 #ifndef __CSFL_GEOM_GRID_TRAPEZOIDAL_H__
00030 #define __CSFL_GEOM_GRID_TRAPEZOIDAL_H__
00031 
00032 
00033 // Include
00034 #include <csfl/geom/grid/grid.h>
00035 #include <csfl/geom/grid/nodedistribution.h>
00036 
00037 
00038 // Namespace
00039 namespace csfl {
00040 
00041 //==============================================================================
00042 //              Class IGridTrapezoidal
00043 //              Description: Trapezoidal grid
00044 //==============================================================================
00045 
00046 class IGridTrapezoidal : public IGrid
00047 
00051 
00052 {
00053                 
00054 public:
00055     
00061         IGridTrapezoidal( 
00062         int _row = 10,
00063         int _col = 10, 
00064         IDPoint _swp = IDPoint::zero,
00065                 IDPoint _sep = IDPoint( 1.0, 1.0 ),
00066                 IDPoint _nwp = IDPoint( 0.0, 3.0 ),
00067                 IDPoint _nep = IDPoint( 1.0, 2.0 ));
00068         
00074         IGridTrapezoidal( 
00075         const ISize &_size , 
00076         IDPoint _swp = IDPoint::zero,
00077                 IDPoint _sep = IDPoint( 1.0, 1.0 ),
00078                 IDPoint _nwp = IDPoint( 0.0, 3.0 ),
00079                 IDPoint _nep = IDPoint( 1.0, 2.0 ));
00080 
00088         IGridTrapezoidal( 
00089         int p_Ni,
00090         int p_Nj, 
00091                 IDPoint p_SW,
00092                 IDPoint p_SE,
00093                 IDPoint p_NW,
00094                 IDPoint p_NE,
00095                 INodeDistribution * p_NiDirection,
00096                 INodeDistribution * p_NjDirection);
00097 
00101         IGridTrapezoidal( IGridTrapezoidal *_g );
00102         
00103         ~IGridTrapezoidal() {}
00104 
00108         IDPoint SouthWestPoint() { return swp; }
00109         
00113         IDPoint SouthEastPoint() { return sep; }
00114 
00118         IDPoint NorthWestPoint() { return nwp; }
00119         
00123         IDPoint NorthEastPoint() { return nep; }
00124         
00125 
00126 protected:
00127         IDPoint swp, sep, nwp, nep;
00128         
00129 };
00130 
00131 //==============================================================================
00132 } // csfl namespace
00133 
00134 #endif// __CSFL_GEOM_GRID_TRAPEZOIDAL_H__

 

CFD Project | Documents | Downloads | Contact us | Use Terms

 

© SINMEC/EMC/UFSC, 2001.

All rights reserved.

Last Update: Jan. 18, 2002

 Webmaster