Mixed Poisson

1. Models

Mixed Poisson equations are

\[\begin{align} \boldsymbol{u} + k\nabla p &= \boldsymbol{f}\\ \nabla\cdot \boldsymbol{u} &= g \end{align}\]

completed by boundary conditions and where \(k\) represents the conductivity.

Those equations can represent several problem types, such as electrostatics problems or heat transfer problems. One can choose to use field names and material properties in the model file for a particular physic by using a MixedPoissonPhyics in the constructor of the toolbox.

By default, no physic is used (MixedPoissonPhysics::None). Electric (MixedPoissonPhysics::Electric) and heat (MixedPoissonPhysics::Heat) are also available.

2. Materials

Table 1. Materials properties defined in the MixedPoisson toolbox with MixedPoissonPhysics::None
Name Symbol Shape Description

conductivity

cond

scalar

conductivity

Table 2. Materials properties defined in the MixedPoisson toolbox with MixedPoissonPhysics::Electric
Name Symbol Shape Description

electric-conductivity

sigma

scalar

electric conductivity

Table 3. Materials properties defined in the MixedPoisson toolbox with MixedPoissonPhysics::Heat
Name Symbol Shape Description

thermal-conductivity

k

scalar

thermal conductivity

3. Fields and symbols expressions

Table 4. Fields available with MixedPoissonPhysics::None
Name Description Shape

potential

the potential field

scalar

flux

the flux field

vectorial

Table 5. Symbols expressions with MixedPoissonPhysics::None
Symbol Expression Description

poisson_P

\(P\)

evaluate the potential

poisson_grad_P_0

\(\frac{\partial p}{\partial x}\)

evaluate the first component of gradient of potential

poisson_grad_P_1

\(\frac{\partial p}{\partial y}\)

evaluate the second component of gradient of potential

poisson_grad_P_2

\(\frac{\partial p}{\partial z}\)

evaluate the third component of gradient of potential

poisson_dn_P

\(\nabla p \cdot \boldsymbol{n}\)

evaluate the normal derivative of potential

poisson_F_0

\(\boldsymbol{u}_x\)

evaluate the x component of the flux

poisson_F_1

\(\boldsymbol{u}_y\)

evaluate the y component of the flux

poisson_F_2

\(\boldsymbol{u}_z\)

evaluate the z component of the flux

Table 6. Fields available with MixedPoissonPhysics::Electric
Name Description Shape

electric-potential

the electric potential field

scalar

current-density

the current density field

vectorial

Table 7. Symbols expressions with MixedPoissonPhysics::Electric
Symbol Expression Description

electric_V

\(V\)

evaluate the potential

electric_grad_V_0

\(\frac{\partial V}{\partial x}\)

evaluate the first component of gradient of electric potential

electric_grad_V_1

\(\frac{\partial V}{\partial y}\)

evaluate the second component of gradient of electric potential

electric_grad_V_2

\(\frac{\partial V}{\partial z}\)

evaluate the third component of gradient of electric potential

electric_dn_V

\(\nabla V \cdot \boldsymbol{n}\)

evaluate the normal derivative of electric potential

electric_C_0

\(\boldsymbol{j}_x\)

evaluate the x component of the current density

electric_C_1

\(\boldsymbol{j}_y\)

evaluate the y component of the current density

electric_C_2

\(\boldsymbol{j}_z\)

evaluate the z component of the current density

Table 8. Fields available with MixedPoissonPhysics::Heat
Name Description Shape

temperature

the temperature field

scalar

heat-flux

the heat flux field

vectorial

Table 9. Symbols expressions with MixedPoissonPhysics::Heat
Symbol Expression Description

heat_T

\(T\)

evaluate the temperature

heat_grad_T_0

\(\frac{\partial T}{\partial x}\)

evaluate the first component of gradient of temperature

heat_grad_T_1

\(\frac{\partial T}{\partial y}\)

evaluate the second component of gradient of temperature

heat_grad_T_2

\(\frac{\partial T}{\partial z}\)

evaluate the third component of gradient of temperature

heat_dn_T

\(\nabla T \cdot \boldsymbol{n}\)

evaluate the normal derivative of temperature

heat_F_0

\(\boldsymbol{u}_x\)

evaluate the x component of the heat flux

heat_F_1

\(\boldsymbol{u}_y\)

evaluate the y component of the heat flux

heat_F_2

\(\boldsymbol{u}_z\)

evaluate the z component of the heat flux

4. Boundary Conditions

4.1. Dirichlet

On the potential/electric-potential/temperature:

\[P = g \quad \text{ on } \Gamma\]

4.2. Neumann

On the potential/electric-potential/temperature:

\[-k \nabla P \cdot \boldsymbol{n} = g \quad \text{ on } \Gamma\]

4.3. Robin

On the potential/electric-potential/temperature:

\[-k \nabla P \cdot \boldsymbol{n} = h \left( T - g \right) \quad \text{ on } \Gamma\]

4.4. Integral

On the flux/current-density/heat-flux:

\[\int_\Gamma \boldsymbol{u}\cdot\boldsymbol{n} = g \quad \text{ on } \Gamma\\ |\Gamma|p - \int_\Gamma p = 0 \quad \text{ on } \Gamma\]

5. Initial Conditions

6. PostProcessing

6.1. Exports

Table 10. Fields allowed to be exported in the fields section with MixedPoissonPhysics::None are:
Name Description

potential

the potential field

flux

the flux field

pid

the mesh partitioning

all

all fields available

Table 11. Fields allowed to be exported in the fields section with MixedPoissonPhysics::Electric are:
Name Description

electric-potential

the electric potential field

current-density

the current density flux

pid

the mesh partitioning

all

all fields available

Table 12. Fields allowed to be exported in the fields section with MixedPoissonPhysics::Heat are:
Name Description

temperature

the temperature field

heat-flux

the heat flux field

pid

the mesh partitioning

all

all fields available

All materials properties given in the section Materials can be also exported by specifying the name in the fields entry.