Difference between revisions of "Ghost nodes"

From Medusa: Coordinate Free Mehless Method implementation
Jump to: navigation, search
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
Go back to [[Medusa#Examples|Examples]].
 
Go back to [[Medusa#Examples|Examples]].
  
See the [[Ghost nodes (theory)]] page for what ghost nodes and how they are used. We will use them in this example to reliably solver a 3D mixed Dirichlet and Neumann problem on an irregular domain.
+
See the [[Ghost nodes (theory)]] page for what ghost nodes and how they are used. We will use them in this example to reliably solve a 3D mixed Dirichlet and Neumann problem on an irregular domain.
  
 
We will solve the problem
 
We will solve the problem
Line 10: Line 10:
  
 
The code below constructs ghost nodes and remembers the corresponding ghost node for each boundary node.
 
The code below constructs ghost nodes and remembers the corresponding ghost node for each boundary node.
 +
<syntaxhighlight lang="cpp">
 +
Range<int> gh = domain.addGhostNodes(dx, 0, neu);
 +
</syntaxhighlight>
 +
It is equivalent to:
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
 
Range<int> gh(domain.size(), -1);  // Maps boundary nodes to their corresponding ghost nodes.
 
Range<int> gh(domain.size(), -1);  // Maps boundary nodes to their corresponding ghost nodes.
 
for (int i : neu) {  // Add ghost nodes for each Neumann boundary node
 
for (int i : neu) {  // Add ghost nodes for each Neumann boundary node
     gh[i] = domain.addInternalNode(domain.pos(i) + dx*domain.normal(i), 2);
+
     gh[i] = domain.addNode(domain.pos(i) + dx*domain.normal(i), 0);   // add node with type 0
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 33: Line 37:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 
The matrix of the system can be seen below
 
 
[[File:matrix-ghost-labelled.png|600px]]
 
  
 
The system is then solved as usual. The solution (without the ghost nodes) is shown below:
 
The system is then solved as usual. The solution (without the ghost nodes) is shown below:
  
 
[[File:solution_ghost_example.png|600px]]
 
[[File:solution_ghost_example.png|600px]]
 +
 +
The code is available as [https://gitlab.com/e62Lab/medusa/blob/dev/examples/ghost_nodes/poisson_mixed_3D_ghost.cpp poisson_mixed_3D_ghost.cpp] in the Medusa examples.
  
 
Go back to [[Medusa#Examples|Examples]].
 
Go back to [[Medusa#Examples|Examples]].

Latest revision as of 23:05, 5 November 2023

Go back to Examples.

See the Ghost nodes (theory) page for what ghost nodes and how they are used. We will use them in this example to reliably solve a 3D mixed Dirichlet and Neumann problem on an irregular domain.

We will solve the problem

$\nabla^2 u = 1 \text{ in } \Omega, \quad \frac{\partial u}{\partial n} = 0 \text{ on } \partial \Omega_{+}, \quad u = 0 \text{ on } \partial \Omega_{-}$

where $\Omega = B(\boldsymbol{0}, 1) - B(\boldsymbol{1}, 1.5)$, $\partial \Omega_{+}$ is the part of the boundary with the nonnegative $x$ coordinate and $\partial \Omega_{-}$ the part of the boundary with negative $x$ coordinate.

The code below constructs ghost nodes and remembers the corresponding ghost node for each boundary node.

Range<int> gh = domain.addGhostNodes(dx, 0, neu);

It is equivalent to:

Range<int> gh(domain.size(), -1);  // Maps boundary nodes to their corresponding ghost nodes.
for (int i : neu) {  // Add ghost nodes for each Neumann boundary node
    gh[i] = domain.addNode(domain.pos(i) + dx*domain.normal(i), 0);   // add node with type 0
}

When assembling the system, we write two equations for each Neumann node. One is the Neumann BC and is written in the row corresponding to the boundary node. The other is the fact that the PDE also holds at the boundary node, but we write that equation in the row, corresponding to the ghost node.

for (int i : interior) {
    op.lap(i) = 1.0;  // Equation
}
for (int i : dir) {
    op.value(i) = 0.0;  // Dirichlet
}
for (int i : neu) {
    op.neumann(i, domain.normal(i)) = 0.0;  // Neumann
    // Equation holds also on the boundary, write it in the row corresponding to the ghost node.
    op.lap(i, gh[i]) = 1.0;
}

The system is then solved as usual. The solution (without the ghost nodes) is shown below:

Solution ghost example.png

The code is available as poisson_mixed_3D_ghost.cpp in the Medusa examples.

Go back to Examples.