From a649f882e83f2003718663bb0af2d45f6c83d34b Mon Sep 17 00:00:00 2001 From: Helge Gehring <42973196+HelgeGehring@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:23:31 -0700 Subject: [PATCH] cleanup example --- docs/julia/heater_3d.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/julia/heater_3d.jl b/docs/julia/heater_3d.jl index baf0b282..39d9a65a 100644 --- a/docs/julia/heater_3d.jl +++ b/docs/julia/heater_3d.jl @@ -34,7 +34,7 @@ run(`python $dir/heater_3d_mesh.py`) # %% [markdown] # Let's start with defining the constants for the simulation: -# %% +# %% tags=["hide-output"] electrical_conductivity = [ "core" => 1e-6, "box" => 1e-13, @@ -70,12 +70,12 @@ thermal_diffisitivities = [ "metal3" => 28 / 598 / 5240, "metal3#e1" => 28 / 598 / 5240, "metal3#e2" => 28 / 598 / 5240, -]; +] # %% [markdown] # First we load the mesh, get the labels, define a CellField to evaluate the constants on # and create functions which work on the tags -# %% tags=["remove-stderr"] +# %% tags=["remove-stderr", "hide-output"] model = GmshDiscreteModel("mesh.msh") Ω = Triangulation(model)