00001 00005 class GridFVSizeInfo 00006 00007 { 00008 public: 00009 00010 00011 00012 GridFVState grid_state; 00013 GridFVType grid_type; 00014 00015 bool redim_vertex_data; 00016 bool redim_face_data; 00017 00018 int nsd; 00019 int nvols; 00020 int nfaces; 00021 int nvertices; 00022 int ndofs; 00023 int nfacedofs; 00024 int nbind; 00025 00026 bool center_dofs; 00027 bool onemat; 00028 00029 int max_vol_vol; 00030 int max_vol_face; 00031 int max_vol_vert; 00032 00033 int max_face_vol; 00034 int max_face_vert; 00035 00036 int max_vert_vol; 00037 int max_vert_face; 00038 00039 00040 00041 MatSimple(int) face2vertices; 00042 00043 GridFVSizeInfo (); 00044 GridFVSizeInfo (const GridFV& grid); 00045 00046 ~GridFVSizeInfo () {} 00047 00048 void reset (); 00049 void print (Os os) const; 00050 }; 00051 00052