Skip to content

Commit cc35dc1

Browse files
committed
GEOSX_USE to GEOS_USE
1 parent 6c82021 commit cc35dc1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/coreComponents/physicsSolvers/multiphysics/HydrofractureSolver.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::registerDataOnMesh( dataReposi
9595
{
9696
Base::registerDataOnMesh( meshBodies );
9797

98-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
98+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
9999
meshBodies.forSubGroups< MeshBody >( [&] ( MeshBody & meshBody )
100100
{
101101
MeshLevel & meshLevel = *meshBody.getBaseDiscretization();
@@ -132,7 +132,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::implicitStepSetup( real64 cons
132132
Base::implicitStepSetup( time_n, dt, domain );
133133
updateHydraulicApertureAndFracturePermeability( domain );
134134

135-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
135+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
136136
MeshLevel & mesh = domain.getMeshBody( 0 ).getBaseDiscretization();
137137

138138
mesh.getElemManager().forElementRegions< SurfaceElementRegion >( [&]( SurfaceElementRegion & faceElemRegion )
@@ -298,7 +298,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::updateHydraulicApertureAndFrac
298298
string const porousSolidName = subRegion.template getReference< string >( FlowSolverBase::viewKeyStruct::solidNamesString() );
299299
CoupledSolidBase const & porousSolid = subRegion.template getConstitutiveModel< CoupledSolidBase >( porousSolidName );
300300

301-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
301+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
302302
arrayView1d< real64 const > const &
303303
apertureF = subRegion.getReference< array1d< real64 > >( viewKeyStruct::apertureAtFailureString() );
304304

@@ -332,7 +332,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::updateHydraulicApertureAndFrac
332332
deltaVolume,
333333
aperture,
334334
hydraulicAperture
335-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
335+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
336336
,
337337
apertureF,
338338
separationCoeff,
@@ -1026,7 +1026,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::initializeNewFractureFields( D
10261026
// Get the list of newFractureElements
10271027
SortedArrayView< localIndex const > const newFractureElements = subRegion.m_newFaceElements.toViewConst();
10281028

1029-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
1029+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
10301030
arrayView1d< real64 > const apertureF = subRegion.getReference< array1d< real64 > >( "apertureAtFailure" );
10311031
#endif
10321032

@@ -1038,7 +1038,7 @@ void HydrofractureSolver< POROMECHANICS_SOLVER >::initializeNewFractureFields( D
10381038
localIndex const newElemIndex = newFractureElements[k];
10391039
real64 initialPressure = 1.0e99;
10401040
real64 initialAperture = 1.0e99;
1041-
#ifdef GEOSX_USE_SEPARATION_COEFFICIENT
1041+
#ifdef GEOS_USE_SEPARATION_COEFFICIENT
10421042
apertureF[newElemIndex] = aperture[newElemIndex];
10431043
#endif
10441044
if( m_newFractureInitializationType == InitializationType::Displacement )

0 commit comments

Comments
 (0)