Skip to content

Commit

Permalink
Merge branch 'develop' into Feature/ouassim/edfm_loader_new
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltomin authored Dec 23, 2024
2 parents 4fb1ac9 + b3592de commit 7784585
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
# -- Project information -----------------------------------------------------

project = u'GEOS'
copyright = u'2016-2024 Lawrence Livermore National Security LLC, 2018-2024 Total, S.A, The Board of Trustees of the Leland Stanford Junior University, 2023-2024 Chevron, 2019- GEOS/GEOSX Contributors'
copyright = u'2016-2024 Lawrence Livermore National Security LLC, 2018-2024 Total Energies, The Board of Trustees of the Leland Stanford Junior University, 2023-2024 Chevron, 2019- GEOS/GEOSX Contributors'
author = u'GEOS/GEOSX Contributors'

# The short X.Y version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: LGPL-2.1-only
*
* Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
* Copyright (c) 2018-2024 Total, S.A
* Copyright (c) 2018-2024 TotalEnergies
* Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
* Copyright (c) 2023-2024 Chevron
* Copyright (c) 2019- GEOS/GEOSX Contributors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: LGPL-2.1-only
*
* Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
* Copyright (c) 2018-2024 Total, S.A
* Copyright (c) 2018-2024 TotalEnergies
* Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
* Copyright (c) 2023-2024 Chevron
* Copyright (c) 2019- GEOS/GEOSX Contributors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,8 @@ real64 HydrofractureSolver< POROMECHANICS_SOLVER >::fullyCoupledSolverStep( real
int const cycleNumber,
DomainPartition & domain )
{
if( cycleNumber == 0 && time_n <= 0 )
{
initializeNewFractureFields( domain );
}
// for initial fracture initialization in case when surface generator was called outside of the solver
initializeNewFractureFields( domain );

real64 dtReturn = dt;

Expand Down Expand Up @@ -379,11 +377,11 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::updateHydraulicApertureAndFrac
maxHydraulicAperture = MpiWrapper::max( maxHydraulicAperture );

GEOS_LOG_LEVEL_INFO_RANK_0( logInfo::Solution, GEOS_FMT( " {}: Max aperture change: {} m, max hydraulic aperture change: {} m",
this->getName(), fmt::format( "{:.{}f}", maxApertureChange, 6 ), fmt::format( "{:.{}f}", maxHydraulicApertureChange, 6 ) ) );
this->getName(), fmt::format( "{:.{}e}", maxApertureChange, 6 ), fmt::format( "{:.{}e}", maxHydraulicApertureChange, 6 ) ) );
GEOS_LOG_LEVEL_INFO_RANK_0( logInfo::Solution, GEOS_FMT( " {}: Min aperture: {} m, max aperture: {} m",
this->getName(), fmt::format( "{:.{}f}", minAperture, 6 ), fmt::format( "{:.{}f}", maxAperture, 6 ) ) );
this->getName(), fmt::format( "{:.{}e}", minAperture, 6 ), fmt::format( "{:.{}e}", maxAperture, 6 ) ) );
GEOS_LOG_LEVEL_INFO_RANK_0( logInfo::Solution, GEOS_FMT( " {}: Min hydraulic aperture: {} m, max hydraulic aperture: {} m",
this->getName(), fmt::format( "{:.{}f}", minHydraulicAperture, 6 ), fmt::format( "{:.{}f}", maxHydraulicAperture, 6 ) ) );
this->getName(), fmt::format( "{:.{}e}", minHydraulicAperture, 6 ), fmt::format( "{:.{}e}", maxHydraulicAperture, 6 ) ) );
}
template< typename POROMECHANICS_SOLVER >
void HydrofractureSolver< POROMECHANICS_SOLVER >::setupCoupling( DomainPartition const & domain,
Expand Down Expand Up @@ -750,7 +748,6 @@ assembleForceResidualDerivativeWrtPressure( DomainPartition & domain,
for( localIndex kf=0; kf<2; ++kf )
{
localIndex const faceIndex = elemsToFaces[kfe][kf];

for( localIndex a=0; a<numNodesPerFace; ++a )
{

Expand Down Expand Up @@ -1173,7 +1170,6 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::initializeNewFractureFields( D
}
} );
}

subRegion.m_recalculateConnectionsFor2dFaces.clear();
subRegion.m_newFaceElements.clear();
} );
Expand Down
7 changes: 6 additions & 1 deletion src/docs/sphinx/Publications.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Publications
###############################################################################

Last updated 26-August-2024
Last updated 16-December-2024

Preprints and Early-Views
=========================
Expand All @@ -24,6 +24,11 @@ Preprints and Early-Views
| Computer Methods in Applied Mechanics and Engineering
| `doi:10.1016/j.cma.2024.117008 <https://doi.org/10.1016/j.cma.2024.117008>`_
* - | **Pressure stability in explicitly coupled simulations of poromechanics with application to CO2 sequestration**
| RM Aronson, P Tomin, N Castelletto, FP Hamon, JA White, HA Tchelepi
| Computer Methods in Applied Mechanics and Engineering
| `doi:10.1016/j.cma.2024.117633 <https://doi.org/10.1016/j.cma.2024.117633>`_
* - | **Managing reservoir dynamics when converting natural gas fields to underground hydrogen storage**
| JT Camargo, JA White, FP Hamon, V Fakeye, TA Buscheck, N Huerta
| International Journal of Hydrogen Energy
Expand Down

0 comments on commit 7784585

Please sign in to comment.