felupe icon indicating copy to clipboard operation
felupe copied to clipboard

:mag: finite element analysis for continuum mechanics of solid bodies

Results 35 felupe issues
Sort by recently updated
recently updated
newest added

to assemble the volume/mass matrix of a solid body. This could be added as a) mass-matrix to a region as `Region.mass(density=1.0)`? b) or as `IntegralForm`-attribute `Region.mass` which will provide `integrate()`...

enhancement

these are missing ### Tasks - [ ] `SolidBody.evaluate` and - [x] `FieldContainer.evaluate`, see #728

documentation

Not only for quadratic cells, but for all kind of cells. We could use the dual field definition for dual (one order lower) regions to project? This will require some...

enhancement
consistency

as mesh-generator. Either something using linear-elasticity or a mixed-formulation, like P2-P1 or MINI-P1.

documentation

- [x] `/src` - #448 - #449 - [ ] `/tests`

enhancement

### Idea A `Job` should provide an argument `forces=None` to activate the evaluation of reaction (fixing) forces on None, all or a list of boundaries. `fig, ax = Job.plot(boundary=None)` then...

enhancement

A live-watch is already possible via ```python import felupe as fem mesh = fem.Cube(n=6) region = fem.RegionHexahedron(mesh) field = fem.FieldContainer([fem.Field(region, dim=3)]) boundaries, loadcase = fem.dof.uniaxial(field, clamped=True) umat = fem.OgdenRoxburgh(material=fem.NeoHooke(mu=1), r=3,...

enhancement

use an additional centerpoint for the rotation

enhancement
help wanted