Skip to content
Snippets Groups Projects
Commit 7aa92533 authored by Leon Keim's avatar Leon Keim
Browse files

Merge branch 'feature/documentation-ficks-law' into 'master'

feature/documentation-ficks-law

See merge request !3267
parents 6af129d9 5b5b4ff7
No related branches found
No related tags found
1 merge request!3267feature/documentation-ficks-law
Pipeline #22138 passed
......@@ -19,9 +19,33 @@
/*!
* \file
* \ingroup Flux
* \brief Fick's law specialized for different discretization schemes.
* This file contains the data which is required to calculate
* diffusive mass fluxes due to molecular diffusion with Fick's law.
* \brief Diffusive mass flux according to Fick's law
*
*
* Fick's law describes the diffusive flux of mass as proportional to it's concentration gradient in a given phase, caused by the Brownian molecular motion. \n
* For a single phase system, the proportionality constant is the molecular diffusion coefficient \f$ D_m \f$.
*
* \n
* \f[
* \mathbf{j}_{d} = - \varrho D_m \textbf{grad}\, X
* \f]
* \n
*
* Extending this to multi-phase, multi-component systems, Fick's law can be expressed as follows:
* \n
* \f[
* \mathbf{j}_{d,\alpha}^\kappa = - \varrho_\alpha D_\alpha^\kappa \textbf{grad}\, X_\alpha^\kappa
* \f]
* \n
*
* Here \f$D_\alpha^\kappa\f$ is the molecular diffusion coefficient of component \f$\kappa\f$ in phase \f$\alpha\f$.
* \n
* In a porous medium, the actual path lines are tortuous due to the impact of the solid matrix. The tortuosity and the impact of
* the presence of multiple phases is accounted by using an effective diffusion coefficient \f$D_{pm,\alpha}^\kappa\f$. \n
* The effective diffusion coefficient is then a function of tortuosity \f$\tau\f$, porosity \f$\phi\f$, saturation \f$S\f$ and the molecular diffusion coefficient \f$D_{m}\f$
* (\f$D_{pm,\alpha}^\kappa=f(\tau,\phi,S_\alpha,D_m)\f$). \n
* Models to describe those effects are for example Millington-Quirk \cite millington1961 or Constant-Tortuosity \cite carman1937, \cite bear1972.
* \n
*/
#ifndef DUMUX_FLUX_FICKS_LAW_HH
#define DUMUX_FLUX_FICKS_LAW_HH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment