From 074a14a789313218fc23df4725c3b8fd6eea3892 Mon Sep 17 00:00:00 2001 From: Helge Gehring <42973196+HelgeGehring@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:52:22 -0700 Subject: [PATCH] fix docs --- docs/julia/heater_3d.jl | 22 ++++++++++++++++++- .../julia/{heater_3d.py => heater_3d_mesh.py} | 0 2 files changed, 21 insertions(+), 1 deletion(-) rename docs/julia/{heater_3d.py => heater_3d_mesh.py} (100%) diff --git a/docs/julia/heater_3d.jl b/docs/julia/heater_3d.jl index a0f8c04e..f1f63d6c 100644 --- a/docs/julia/heater_3d.jl +++ b/docs/julia/heater_3d.jl @@ -1,3 +1,23 @@ +# --- +# jupyter: +# jupytext: +# custom_cell_magics: kql +# formats: jl:percent,ipynb +# text_representation: +# extension: .jl +# format_name: percent +# format_version: '1.3' +# jupytext_version: 1.11.2 +# kernelspec: +# display_name: base +# language: julia +# name: julia-1.9 +# --- + +# %% [markdown] +# # 3D thermal phase shifter + +# %% using GLMakie using Gridap @@ -8,7 +28,7 @@ using GridapPETSc using Femwell.Maxwell.Electrostatic using Femwell.Thermal -run(`python docs/julia/heater_3d.py`) +run(`python docs/julia/heater_3d_mesh.py`) model = GmshDiscreteModel("mesh.msh") diff --git a/docs/julia/heater_3d.py b/docs/julia/heater_3d_mesh.py similarity index 100% rename from docs/julia/heater_3d.py rename to docs/julia/heater_3d_mesh.py