Difference between revisions of "Adaptivity"
Line 23: | Line 23: | ||
More details can be found in our paper: [https://arxiv.org/abs/1811.10368 https://arxiv.org/abs/1811.10368] | More details can be found in our paper: [https://arxiv.org/abs/1811.10368 https://arxiv.org/abs/1811.10368] | ||
− | == Node density adaptation == | + | === Node density adaptation === |
+ | |||
+ | $$ | ||
+ | f_i = \begin{cases} | ||
+ | 1 + \frac{\eta - \eh_i}{\eta - m} (\frac{1}{\beta} - 1), & \eh_i \leq \eta, \quad \text{i.e.\ decrease the density} \\ | ||
+ | 1, & \eta < \eh_i < \eps, \quad \text{i.e.\ no change in density}\\ | ||
+ | 1 + \frac{\eh_i - \eps}{M - \eps} (\alpha - 1), & \eh_i \geq \eps, \quad \text{i.e.\ increase the density} | ||
+ | \end{cases} | ||
+ | $$ | ||
Revision as of 13:14, 11 June 2019
Go back to Examples.
Contents
[hide]Basic concept
The adaptive methodology in this paper behaves similarly to "remeshing" used commonly in FEM. Some initial (possibly variable) nodal spacing h^0 is chosen, as well as its lower and upper bounds h_L and h_U, respectively. 3 Domain \Omega is filled with nodes, conforming to h^0 and the solution u^0 is obtained. An error indicator is employed to determine which nodes should be (de)refined and the nodal density h^0 is altered appropriately. This adaptive cycle below is repeated until the convergence criterion is met. The procedure on j-th iteration is written in more detail below:
- Fill \Omega with nodes conforming to h^j.
- Solve the problem to obtain u^j.
- Compute the error indicator values \varepsilon_i^j for each node p_i.
- If the mean of \varepsilon_i^j is below some tolerance \varepsilon return u^j as the solution and stop.
- Adapt h^j to obtain h^{j+1}.
More details can be found in our paper: https://arxiv.org/abs/1811.10368
Node density adaptation
f_i = \begin{cases} 1 + \frac{\eta - \eh_i}{\eta - m} (\frac{1}{\beta} - 1), & \eh_i \leq \eta, \quad \text{i.e.\ decrease the density} \\ 1, & \eta < \eh_i < \eps, \quad \text{i.e.\ no change in density}\\ 1 + \frac{\eh_i - \eps}{M - \eps} (\alpha - 1), & \eh_i \geq \eps, \quad \text{i.e.\ increase the density} \end{cases}
Go back to Examples.