-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified parallel plates permeability and updated discretization (#2623)
--------- Co-authored-by: Matteo Cusini <[email protected]>
- Loading branch information
1 parent
3cd5d63
commit 7f0065a
Showing
28 changed files
with
655 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
136 changes: 136 additions & 0 deletions
136
inputFiles/singlePhaseFlowFractures/impermeableFault_conforming_base.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
<?xml version="1.0" ?> | ||
|
||
<Problem> | ||
<Solvers | ||
gravityVector="{ 0.0, 0.0, -9.81 }"> | ||
<SinglePhaseFVM | ||
name="SinglePhaseFlow" | ||
logLevel="1" | ||
discretization="singlePhaseTPFA" | ||
targetRegions="{ RockMatrix, Fracture }"> | ||
<NonlinearSolverParameters | ||
newtonTol="1.0e-2" | ||
newtonMaxIter="8" | ||
allowNonConverged="1"/> | ||
<LinearSolverParameters | ||
directParallel="0"/> | ||
</SinglePhaseFVM> | ||
|
||
<SurfaceGenerator | ||
name="SurfaceGen" | ||
targetRegions="{ Fracture }" | ||
rockToughness="1e6" | ||
mpiCommOrder="1"/> | ||
</Solvers> | ||
|
||
<NumericalMethods> | ||
<FiniteVolume> | ||
<TwoPointFluxApproximation | ||
name="singlePhaseTPFA"/> | ||
</FiniteVolume> | ||
</NumericalMethods> | ||
|
||
<ElementRegions> | ||
<CellElementRegion | ||
name="RockMatrix" | ||
cellBlocks="{ cb1 }" | ||
materialList="{ water, rock }"/> | ||
|
||
<SurfaceElementRegion | ||
name="Fracture" | ||
defaultAperture="1.0e-5" | ||
materialList="{ water, fractureFilling }"/> | ||
</ElementRegions> | ||
|
||
<Constitutive> | ||
<CompressibleSinglePhaseFluid | ||
name="water" | ||
defaultDensity="1000" | ||
defaultViscosity="0.001" | ||
referencePressure="0.0" | ||
compressibility="5e-10" | ||
viscosibility="0.0"/> | ||
|
||
<CompressibleSolidConstantPermeability | ||
name="fractureFilling" | ||
solidModelName="nullSolid" | ||
porosityModelName="fracturePorosity" | ||
permeabilityModelName="fracturePerm"/> | ||
|
||
<CompressibleSolidConstantPermeability | ||
name="rock" | ||
solidModelName="nullSolid" | ||
porosityModelName="rockPorosity" | ||
permeabilityModelName="rockPerm"/> | ||
|
||
<NullModel | ||
name="nullSolid"/> | ||
|
||
<PressurePorosity | ||
name="rockPorosity" | ||
defaultReferencePorosity="0.01" | ||
referencePressure="0.0" | ||
compressibility="1.0e-9"/> | ||
|
||
<ConstantPermeability | ||
name="rockPerm" | ||
permeabilityComponents="{ 5.0e-12, 5.0e-12, 5.0e-12 }"/> | ||
|
||
<PressurePorosity | ||
name="fracturePorosity" | ||
defaultReferencePorosity="1.00" | ||
referencePressure="0.0" | ||
compressibility="0.0"/> | ||
|
||
<ConstantPermeability | ||
name="fracturePerm" | ||
permeabilityComponents="{ 1.0e-18, 1.0e-18, 1.0e-18 }"/> | ||
</Constitutive> | ||
|
||
<FieldSpecifications> | ||
<FieldSpecification | ||
name="frac" | ||
initialCondition="1" | ||
setNames="{ fracture }" | ||
objectPath="faceManager" | ||
fieldName="ruptureState" | ||
scale="1"/> | ||
|
||
<FieldSpecification | ||
name="Porosity" | ||
initialCondition="1" | ||
setNames="{ all }" | ||
objectPath="ElementRegions/RockMatrix/cb1" | ||
fieldName="rockPorosity_referencePorosity" | ||
scale="0.3"/> | ||
|
||
<FieldSpecification | ||
name="fracPorosity" | ||
initialCondition="1" | ||
setNames="{ all }" | ||
objectPath="ElementRegions/Fracture" | ||
fieldName="fracturePorosity_porosity" | ||
scale="1.00"/> | ||
|
||
<FieldSpecification | ||
name="leftPressure" | ||
objectPath="faceManager" | ||
fieldName="pressure" | ||
scale="1.0e6" | ||
setNames="{ xneg }"/> | ||
|
||
<FieldSpecification | ||
name="rightPressure" | ||
objectPath="faceManager" | ||
fieldName="pressure" | ||
scale="0.0e6" | ||
setNames="{ xpos }"/> | ||
</FieldSpecifications> | ||
|
||
<Outputs> | ||
<VTK | ||
name="vtkOutput" | ||
plotFileRoot="fractureMatrixFlow_impermeableFault"/> | ||
<Restart name="restartOutput"/> | ||
</Outputs> | ||
</Problem> |
43 changes: 43 additions & 0 deletions
43
inputFiles/singlePhaseFlowFractures/impermeableFault_conforming_benchmark.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" ?> | ||
|
||
<Problem> | ||
<Included> | ||
<File name="./impermeableFault_conforming_base.xml" /> | ||
</Included> | ||
|
||
<Mesh> | ||
<InternalMesh | ||
name="mesh1" | ||
elementTypes="{ C3D8 }" | ||
xCoords="{ -5, 5 }" | ||
yCoords="{ 0, 10 }" | ||
zCoords="{ 0, 1 }" | ||
nx="{ 100 }" | ||
ny="{ 100 }" | ||
nz="{ 1 }" | ||
cellBlockNames="{ cb1 }"/> | ||
</Mesh> | ||
|
||
<Geometry> | ||
<Box | ||
name="fracture" | ||
xMin="{ -0.01, 2.5, -0.01 }" | ||
xMax="{ 0.01, 7.5, 1.01 }"/> | ||
</Geometry> | ||
|
||
<Events | ||
maxTime="5000"> | ||
<SoloEvent | ||
name="preFracture" | ||
target="/Solvers/SurfaceGen"/> | ||
|
||
<PeriodicEvent | ||
name="solverApplications" | ||
forceDt="1e3" | ||
target="/Solvers/SinglePhaseFlow"/> | ||
|
||
<PeriodicEvent | ||
name="outputs" | ||
target="/Outputs/vtkOutput"/> | ||
</Events> | ||
</Problem> |
48 changes: 48 additions & 0 deletions
48
inputFiles/singlePhaseFlowFractures/impermeableFault_conforming_smoke.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" ?> | ||
|
||
<Problem> | ||
<Included> | ||
<File name="./impermeableFault_conforming_base.xml" /> | ||
</Included> | ||
|
||
<Mesh> | ||
<InternalMesh | ||
name="mesh1" | ||
elementTypes="{ C3D8 }" | ||
xCoords="{ -5, 5 }" | ||
yCoords="{ 0, 10 }" | ||
zCoords="{ 0, 1 }" | ||
nx="{ 10 }" | ||
ny="{ 10 }" | ||
nz="{ 1 }" | ||
cellBlockNames="{ cb1 }"/> | ||
</Mesh> | ||
|
||
<Geometry> | ||
<Box | ||
name="fracture" | ||
xMin="{ -0.01, 2.5, -0.01 }" | ||
xMax="{ 0.01, 7.5, 1.01 }"/> | ||
</Geometry> | ||
|
||
<Events | ||
maxTime="5000"> | ||
<SoloEvent | ||
name="preFracture" | ||
target="/Solvers/SurfaceGen"/> | ||
|
||
<PeriodicEvent | ||
name="solverApplications" | ||
forceDt="1e3" | ||
target="/Solvers/SinglePhaseFlow"/> | ||
|
||
<PeriodicEvent | ||
name="outputs" | ||
target="/Outputs/vtkOutput"/> | ||
|
||
<PeriodicEvent | ||
name="restarts" | ||
timeFrequency="2500" | ||
target="/Outputs/restartOutput"/> | ||
</Events> | ||
</Problem> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule integratedTests
updated
378 files
Oops, something went wrong.