-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strict tolerance checks for CompositeGridFunctionEstimator #5
Comments
Commits 4925273 and 16e65f2 address this. Please feel free to comment @LogashenkoDL, @lus0a, @junxiW, @Nordegraf and everybody ;-)! |
Here's a small example: local limexErrorEst = CompositeGridFunctionEstimator() local scalePSquared = 1.0 weightedMetricSpace:add(spaceC) limexErrorEst:add(weightedMetricSpace) |
@Nordegraf: Thx for the feedback! Note that, if required, you can now also try to include the H1 semi-norm for the concentration: local spaceC2 = H1SemiComponentSpace("c", 2) No additional scaling is required! |
One drawback of is, that it is ill-posed for which yields This is realized in 2a5c62a. |
The current implementation (as of 3c01ad1) of CompositeGridFunctionEstimator accepts a step, if
(1)
In some cases, a stricter tolerance is desirable. In particular, we may want to enforce the tolerance in in a component-wise fashion:
(2)
I suggest to a add function 'use_strict_relative_norms' to enforce this.
=> Note that (2) induces (1)!
The text was updated successfully, but these errors were encountered: