You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
V =TestFESpace(model,reffe,dirichlet_tags="dirichlet") # <-- note here
Ω =Triangulation(model,tags="domain")
Γ =BoundaryTriangulation(model,tags="neumann")
Proposal:
V =TestFESpace(model,reffe,tags="dirichlet") # <-- note here
Ω =Triangulation(model,tags="domain")
Γ =BoundaryTriangulation(model,tags="neumann")
This would lead to less writing and be more consistent with the other constructors. The change is feasible since we only have (and will possibly always have) one kind of tags in the FESpace constructor. In addition, it would fix gridap/Tutorials#78
The text was updated successfully, but these errors were encountered:
Now:
Proposal:
This would lead to less writing and be more consistent with the other constructors. The change is feasible since we only have (and will possibly always have) one kind of tags in the FESpace constructor. In addition, it would fix gridap/Tutorials#78
The text was updated successfully, but these errors were encountered: