Jacques Zwar

Results 11 issues of Jacques Zwar

# Mini Bugfix for Dirichlet boundaries Currently, if a function for Dirichlet boundaries is provided for a multidimensional problem, the individual components have to be set separately. If the function...

# Motivation Although I was aware of the gismo-PR #236, I saw that there has not been an update since 2018 and it also relies on an external library. Further,...

As discussed with @hverhelst When building gismo, I got the following warnings, which seem to come from Eigen: Compiler: `gcc 11.2.0` on Ubuntu 22.04 gismo: `e5c6f61d` gsStructuralAnalysis: `60536e5` gsElasticity: `64e8f03`...

# Overview Adds Levenberg-Marquart and SLSQP for proximity. Current implementation wouldn't work for some situations (see #389). Source for SLSQP is from current scipy's fortran version. To avoid difficulties of...

enhancement
cibuildwheel-test

Example with non-successful inverse searches: ```python import splinepy as spp import numpy as np # Create a spline spline = spp.Bezier( degrees=[2, 2], control_points=np.array([ [0.0, 0.0], [0.2, -1.0], [2.0, 0.0],...

See #406 for more detail. Bezier extraction matrix fails for following spline ```python test = sp.BSpline( degrees=[0, 0], control_points=[ [0], [1], [2], [3], ], knot_vectors=[[0, .5, 1], [0, .5, 1]]...

# Overview See title ## Addressed issues * I was annoyed by it ## Showcase ``` a = sp.helpme.create.box(1,1) TU_COLORS = sp.helpme.visualize._TUWIEN_COLOR_SCHEME a.show_options["c"] = TU_COLORS["grey_1"] a.show_options["control_mesh"] = False a.show_options["control_point_c"] =...

If colors are set differently for the knots and control points via keyword arguments, these will be ignored if the color `c` is stated. Here is an example: ```python import...

bug
help wanted

Microstructures are currently not tested We need to test - [x] derivatives of the tiles - [x] bound checks (is it still in unit cube at the bounds) - [x]...

help wanted
good first issue
testing

# Overview Faces for sag are not yet supported, but might be needed for any project involving meshes. This is just a draft, if someone feels like taking over, please...

enhancement