Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
jumpControl="jFunction"
xTiltAngle="80"
tractionControl="tFunction"
steps="10"
output="FrictionDriver.txt" />
steps="10"
output="frictionDriver_Coulomb.txt" />
</Tasks>
<!-- SPHINX_TASK_END -->

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
<?xml version="1.0" ?>

<Problem>
<Outputs>
<Restart
name="restartOutput"/>
</Outputs>

<!-- SPHINX_EVENTS -->
<Events
maxTime="1">
<SoloEvent
name="frictionDriver"
targetTime="0"
target="/Tasks/frictionDriver"/>

<PeriodicEvent
name="restarts"
timeFrequency="1"
targetExactTimestep="0"
target="/Outputs/restartOutput"/>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The restart is for the CI so that the table can be saved in the restart file for comparisons with baselines.

</Events>
<!-- SPHINX_EVENTS_END -->

Expand Down Expand Up @@ -37,26 +49,4 @@
voxelFile="tables/tractions.geos"/>
</Functions>
<!-- SPHINX_FUNCTION_END -->

<!-- SPHINX_MESH -->
<Mesh>
<InternalMesh
name="mesh1"
elementTypes="{ C3D8 }"
xCoords="{ 0, 1 }"
yCoords="{ 0, 1 }"
zCoords="{ 0, 1 }"
nx="{ 1 }"
ny="{ 1 }"
nz="{ 1 }"
cellBlockNames="{ cellBlock01 }"/>
</Mesh>

<ElementRegions>
<CellElementRegion
name="dummy"
cellBlocks="{ * }"
materialList="{ dummy }"/>
</ElementRegions>
<!-- SPHINX_MESH_END -->
</Problem>
4 changes: 2 additions & 2 deletions src/coreComponents/constitutiveDrivers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ set( constitutiveDrivers_headers
#
set( constitutiveDrivers_sources
ConstitutiveDriver.cpp
contact/FrictionDriver.cpp
contact/FrictionDriverRunTest.cpp
fluid/multiFluid/PVTDriver.cpp
fluid/multiFluid/constant/PVTDriverRunTestInvariantImmiscibleFluid.cpp
fluid/multiFluid/blackOil/PVTDriverRunTestDeadOilFluid.cpp
Expand All @@ -59,8 +61,6 @@ set( constitutiveDrivers_sources
relativePermeability/RelpermDriverTableRelativeRunTest.cpp
relativePermeability/RelpermDriverTableRelativeHysteresisRunTest.cpp
solid/TriaxialDriver.cpp
contact/FrictionDriver.cpp
contact/FrictionDriverRunTest.cpp
)

set( dependencyList ${parallelDeps} constitutive events )
Expand Down
Loading
Loading