Skip to content
Snippets Groups Projects
Commit 30b24c52 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Correctly calculate size of taylor hood element in mini file

parent ffe28867
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ floatingbytes = 8
memperrank = {mbperrank} * 1048576 | eval
vdofsperdir = {formcompiler.ufl_variants.v_degree} + 1 | eval
pdofsperdir = {formcompiler.ufl_variants.p_degree} + 1 | eval
celldofs = {vdofsperdir} ** {dim} + {pdofsperdir} ** {dim} | eval
celldofs = {dim} * {vdofsperdir} ** {dim} + {pdofsperdir} ** {dim} | eval
cellsperrank = {memperrank} / ({floatingbytes} * {celldofs}) | eval
cellsperdir = {cellsperrank} ** (1/{dim}) | eval | toint
firstdircells = {ranks} * {cellsperdir} | eval
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment