Skip to content
Snippets Groups Projects
Commit 214ad0f3 authored by Stefan Girke's avatar Stefan Girke
Browse files

more adjustments

parent 8b9db3bf
No related branches found
No related tags found
No related merge requests found
......@@ -558,9 +558,10 @@ namespace Fem
/**
* \brief Adaptation indicator doing no indication and marking of the entities.
*/
template< class EstimatorImp, class SigmaEstimatorImp >
template< class EstimatorImp, class SigmaEstimatorImp, class ProblemImp >
class PAdaptIndicator
{
typedef ProblemImp ProblemType;
typedef SigmaEstimatorImp SigmaEstimatorType;
typedef typename SigmaEstimatorType::DiscreteFunctionType DiscreteFunctionType;
typedef typename SigmaEstimatorType::AssemblerType AssemblerType;
......@@ -577,9 +578,10 @@ namespace Fem
public:
typedef uint64_t UInt64Type;
PAdaptIndicator( GridType& grid, const DiscreteFunctionType& solution, AssemblerType& assembler, const std::string name = "" )
PAdaptIndicator( GridType& grid, const DiscreteFunctionType& solution, const ProblemType& problem, AssemblerType& assembler, const std::string name = "" )
: pAdapt_( grid, solution.space() ),
sigmaEstimator_( solution.gridPart(), solution, assembler, name )
sigmaEstimator_( solution.gridPart(), solution, assembler, name ),
problem_( problem )
{}
bool adaptive() const { return false; }
......@@ -604,9 +606,9 @@ namespace Fem
sigmaEstimator_.update();
//TODO extract from parameter file
//TODO extract tolerance from parameter file
double tolerance = 1.0;
pAdapt_.estimateMark( problem(), tolerance );
pAdapt_.estimateMark( problem_, tolerance );
}
void postAdapt()
......@@ -639,6 +641,7 @@ namespace Fem
PAdaptivityType pAdapt_;
SigmaEstimatorType sigmaEstimator_;
const ProblemType& problem_;
};
......@@ -719,7 +722,7 @@ namespace Fem
space_( container_.space() ),
assembler_( container_, model() ),
matrix_( container_.matrix() ),
adaptIndicator_( grid, container_.solution(), assembler_, name() ),
adaptIndicator_( grid, container_.solution(), problem(), assembler_, name() ),
step_( 0 ),
time_( 0 )
{
......
......@@ -132,7 +132,7 @@ namespace Fem
typedef SubSolverMonitor< SolverMonitor > SolverMonitorType;
typedef SubDiagnostics< Diagnostics > DiagnosticsType;
typedef PAdaptIndicator< EstimatorType, SigmaEstimatorType > AdaptIndicatorType;
typedef PAdaptIndicator< EstimatorType, SigmaEstimatorType, ProblemInterfaceType > AdaptIndicatorType;
};
template <int polOrd>
......
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