Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
termi-official committed Sep 30, 2024
1 parent 3976701 commit 43b755f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 1 addition & 3 deletions docs/src/devdocs/assembly.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ Ferrite.add_inhomogeneities!

In case the default assembler is insufficient, users can implement a custom assemblers. For this, they can create a custom type and dispatch the following functions.

```@docs
Ferrite.matrix_handle
Ferrite.vector_handle
```
Ferrite.start_assemble!
Ferrite.finish_assemble!
Ferrite.assemble!
Expand Down
10 changes: 8 additions & 2 deletions src/Dofs/ConstraintHandler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1678,9 +1678,15 @@ function _apply_local!(local_matrix::AbstractMatrix, local_vector::AbstractVecto
return
end

# Condensation of affine constraints on element level. If possible this function only
# modifies the local arrays.
@noinline missing_global() = error("can not condense constraint without the global matrix and vector")
"""
_condense_local!(local_matrix::AbstractMatrix, local_vector::AbstractVector,
global_matrix#=::SparseMatrixCSC=#, global_vector#=::Vector=#,
global_dofs::AbstractVector, dofmapping::Dict, dofcoefficients::Vector)
Condensation of affine constraints on element level. If possible this function only
modifies the local arrays.
"""
function _condense_local!(local_matrix::AbstractMatrix, local_vector::AbstractVector,
global_matrix#=::SparseMatrixCSC=#, global_vector#=::Vector=#,
global_dofs::AbstractVector, dofmapping::Dict, dofcoefficients::Vector)
Expand Down

0 comments on commit 43b755f

Please sign in to comment.