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
When calling
equation = find(u, forall=v, lhs=a(u, v), rhs=l(v), bc=bc)
with l a LinearForm associated to a load equal to 0 (meaning f=0) we get the following error:
l
LinearForm
0
f=0
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-25-b67ad67ac997> in <module> ----> 1 test_poisson_2d_dir0_13_diri_24(PSYDAC_BACKEND_GPYCCEL) <ipython-input-24-8c463e5b3c89> in test_poisson_2d_dir0_13_diri_24(backend) 7 dir_nonzero_boundary = get_boundaries(2, 4) 8 ----> 9 run_poisson_2d(solution, f, dir_zero_boundary, 10 dir_nonzero_boundary, ncells=[2**2, 2**2], degree=[2, 2], backend=backend) <ipython-input-17-54db547b3b16> in run_poisson_2d(solution, f, dir_zero_boundary, dir_nonzero_boundary, ncells, degree, backend, comm) 38 39 # Variational model ---> 40 equation = find(u, forall=v, lhs=a(u, v), rhs=l(v), bc=bc) 41 42 # Error norms TypeError: 'Zero' object is not callable
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling
with
l
aLinearForm
associated to a load equal to0
(meaningf=0
) we get the following error:The text was updated successfully, but these errors were encountered: