averaging in isoSurfaces

This commit is contained in:
mattijs
2008-11-07 18:14:06 +00:00
parent 856c44c264
commit 29d67c3240
3 changed files with 65 additions and 51 deletions

View File

@ -40,7 +40,7 @@ surfaceFormat vtk;
// 1] vertex values determined from neighbouring cell-centre values
// 2] face values determined using the current face interpolation scheme
// for the field (linear, gamma, etc.)
interpolationScheme cellPointFace;
interpolationScheme cellPoint;
// Fields to sample.
fields
@ -155,21 +155,21 @@ surfaces
// Optional: whether to leave as faces (=default) or triangulate
}
/* not yet (re)implemented --
constantIso
{
name iso;
field rho;
value 0.5;
name isoSurface;
isoField rho;
isoValue 0.5;
interpolate false
}
someIso
interpolatedIso
{
type iso;
field rho;
value 0.5;
name isoSurface;
isoField rho;
isoValue 0.5;
interpolate true;
//regularise false; //optional: do not simplify
}
*/
);