Andreas Dutzler

Results 59 comments of Andreas Dutzler

something like ```python # ... rubber = SolidBody(field_rubber, ThreeFieldVariation(NeoHooke(mu=1, bulk=5000))) metal = SolidBody(field_metal, LinearElastic(E=210000, nu=0.3)) # high-level interface (automatic creation of region-boundary) contact = ContactSolidBody(rubber, metal, *args, **kwargs) # low-level...

Something like ```python with fem.Animation(name) as gif: job = Job(callback=gif.write_frame) ``` could be a nice new feature. However, the close method must be carefully implemented to be used in interactive...

It's too slow for the examples in the CI/CD pipeline.

Hi and thanks for your hints! Unfortunately, this is still not exactly what I'm looking for. code ```python import matplotlib.pyplot as plt import numpy as np data = plt.imread("drawing.png") plt.imshow(data)...

Hi @bhaveshshrimali, thanks! Are my additions to the example fine for you?

Thanks for pointing that out @tkoyama010! I opened a pre-submission issue https://github.com/pyOpenSci/software-submission/issues/211.

The sequence diagrams were simplified for the paper draft and are stored here: https://github.com/adtzlr/felupe-paper (private). ~Will soon be public available.~ Now available in the main-branch.

Thanks for the information! I'll start with Task 1 (importing an unstructured grid) anyway and when a new version of scikit-gmsh is ready I'll add an example where the mesh...

### Updated Examples These code-blocks use `felupe.MeshContainer.from_unstructured_grid()`. The geometries / meshes are based on the examples in https://scikit-gmsh.readthedocs.io/. #### 2D Plane Strain ```python import skgmsh as sg import felupe as...

Thank you very much @cmarmo for the basic checks and your detailed comments on what is missing. I'll enhance the mentioned files and add the missing issue templates. Thank you...