Skip to content

Commit

Permalink
Merge pull request #106 from gerlero/tortuosity
Browse files Browse the repository at this point in the history
Update tortuosity
  • Loading branch information
gerlero authored Jan 28, 2024
2 parents 495f248 + 1672beb commit 67a414c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Defined as scalar fields in `constant` or as dictionary entries in `transportPro

* `epsTotal`: total porosity ($\varepsilon_\textrm{tot}$). _Transport solvers only_

* `tau`: tortuosity ($\tau$). _Transport solvers only_
* `tau`: diffusive tortuosity ($\tau$). _Transport solvers only_

* `alphaT`: transverse dispersion coefficient ($\alpha_T$). _Transport solvers only_

Expand Down
2 changes: 1 addition & 1 deletion libraries/common/porousMedium/porousMedium.C
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Foam::Pmt::porousMedium::porousMedium(const fvMesh& mesh, const dictionary& tran
{
Info<< "not set (defaults to effective porosity)" << nl;
}
Info<< " Tortuosity (tau): ";
Info<< " Diffusive tortuosity (tau): ";
if (tau_)
{
tau_->writeMinMax(Info);
Expand Down
2 changes: 1 addition & 1 deletion libraries/common/porousMedium/porousMediumI.H
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ inline const Foam::volScalarField& Foam::Pmt::porousMedium::tau() const
if (!tau_)
{
FatalErrorInFunction
<< "Tortuosity tau required but not set" << endl
<< "Diffusive tortuosity tau required but not set" << endl
<< exit(FatalError);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ phase.theta

K K [0 2 0 0 0 0 0] 1e-13;

tau [0 0 0 0 0 0 0] 1.96;
tau [0 0 0 0 0 0 0] 5.29;
alphaT [0 1 0 0 0 0 0] 30e-6;
alphaL $alphaT;

Expand Down
2 changes: 1 addition & 1 deletion tests/test_retardation/constant/transportProperties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FoamFile

eps eps [0 0 0 0 0 0 0] 0.7;
rs rs [1 -3 0 0 0 0 0] 1611;
tau tau [0 0 0 0 0 0 0] 1.96;
tau tau [0 0 0 0 0 0 0] 5.29;
alphaL alphaL [0 1 0 0 0 0 0] 30e-6;
alphaT $alphaL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ phase.theta
thetamin thetamin [0 0 0 0 0 0 0] 0.019852; // = 0.7*0.02836
thetamax thetamax [0 0 0 0 0 0 0] 0.7;

tau tau [0 0 0 0 0 0 0] 1.96;
tau tau [0 0 0 0 0 0 0] 5.29;
alphaT alphaT [0 1 0 0 0 0 0] 5e-5;
alphaL $alphaT;

Expand Down

0 comments on commit 67a414c

Please sign in to comment.