Files
LBPM/analysis/morphology.h

8 lines
448 B
C
Raw Normal View History

2018-12-03 16:06:38 -05:00
// Morphological opening routine
#include "common/Array.h"
#include "common/Domain.h"
2019-02-21 10:06:29 -05:00
#include "analysis/runAnalysis.h"
2018-12-03 16:06:38 -05:00
2018-12-05 12:19:42 -05:00
double MorphOpen(DoubleArray &SignDist, char *id, std::shared_ptr<Domain> Dm, double VoidFraction);
2019-02-21 10:06:29 -05:00
double MorphDrain(DoubleArray &SignDist, char *id, std::shared_ptr<Domain> Dm, double VoidFraction);
2018-12-05 12:19:42 -05:00
double MorphGrow(DoubleArray &BoundaryDist, DoubleArray &Dist, Array<char> &id, std::shared_ptr<Domain> Dm, double TargetVol);