-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from gridap/develop
StaggeredFEOperators
- Loading branch information
Showing
15 changed files
with
723 additions
and
153 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Added support for GMG in serial. Since PR[#68](https://github.com/gridap/GridapSolvers.jl/pull/68). | ||
- Added Vanka-like smoothers in serial. Since PR[#68](https://github.com/gridap/GridapSolvers.jl/pull/68). | ||
- Added `StaggeredFEOperators` and `StaggeredFESolvers`. Since PR[#84](https://github.com/gridap/GridapSolvers.jl/pull/84). | ||
|
||
## Previous versions | ||
|
||
A changelog is not maintained for older versions than 0.4.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,40 @@ | ||
module BlockSolvers | ||
using LinearAlgebra | ||
using SparseArrays | ||
using SparseMatricesCSR | ||
using BlockArrays | ||
using IterativeSolvers | ||
|
||
using Gridap | ||
using Gridap.Helpers, Gridap.Algebra, Gridap.CellData, Gridap.Arrays, Gridap.FESpaces, Gridap.MultiField | ||
using PartitionedArrays | ||
using GridapDistributed | ||
using LinearAlgebra | ||
using SparseArrays | ||
using SparseMatricesCSR | ||
using BlockArrays | ||
using IterativeSolvers | ||
|
||
using GridapSolvers.MultilevelTools | ||
using GridapSolvers.SolverInterfaces | ||
using Gridap | ||
using Gridap.Helpers, Gridap.Algebra, Gridap.CellData, Gridap.Arrays, Gridap.FESpaces, Gridap.MultiField | ||
using PartitionedArrays | ||
using GridapDistributed | ||
|
||
include("BlockFEOperators.jl") | ||
using GridapSolvers.MultilevelTools | ||
using GridapSolvers.SolverInterfaces | ||
|
||
include("BlockSolverInterfaces.jl") | ||
include("BlockDiagonalSolvers.jl") | ||
include("BlockTriangularSolvers.jl") | ||
using Gridap.MultiField: BlockSparseMatrixAssembler | ||
|
||
export BlockFEOperator | ||
using GridapDistributed: to_parray_of_arrays | ||
using GridapDistributed: DistributedMultiFieldFESpace, DistributedMultiFieldFEFunction | ||
|
||
export MatrixBlock, LinearSystemBlock, NonlinearSystemBlock, BiformBlock, TriformBlock | ||
const MultiFieldFESpaceTypes = Union{<:MultiFieldFESpace,<:GridapDistributed.DistributedMultiFieldFESpace} | ||
const BlockFESpaceTypes{NB,SB,P} = Union{<:MultiFieldFESpace{<:BlockMultiFieldStyle{NB,SB,P}},<:GridapDistributed.DistributedMultiFieldFESpace{<:BlockMultiFieldStyle{NB,SB,P}}} | ||
|
||
include("BlockSolverInterfaces.jl") | ||
include("BlockDiagonalSolvers.jl") | ||
include("BlockTriangularSolvers.jl") | ||
|
||
include("BlockFEOperators.jl") | ||
include("StaggeredFEOperators.jl") | ||
|
||
export MatrixBlock, LinearSystemBlock, NonlinearSystemBlock, BiformBlock, TriformBlock | ||
|
||
export BlockDiagonalSolver | ||
export BlockTriangularSolver | ||
|
||
export BlockFEOperator | ||
export StaggeredFEOperator, StaggeredAffineFEOperator, StaggeredNonlinearFEOperator, StaggeredFESolver | ||
|
||
export BlockDiagonalSolver | ||
export BlockTriangularSolver | ||
end |
Oops, something went wrong.