20#ifndef OPM_IO_ECLIODATA_HPP
21#define OPM_IO_ECLIODATA_HPP
25namespace Opm {
namespace EclIO {
29 INTE, REAL, DOUB, CHAR, LOGI, MESS, C0NN
33 const unsigned int true_value_ecl = 0xffffffff;
34 const unsigned int true_value_ix = 0x1000000;
35 const unsigned int false_value = 0x00000000;
38 const int sizeOfInte = 4;
39 const int sizeOfReal = 4;
40 const int sizeOfDoub = 8;
41 const int sizeOfLogi = 4;
42 const int sizeOfChar = 8;
44 const int MaxBlockSizeInte = 4000;
45 const int MaxBlockSizeReal = 4000;
46 const int MaxBlockSizeDoub = 8000;
47 const int MaxBlockSizeLogi = 4000;
48 const int MaxBlockSizeChar = 840;
51 const int MaxNumBlockInte = 1000;
52 const int MaxNumBlockReal = 1000;
53 const int MaxNumBlockDoub = 1000;
54 const int MaxNumBlockLogi = 1000;
55 const int MaxNumBlockChar = 105;
57 const int numColumnsInte = 6;
58 const int numColumnsReal = 4;
59 const int numColumnsDoub = 3;
60 const int numColumnsLogi = 25;
61 const int numColumnsChar = 7;
63 const int columnWidthInte = 12;
64 const int columnWidthReal = 17;
65 const int columnWidthDoub = 23;
66 const int columnWidthLogi = 3;
67 const int columnWidthChar = 11;
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30