Skip to content

Commit 71ff767

Browse files
minor - templatize year value, mark savefig args metadata TODO
1 parent 206f7f5 commit 71ff767

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/Fervo_Project_Red.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Because Fervo has explicitly characterized this two-year operational period as d
196196
temperatures with marginal to no actual reservoir drawdown, the GEOPHIRES parameterization deliberately favors a
197197
stabilized, slightly more optimistic decline curve rather than overfitting to potential extraction artifacts.
198198

199-
While this 8-year forecast establishes a testable predictive baseline, understanding the true bounds of this decline
199+
While this {{ long_term_forecast_years }}-year forecast establishes a testable predictive baseline, understanding the true bounds of this decline
200200
requires accounting for inherent subsurface uncertainty.
201201
To explore how variations in reservoir geometry might accelerate or delay the onset of this long-term drawdown, the
202202
following sensitivity analysis expands our single baseline into a predictive envelope.

src/geophires_docs/generate_fervo_project_red_2026_docs.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@
5252
NUMBER_OF_FRACTURES_PARAM_NAME = 'Number of Fractures'
5353

5454
_GRAPH_DPI = 300
55-
_SAVEFIG_ARGS = {'dpi': _GRAPH_DPI, 'metadata': {'Date': None}}
55+
_SAVEFIG_ARGS = {
56+
'dpi': _GRAPH_DPI,
57+
'metadata': {
58+
# TODO: intended to prevent spurious image diffs after graph/doc regeneration, but does not work as intended.
59+
'Date': None
60+
},
61+
}
5662

5763

5864
@dataclass

0 commit comments

Comments
 (0)