Skip to content
Snippets Groups Projects
Commit 85961d6a authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Gridwidth calculation.

[[Imported from SVN: r724]]
parent 753483fd
No related branches found
No related tags found
No related merge requests found
......@@ -963,6 +963,43 @@ namespace Dune
//
//************************************
template< int dim, int dimworld>
inline albertCtype AlbertGridEntity < 0, dim ,dimworld >::
diam()
{
Vec<dim> tmp;
return sqrt(geometry().integration_element(tmp));
}
template< int dim, int dimworld>
inline albertCtype AlbertGridEntity < 0, dim ,dimworld >::
maxEdgeWidth()
{
typedef typename AlbertGridEntity < 0, dim ,dimworld >::Traits::IntersectionIterator InterIt;
//std::cout << level() << " Level \n";
InterIt it = ibegin();
InterIt endit = iend ();
Vec<dim> tmp;
Vec<dim-1> tmp1;
albertCtype vol = 0.5*geometry().integration_element(tmp);
albertCtype fak = 2.0;
if(dim == 3) fak = 1.0;
double minFace = it.outer_normal().norm2();
++it;
for( ; it != endit; ++it )
{
double face = it.outer_normal().norm2();
if(face < minFace) minFace = face;
}
return fak*vol/minFace;
}
template< int dim, int dimworld>
inline bool AlbertGridEntity < 0, dim ,dimworld >::
mark( int refCount )
{
......@@ -3527,6 +3564,23 @@ namespace Dune
return true;
}
template < int dim, int dimworld >
inline double AlbertGrid < dim, dimworld >::calcGridWidth ()
{
LeafIterator it = this->leafbegin ( this->maxlevel () );
LeafIterator endit = this->leafend ( this->maxlevel () );
double maxwidth = 0.0;
for(; it != endit; ++it )
{
double w = it->maxEdgeWidth();
if(w > maxwidth) maxwidth = w;
}
return maxwidth;
}
template < int dim, int dimworld >
inline bool AlbertGrid < dim, dimworld >::
writeGridUSPM ( const char * filename, double time , int level)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment