libmesh icon indicating copy to clipboard operation
libmesh copied to clipboard

libMesh github repository

Results 222 libmesh issues
Sort by recently updated
recently updated
newest added

When no matching nodes are found, libmesh throws an error now refs idaholab/moose#27758

When building version 5a56603358be17cdaa1c8449d02e9776de77ee21 of libMesh, I get the following error: `../../../../../contrib/exodusii/v8.11/exodus/src/ex_utils.c:1773:19: error: expected identifier or '(' const int NC_SZIP_NN = 32; /* Selects nearest neighbor coding method for szip....

Good afternoon, Here I try to write some results with Nemesis_IO output interface: output_filename = mesh_filename_without_extension + "_out"; final_output_path = output_path / output_filename; std::ostringstream file_name; file_name

I'm working with the [Coreform](https://coreform.com/) folks on adding basic IGA support to libMesh (and MOOSE), via their tech for converting isogeometric U-spline meshes into Bezier patches that we can handle...

enhancement

Exodus format requires each mesh block to have only one type of elements, which is not a requirement for libMesh data structure, nor possibly some other mesh formats. In cases...

See issue #4014. I considered adding a workaround in another commit here, where we move all our defaulted virtual destructors into the .C files to try to convince the new...

``` In file included from src/solvers/nlopt_optimization_solver.C:29: ./include/libmesh/nlopt_optimization_solver.h:189:41: error: use of undeclared identifier 'NLOPT_LD_LBFGS_NOCEDAL' 189 | ret["LD_LBFGS_NOCEDAL"] = NLOPT_LD_LBFGS_NOCEDAL; | ^ ``` Version: 1.7.6

Currently parameters are set: - to the equation system with a default in the constructor of the system - to the equation system by a downstream user (for example a...

I'm doing this work in advance of potentially trying to build maps from higher-d elems, sides, and boundary meshes to lower-d elements

Something like Point(elem->node_ptr(0) - elem->node_ptr(1)) feels like (one mistake away, no warnings) it should give the point for the 0th node but it ends up doing pointer to Real to...