Skip to content

Commit b46471e

Browse files
committed
DOC: fix wrong (analytic) geometric factors
1 parent f71fa76 commit b46471e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/examples/3_ert/plot_02_ert_field_data.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
###############################################################################
3232
# The data file does not contain geometric factors (token field 'k'),
3333
# so we create them based on the given topography.
34-
k0 = ert.geometricFactors(data) # the analytical one
34+
k0 = ert.createGeometricFactors(data) # the analytical one
3535
data['k'] = ert.createGeometricFactors(data, numerical=True)
3636

3737
###############################################################################
@@ -41,6 +41,9 @@
4141
_ = ert.showData(data, vals=k0/ data['k'], label='Topography effect',
4242
cMin=2/3, cMax=3/2, logScale=True, cMap="bwr")
4343

44+
45+
sdfsfsf
46+
4447
###############################################################################
4548
# We can now compute the apparent resistivity and display it, once with the
4649
# wrong analytical formula and once with the numerical values in data['k']

0 commit comments

Comments
 (0)