Skip to content

Commit

Permalink
Fix tutorial example for thermal debonding wellbore problem (#3170)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuang2601 authored and Algiane committed Jun 21, 2024
1 parent 3ddfff3 commit 5f09c35
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .integrated_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
baselines:
bucket: geosx
baseline: integratedTests/baseline_integratedTests-pr3130-5671-b19ba86
baseline: integratedTests/baseline_integratedTests-pr3170-5687-d6e16c7

allow_fail:
all: ''
Expand Down
8 changes: 8 additions & 0 deletions BASELINE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@ This file is designed to track changes to the integrated test baselines.
Any developer who updates the baseline ID in the .integrated_tests.yaml file is expected to create an entry in this file with the pull request number, date, and their justification for rebaselining.
These notes should be in reverse-chronological order, and use the following time format: (YYYY-MM-DD).

PR #3170 (2024-06-19)
======================
Fix tutorial example for thermal debonding wellbore problem. Test case modified.


PR #3130 (2024-06-19)
======================
New solver for contact mechanics based on the Augmented Lagrangian Method (ALM). New test case added.


PR #3160 (2024-06-18)
======================
Two experimental options for compositional flow solver. Rebaseline because of the new input flags.


PR #3165 (2024-06-18)
======================
Small bug fix. Rebaseline required due to appearance of useTotalMassEquation in well solver params. No real results change.


PR #3088 (2024-06-17)
======================
Adding temperature-dependent Solid Volumetric Heat Capacity. Rebaseline because of the parameter change in SolidInternalEnergy.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
name="Fracture"
faceBlock="faceElementSubRegion"
materialList="{ fluid, fractureFilling, fractureContact, contactThermalCond }"
defaultAperture="5.e-3"/>
defaultAperture="5.0e-4"/>
<!-- SPHINX_SurfaceElementRegionEnd -->

<CellElementRegion
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def main():
plt.plot( displacement_radial_analytic_1e4s[:,0],
displacement_radial_analytic_1e4s[:,1],
'r-',
label='Analytic, no debonding: t = 1e4 (s)')
label='Analytic: t = 1e4 (s)')

# Plot radial displacement at 1e5 (s)
plt.plot( rCoord,
Expand All @@ -60,7 +60,7 @@ def main():
plt.plot( displacement_radial_analytic_1e5s[:,0],
displacement_radial_analytic_1e5s[:,1],
'b-',
label='Analytic, no debonding: t = 1e5 (s)')
label='Analytic: t = 1e5 (s)')

plt.grid()
plt.ylabel(r'Displacement [m]')
Expand Down

0 comments on commit 5f09c35

Please sign in to comment.