Kim Louisa Auth
Kim Louisa Auth
Following up on our discussion from last week, here comes a suggestion on how to handle mixed grids in a more data-oriented manner. The main gripes about the current implementation...
```julia grid = generate_grid(Quadrilateral, (1,1)) dh = DofHandler(grid) push!(dh, :u, 2) close!(dh) ``` ```julia julia> nfields(dh) 9 julia> Ferrite.nfields(dh) 1 ``` The first one calls Julias [`nfields`](https://docs.julialang.org/en/v1/base/base/#Core.nfields).
**`project_to_nodes` in L2Projector projects to vertices** The `project_to_nodes` option in the L2-projection actually doesn't reorder values to the nodes of the `Grid`, but to the vertices of the elements. That...
We don't seem to have any examples that use the `MixedDofHandler`. Any ideas of simple applications? Main points that the `MixedDofHandler` can do that the `DofHandler` can't would be -...
For mixed grids, the L2Projection can only handle one cell type at a time. So e.g. for a grid composed of triangular and quadrilateral elements, we can do a projection...
Does the vector syntax not work within a set of options or am I just missing how to do this right? This is what I would like to obtain: ```...
I ran into the following problem today: ```julia function tensor_exp(A::SymmetricTensor{2}) E = eigen(A) A_exp = zero(A) for (i, λ) in enumerate(E.values) N = E.vectors[:,i] A_exp += exp(λ) * N ⊗...
When using inside mirrored yticks, the right spines ticks seem not to be adjusted correctly upon changes to the yaxis. ```julia set_theme!(Theme( Axis = ( xticksmirrored = true, yticksmirrored =...
```julia f = Figure() ax = Axis3(f[1,1]) ax.xticklabelpad = 4. ``` gives (same for `yticklabelpad` and `zticklabelpad`) ```julia ERROR: TypeError: in typeassert, expected Vector{Tuple{String, Point{2, Float32}}}, got a value of...