Incorporate OPMTransport into OPM core library directory structure.

This commit is contained in:
Bård Skaflestad 2011-12-08 13:48:16 +01:00
parent 9a6f932cb2
commit ec3586697f
21 changed files with 0 additions and 72 deletions

View File

@ -1,13 +0,0 @@
libopmtransportdir = $(includedir)/opm/transport
lib_LTLIBRARIES = libopmtransport.la
libopmtransport_la_LIBADD = -lm
libopmtransport_HEADERS = \
spu_explicit.h \
spu_implicit.h \
grid.h
libopmtransport_la_SOURCES = \
spu_explicit.c \
spu_implicit.c

View File

@ -1,59 +0,0 @@
/*
Copyright 2010 SINTEF ICT, Applied Mathematics.
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_GRID_HEADER_INCLUDED
#define OPM_GRID_HEADER_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
typedef
struct Grid {
int dimensions;
int number_of_cells;
int number_of_faces;
int number_of_nodes;
int *face_nodes;
int *face_nodepos;
int *face_cells;
int *cell_faces;
int *cell_facepos;
double *node_coordinates;
double *face_centroids;
double *face_areas;
double *face_normals;
double *cell_centroids;
double *cell_volumes;
} grid_t;
#ifdef __cplusplus
}
#endif
#endif /* OPM_GRID_HEADER_INCLUDED */