From cb60052feeaa59178c2f4fe6b4a3ba87d8087410 Mon Sep 17 00:00:00 2001 From: msdemartini <148483978+msdemartini@users.noreply.github.com> Date: Thu, 19 Oct 2023 19:28:42 +0200 Subject: [PATCH] Update material properties in heater_3d.jl Updated thermal conductivities, specific heats, and densities --- docs/julia/heater_3d.jl | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/julia/heater_3d.jl b/docs/julia/heater_3d.jl index b6d9e1ea..42b17660 100644 --- a/docs/julia/heater_3d.jl +++ b/docs/julia/heater_3d.jl @@ -72,13 +72,13 @@ thermal_conductivities = [ "core" => 90, "box" => 1.38, "clad" => 1.38, - "heater" => 28, - "via2" => 28, - "metal2" => 28, - "via1" => 28, - "metal3" => 28, - "metal3#e1" => 28, - "metal3#e2" => 28, + "heater" => 400, + "via2" => 400, + "metal2" => 400, + "via1" => 400, + "metal3" => 400, + "metal3#e1" => 400, + "metal3#e2" => 400, ] thermal_conductivities = Dict(get_tag_from_name(labels, u) => v for (u, v) in thermal_conductivities) @@ -115,15 +115,15 @@ writevtk( thermal_diffisitivities = [ "core" => 90 / 711 / 2330, - "box" => 1.38 / 709 / 2203, - "clad" => 1.38 / 709 / 2203, - "heater" => 28 / 598 / 5240, - "via2" => 28 / 598 / 5240, - "metal2" => 28 / 598 / 5240, - "via1" => 28 / 598 / 5240, - "metal3" => 28 / 598 / 5240, - "metal3#e1" => 28 / 598 / 5240, - "metal3#e2" => 28 / 598 / 5240, + "box" => 1.38 / 1000 / 2650, + "clad" => 1.38 / 1000 / 2650, + "heater" => 400 / 376 / 8960, + "via2" => 400 / 376 / 8960, + "metal2" => 400 / 376 / 8960, + "via1" => 400 / 376 / 8960, + "metal3" => 400 / 376 / 8960, + "metal3#e1" => 400 / 376 / 8960, + "metal3#e2" => 400 / 376 / 8960, ] thermal_diffisitivities = Dict(get_tag_from_name(labels, u) => v for (u, v) in thermal_diffisitivities)