The Wayback Machine - https://web.archive.org/web/20220126015121/https://github.com/topics/fenics
Skip to content
#

fenics

Here are 90 public repositories matching this topic...

precice
michalhabera
michalhabera commented Nov 19, 2020

The actual ghostUpdate is truly needed only in very few places, for most local operations one knows the value for ghosts without communication.

This

u.vector.copy(result=u0.vector)
u0.vector.ghostUpdate(addv=PETSc.InsertMode.INSERT, mode=PETSc.ScatterMode.FORWARD)

could become

with u0.vector.localForm() as loc0, u.vector.localForm() as loc:
    loc.copy(loc0)
``
pymor
renefritze
renefritze commented Jan 6, 2022

While converting the developer docs docuemnt to markdown I stumbled
upon the envvar directive. I think it would be nice to use that generally,
but it needs some work. For one all variables from environment.rst show
up as second level TOC entries in the main navigation now. Which is something
we do not want. The developer docs should also use the referencing mechanism
and maybe we want to add a

Improve this page

Add a description, image, and links to the fenics topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the fenics topic, visit your repo's landing page and select "manage topics."

Learn more