Skip to content

Commit 04156db

Browse files
committed
missing doc file
1 parent 0e860b1 commit 04156db

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

docs/src/solvers.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Solver
2+
3+
Solving requires a spatial and stochastic discretization.
4+
Both are connected in a special vector structure
5+
that is passed to a solve function that runs a special
6+
iterative solver for each model problem.
7+
8+
## SGFEVector
9+
10+
The spatial discretization is represented by
11+
s single finite element space from [ExtendableFEM.jl](https://github.com/WIAS-PDELib/ExtendableFEM.jl),
12+
while the stochastic discretization is represented by a tensorized basis
13+
for the parameter space of the stochastic coefficient. Both have to be prepared in
14+
advance.
15+
16+
!!! note
17+
18+
Currently it is not possible to used different finite element spaces for different multi-indices,
19+
but this feature might be added in the future.
20+
21+
```@autodocs
22+
Modules = [ExtendableASGFEM]
23+
Pages = ["sgfevector.jl"]
24+
Order = [:type, :function]
25+
```
26+
27+
## Solve function
28+
29+
```@autodocs
30+
Modules = [ExtendableASGFEM]
31+
Pages = ["modelproblems/modelproblems.jl"]
32+
Order = [:type, :function]
33+
```

0 commit comments

Comments
 (0)