File tree 1 file changed +33
-0
lines changed 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments