We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[The code below requires PR #769]
This fails:
using Gridap domain = (0,1,0,1) cells = (2,2) model = CartesianDiscreteModel(domain,cells) |> simplexify Ω = Interior(model) dΩ = Measure(Ω,4) m = 2 u(x) = VectorValue(sum(x)^m, sum(x)^m) reffe = ReferenceFE(lagrangian,VectorValue{2,Float64},m) V = FESpace(Ω,reffe) uh = interpolate(u,V) t = Δ(u) - Δ(uh) @assert sum(∫(t⋅t)dΩ) < 1.0e-12
Independent actions that make the test work:
simplexify
m=1
u(x) = sum(x)^m
ReferenceFE(lagrangian,Float64,m)
The text was updated successfully, but these errors were encountered:
This might be relevant to you @oriolcg
Sorry, something went wrong.
Testing the fixes for issue #770
4aeb153
Successfully merging a pull request may close this issue.
[The code below requires PR #769]
This fails:
Independent actions that make the test work:
simplexify
m=1
u(x) = sum(x)^m
andReferenceFE(lagrangian,Float64,m)
(i.e., an scalar valued function)The text was updated successfully, but these errors were encountered: