Skip to content

Commit

Permalink
log_scale for plotting in example
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Aug 21, 2019
1 parent f4befd9 commit 0691b54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/02_pump_test_het_3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
model.pcs.add_block( # set the process type
PCS_TYPE="GROUNDWATER_FLOW", NUM_TYPE="NEW", TIM_TYPE="STEADY"
)
model.write_input()
success = model.run_model()
# model.write_input()
# success = model.run_model()

model.msh.show(show_cell_data={"Conductivity": cond})
model.msh.show(show_cell_data={"Conductivity": cond}, log_scale=True)
files = model.output_files(pcs="GROUNDWATER_FLOW", typ="VTK")
show_vtk(files[-1]) # show the last time-step
show_vtk(files[-1], log_scale=True) # show the last time-step

0 comments on commit 0691b54

Please sign in to comment.