Thermoporoelastic consolidation is a typical fully coupled problem which involves solid deformation, fluid flow and heat transfer in saturated porous media.
In this example, we use the GEOS coupled solvers to solve a one-dimensional thermoporoelastic consolidation problem with a non-isothermal boundary condition, and we verify the accuracy of the results using the analytical solution provided in (Bai, 2005)
InputFile
This example uses no external input files and everything required is contained within two GEOS input files located at:
We simulate the consolidation of 1D thermoporoelastic column subjected to a surface traction stress of 1 Pa applied on the top surface, with a surface temperature of 50 degrees Celsius and a pore pressure of 0 Pa.
The initial temperature of the saturated soil is 0 degrees Celsius.
The soil column is insulated and sealed everywhere, except at the top surface.
The problem setup is illustrated below.
The coupled dynamics experienced by the system are described in (Gao and Ghassemi, 2019) and summarized below.
The model first experiences continuous settlement (contraction).
Initially, the settlement caused by the drainage of the fluid (effective stress increase) and the compression of the solid matrix is larger than the expansion due to the increase of temperature in the region close to the surface on which a higher temperature is applied.
As the temperature diffuses further into the domain, it gradually rebounds (expansion) and reaches a final status.
For this example, we focus on the Solvers,
the Constitutive, and the FieldSpecifications tags of the GEOS input file.
As demonstrated in this example, to setup a thermoporomechanical coupling, we need to define three different solvers in the Solvers part of the XML file:
the mechanics solver, a solver of type SolidMechanicsLagrangianFEM called here solidMechSolver (more information here: Solid Mechanics Solver),
the coupling solver (SinglePhasePoromechanics) that will bind the two single-physics solvers above, which is named as thermoPoroSolver (more information at Poromechanics Solver).
To request the simulation of the temperature evolution, we set the isThermal flag of the coupling solver to 1.
With this choice, the degrees of freedom are the cell-centered pressure, the cell-centered temperature, and the mechanical displacements at the mesh nodes.
The governing equations consist of a mass conservation equation, an energy balance equation, and a linear momentum balance equation.
In the latter, the total stress includes both a pore pressure and a temperature contribution.
Note that in the coupling solver, we set the couplingType to FullyImplicit to require a fully coupled, fully implicit solution strategy.
A homogeneous and isotropic domain with one solid material is assumed, and its mechanical properties and associated fluid rheology are specified in the Constitutive section.
We use the constitutive parameters specified in (Bai, 2005) listed in the following table.
Symbol
Parameter
Unit
Value
Young’s modulus
[Pa]
6000.0
Poisson’s ratio
[-]
0.4
Thermal expansion coef.
[T^(-1)]
9.0x10-7
Porosity
[-]
0.20
Biot’s coefficient
[-]
1.0
Heat capacity
[J/(m^3.K)]
167.2x103
Fluid viscosity
[Pa.s]
1-3
Thermal conductivity
[J/(m.s.K)]
836
Permeability
[m^2]
4.0x10-9
The bulk modulus, the Young’s modulus, and the thermal expansion coefficient are specified in the ElasticIsotropic solid model.
Note that for now the solid density is constant and does not depend on temperature.
Given that the gravity vector has been set to 0 in the XML file, the value of the solid density is not used in this simulation.
The porosity and Biot’s coefficient (computed from the grainBulkModulus) appear in the BiotPorosity model.
In this model, the porosity is updated as a function of the strain increment, the change in pore pressure, and the change in temperature.
The heat capacity is provided in the SolidInternalEnergy model.
In the computation of the internal energy, the referenceTemperature is set to the initial temperature.
The fluid density and viscosity are given in the ThermalCompressibleSinglePhaseFluid.
Here, they are assumed to be constant and do not depend on pressure and temperature.
To complete the specification of the problem, we specify two types of fields:
The initial values (the displacements, effective stress, and pore pressure have to be initialized),
The boundary conditions at the top surface (traction, pressure, and temperature) and at the other boundaries (zero-displacement).
This is done in the FieldSpecifications part of the XML file.
The attribute initialCondition is set to 1 for the blocks specifying the initial pressure, temperature, and effective stress.
<FieldSpecificationname="initialPressure"initialCondition="1"setNames="{ all }"objectPath="ElementRegions/Domain/cb1"fieldName="pressure"scale="0.0"/><FieldSpecificationname="initialTemperature"initialCondition="1"setNames="{ all }"objectPath="ElementRegions/Domain/cb1"fieldName="temperature"scale="273.0"/><FieldSpecificationname="initialSigma_x"initialCondition="1"setNames="{ all }"objectPath="ElementRegions/Domain/cb1"fieldName="rockSolid_stress"component="0"scale="0.0"/><FieldSpecificationname="initialSigma_y"initialCondition="1"setNames="{ all }"objectPath="ElementRegions/Domain/cb1"fieldName="rockSolid_stress"component="1"scale="0.0"/><FieldSpecificationname="initialSigma_z"initialCondition="1"setNames="{ all }"objectPath="ElementRegions/Domain/cb1"fieldName="rockSolid_stress"component="2"scale="0.0"/>
For the zero-displacement boundary conditions, we use the pre-defined set names xneg and xpos, yneg, zneg and zpos to select the boundary nodes.
Note that here, we have considered a slab in the y-direction, which is why a displacement boundary condition is applied on zpos and not applied on ypos.
On the top surface, we impose the traction boundary condition and the non-isothermal boundary condition specified in (Bai, 2005). We also fix the pore pressure to 0 Pa.
We request an output of the displacements, pressure, temperature, and stress using the
TimeHistory feature of GEOS.
The figure below compares the results from GEOS (open circles) with the corresponding
analytical solution (solid lines) as a function of time at different locations along the slab.
We obtain a very good match for all four quantities, confirming that GEOS accurately captures
the thermo-poromechanical coupling on this example.
The top-left panel shows the excellent agreement for the pore pressure evolution:
the initial thermally- and mechanically-induced overpressure gradually dissipates as the
fluid drains through the top surface.
The top-right panel confirms the good match for the temperature, which diffuses from
the heated top boundary into the column.
The bottom-left panel shows that GEOS also reproduces the vertical displacement
(settlement), including the characteristic non-monotonic response (thermal expansion
followed by consolidation).
The bottom-right panel compares the total stress. By equilibrium, the total vertical
stress remains equal to the applied surface load at all times and depths
(), which GEOS recovers exactly. The total horizontal stress
follows the uniaxial-strain thermo-poroelastic relation
(with the oedometric modulus), exhibiting the transient overshoot
driven by the coupled pressure and thermal fields.