From 935eb140cbe8bed65ee83df0d51390c325844d8a Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Thu, 22 Feb 2024 18:33:09 +0100 Subject: [PATCH] Fix contact example (#2805) Fix example --- examples/00-mapdl-examples/contact_elements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/00-mapdl-examples/contact_elements.py b/examples/00-mapdl-examples/contact_elements.py index e9c2259f53..58b4c18939 100644 --- a/examples/00-mapdl-examples/contact_elements.py +++ b/examples/00-mapdl-examples/contact_elements.py @@ -81,7 +81,7 @@ # Here, we plot the element mesh as a wire-frame to show that the # contact pairs overlap. -mapdl.esel("S", "SEC", vmin=5, vmax=6) +mapdl.esel("S", "SEC", vmin=3, vmax=4) mapdl.eplot(style="wireframe", line_width=3) ###############################################################################