Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
simlapointe committed Dec 18, 2024
1 parent 2bea7bc commit 73726ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/src/config/solver.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ under the directory specified by
"MGSmoothOrder": <int>,
"PCMatReal": <bool>,
"PCMatShifted": <bool>,
"ComplexCoarseSolve": <bool>,
"PCSide": <string>,
"DivFreeTol": <float>,
"DivFreeMaxIts": <float>,
Expand Down Expand Up @@ -420,6 +421,9 @@ domain problems using a positive definite approximation of the system matrix by
the sign for the mass matrix contribution, which can help performance at high frequencies
(relative to the lowest nonzero eigenfrequencies of the model).

`"ComplexCoarseSolve" [true]` : When set to `true`, the coarse-level solver uses the true
complex-valued system matrix. When set to `false`, the real-valued approximation is used.

`"PCSide" ["Default"]` : Side for preconditioning. Not all options are available for all
iterative solver choices, and the default choice depends on the iterative solver used.

Expand Down
3 changes: 2 additions & 1 deletion scripts/schema/config/solver.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
"MGSmoothEigScaleMin": { "type": "number", "minimum": 0 },
"MGSmoothChebyshev4th": { "type": "boolean" },
"PCMatReal": { "type": "boolean" },
"PCMatShifted": { "type": "boolean" },
"PCMatShifted": { "type": "boolean" },
"ComplexCoarseSolve": {"type": "boolean"},
"PCSide": { "type": "string" },
"ColumnOrdering": { "type": "string" },
"STRUMPACKCompressionType": { "type": "string" },
Expand Down

0 comments on commit 73726ed

Please sign in to comment.