libmesh
libmesh copied to clipboard
libMesh github repository
Hi, I have been trying to use spack to build dependencies for my stack, and I have noticed that the most recent version of libmesh that can be built with...
This patch avoids misleading warnings for two IO options, `-keep-cout` and `--drop-cerr`, by checking for the command line option on all processors (including the zeroth). ``` WARNING! There are options...
Hi, Would this be of interest? I can probably do the rest of the code in a morning if it would. Cheers, -N
We can't support constants and still have a hierarchic basis that can potentially be C0 ... but application users can typically request a p=0 `L2_HIERARCHIC` basis and we really need...
A user suggested that they might have seen normal vectors inverted on a flipped Tri element. I couldn't reproduce that, but I *did* see normal vectors inverted on a flipped...
Playing around with STL files revealed how many of them are good at capturing a geometry with the fewest triangles possible, which is good for file size but not good...
User-defined node and element ids are being renumbered when writing data, because we're renumbering in `write_equation_systems`. FWIW my use case is MOOSE where mesh data are being read from a...
"EDGE" isn't actually in the ExodusII standard, as far as I can tell, despite Paraview and even *exodiff* seemingly supporting it. But apparently Python meshio is stricter, so we should...
Seen this several times now... Exodus simply can't handle meshes over about 200M elements: ``` MooseMesh::prepare() Mesh Information: elem_dimensions()={3} spatial_dimension()=3 n_nodes()=259279152 n_local_nodes()=259279152 n_elem()=253736832 n_local_elem()=253736832 n_active_elem()=253736832 n_subdomains()=11 n_partitions()=1 n_processors()=1 n_threads()=1 processor_id()=0...
Dear libmesh community, This issue requests to make `write_element_data()` (and sister methods) more resistent to missing subdomains. As you know, [Moose](https://mooseframework.inl.gov/index.html) uses libmesh intensively also for the output of Exodus...