.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/diffusion/plot_thermal04.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_diffusion_plot_thermal04.py: ========================================================== Heat transfer through a thick cylinder ========================================================== This problem demonstrates the use of prescribed temperature on both sides of the wall. Using * :py:class:`mesher.PatchMesher` (see :ref:`patch_mesher_class`) * :py:class:`diffusion.Triangle` (see :ref:`diffusion_triangle_class`) * :py:class:`materials.Thermal` (see :ref:`diffusion_material_classes`) Theory --------- We shall consider a stationary heat transfer problem on a thick ring. The inner surface of the ring, :math:`r_i`, is heated to :math:`200~K`, the outer surface of the ring, :math:`r_o`, to :math:`300~K`. The thermal equation for an axi-symmetric problem can be expressed as .. math:: \Delta T = \frac{1}{r} \: \frac{\partial }{\partial r} \left( r \frac{\partial T}{\partial r} \right) = 0 where :math:`\Delta` is the Laplace operator. The analytic solution follows as .. math:: T(r) = {\displaystyle \frac{T_i \log(r_o/r) + T_o \log(r/r_i)}{\log(r_o/r_i)}} This solution will be compared against the finite element solution in the last figure. .. GENERATED FROM PYTHON SOURCE LINES 36-165 .. code-block:: Python import matplotlib.pyplot as plt import math import sys import numpy as np from femedu.examples.Example import * from femedu.domain import * from femedu.mesher import PatchMesher from femedu.elements.diffusion import Triangle from femedu.materials import Thermal class ExampleThermal04(Example): def problem(self): # ========== setting mesh parameters ============== Nx = 8 # number of elements through the wall Ny = 4 # number of elements parallel to the wall Lx = 10.00 # wall thickness in m Ri = 5.00 Ro = Ri + Lx alpha = np.radians(45.0) # ========== setting material parameters ============== params = dict( specific_heat = 1000, # J/kg.K density = 2500, # kg/m3 conductivity = 100, # W/m.K thickness = 1.0 # m ) # ========== setting load parameters ============== qn = 1.00 # uniform flux normal to x=const # ========== setting analysis parameters ============== target_load_level = 1.00 # reference load max_steps = 2 # number of load steps: 2 -> [0.0, 1.0] # define a list of target load levels load_levels = np.linspace(0, target_load_level, max_steps) # # ==== Build the system model ==== # model = System() # create nodes # 2 -------- 3 # | | # | | # | | | # 0 -------- 1 pts = ( ( Ri, 0), # 0 ( Ro, 0), # 1 ( Ri*np.cos(alpha), Ri*np.sin(alpha)), # 2 ( Ro*np.cos(alpha), Ro*np.sin(alpha)), # 3 ( Ri*np.cos(alpha/2), Ri*np.sin(alpha/2)), # 4 ( Ro*np.cos(alpha/2), Ro*np.sin(alpha/2)), # 5 ) mesher = PatchMesher(model, pts[0], pts[1], pts[3], pts[2], None, pts[5], None, pts[4]) nodes, elements = mesher.triangleMesh(Nx, Ny, Triangle, Thermal(params)) model.plot(factor=0.0, title='Radial diffusion', show_reactions=0, show_bc=0, show_loads=0) model.report() # boundary condition(s) ## find nodes at y==0 and x==0 for node in nodes: X = node.getPos() R = np.linalg.norm(X) if math.isclose(R, Ri, rel_tol=0.02): node.setDOF(['T'],[200.]) # prescribed temperature at x=0.0 if math.isclose(R, Ro, rel_tol=0.02): node.setDOF(['T'],[300.]) # prescribed temperature at x=0.0 # perform the analysis model.setLoadFactor(1.0) model.solve() model.report() model.valuePlot('T', show_mesh=True) model.valuePlot('qx', show_mesh=True) model.valuePlot('qy', show_mesh=True) # creating a path plot R_list = [] T_list = [] for node in nodes: X = node.getPos() R = np.linalg.norm(X) T = node.getDisp('T') R_list.append(R) T_list.append(T) # the analytic solution for comparison r = np.linspace(Ri, Ro, 21) T = (200. * np.log(Ro/r) + 300. * np.log(r/Ri)) / np.log(Ro/Ri) fig, axs = plt.subplots() axs.plot(r,T,'-b',label="analytic solution") axs.plot(R_list,T_list,'ro',label="FEM") axs.set_title('Nodal Temperature for ALL Nodes') axs.set_xlabel("Radial distance") axs.set_ylabel('T') axs.legend() axs.grid(True) plt.show() .. GENERATED FROM PYTHON SOURCE LINES 183-185 Run the example by creating an instance of the problem and executing it by calling :py:meth:`Example.run()` .. GENERATED FROM PYTHON SOURCE LINES 185-189 .. code-block:: Python if __name__ == "__main__": ex = ExampleThermal04() ex.run() .. rst-class:: sphx-glr-horizontal * .. image-sg:: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_001.png :alt: Radial diffusion :srcset: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_001.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_002.png :alt: Contours of 'T' :srcset: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_002.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_003.png :alt: Contours of '$q_{x}$' :srcset: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_003.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_004.png :alt: Contours of '$q_{y}$' :srcset: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_004.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_005.png :alt: Nodal Temperature for ALL Nodes :srcset: /auto_examples/diffusion/images/sphx_glr_plot_thermal04_005.png :class: sphx-glr-multi-img .. rst-class:: sphx-glr-script-out .. code-block:: none System Analysis Report ======================= Nodes: --------------------- Node_499: x: [5.000 0.000] u: [0.000] Node_500: x: [6.250 0.000] u: [0.000] Node_501: x: [7.500 0.000] u: [0.000] Node_502: x: [8.750 0.000] u: [0.000] Node_503: x: [10.000 0.000] u: [0.000] Node_504: x: [11.250 0.000] u: [0.000] Node_505: x: [12.500 0.000] u: [0.000] Node_506: x: [13.750 0.000] u: [0.000] Node_507: x: [15.000 0.000] u: [0.000] Node_508: x: [4.898 0.993] u: [0.000] Node_509: x: [6.007 1.194] u: [0.000] Node_510: x: [7.149 1.408] u: [0.000] Node_511: x: [8.324 1.636] u: [0.000] Node_512: x: [9.531 1.877] u: [0.000] Node_513: x: [10.772 2.132] u: [0.000] Node_514: x: [12.046 2.401] u: [0.000] Node_515: x: [13.353 2.683] u: [0.000] Node_516: x: [14.693 2.979] u: [0.000] Node_517: x: [4.619 1.913] u: [0.000] Node_518: x: [5.620 2.328] u: [0.000] Node_519: x: [6.665 2.761] u: [0.000] Node_520: x: [7.754 3.212] u: [0.000] Node_521: x: [8.887 3.681] u: [0.000] Node_522: x: [10.064 4.169] u: [0.000] Node_523: x: [11.285 4.674] u: [0.000] Node_524: x: [12.550 5.198] u: [0.000] Node_525: x: [13.858 5.740] u: [0.000] Node_526: x: [4.165 2.761] u: [0.000] Node_527: x: [5.091 3.403] u: [0.000] Node_528: x: [6.050 4.059] u: [0.000] Node_529: x: [7.042 4.729] u: [0.000] Node_530: x: [8.067 5.413] u: [0.000] Node_531: x: [9.125 6.110] u: [0.000] Node_532: x: [10.216 6.820] u: [0.000] Node_533: x: [11.339 7.545] u: [0.000] Node_534: x: [12.496 8.283] u: [0.000] Node_535: x: [3.536 3.536] u: [0.000] Node_536: x: [4.419 4.419] u: [0.000] Node_537: x: [5.303 5.303] u: [0.000] Node_538: x: [6.187 6.187] u: [0.000] Node_539: x: [7.071 7.071] u: [0.000] Node_540: x: [7.955 7.955] u: [0.000] Node_541: x: [8.839 8.839] u: [0.000] Node_542: x: [9.723 9.723] u: [0.000] Node_543: x: [10.607 10.607] u: [0.000] Elements: --------------------- Triangle_759: nodes ( Node_499 Node_500 Node_508 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_760: nodes ( Node_509 Node_508 Node_500 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_761: nodes ( Node_500 Node_501 Node_509 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_762: nodes ( Node_510 Node_509 Node_501 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_763: nodes ( Node_501 Node_502 Node_510 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_764: nodes ( Node_511 Node_510 Node_502 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_765: nodes ( Node_502 Node_503 Node_511 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_766: nodes ( Node_512 Node_511 Node_503 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_767: nodes ( Node_503 Node_504 Node_512 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_768: nodes ( Node_513 Node_512 Node_504 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_769: nodes ( Node_504 Node_505 Node_513 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_770: nodes ( Node_514 Node_513 Node_505 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_771: nodes ( Node_505 Node_506 Node_514 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_772: nodes ( Node_515 Node_514 Node_506 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_773: nodes ( Node_506 Node_507 Node_515 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_774: nodes ( Node_516 Node_515 Node_507 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_775: nodes ( Node_508 Node_509 Node_517 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_776: nodes ( Node_518 Node_517 Node_509 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_777: nodes ( Node_509 Node_510 Node_518 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_778: nodes ( Node_519 Node_518 Node_510 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_779: nodes ( Node_510 Node_511 Node_519 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_780: nodes ( Node_520 Node_519 Node_511 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_781: nodes ( Node_511 Node_512 Node_520 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_782: nodes ( Node_521 Node_520 Node_512 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_783: nodes ( Node_512 Node_513 Node_521 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_784: nodes ( Node_522 Node_521 Node_513 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_785: nodes ( Node_513 Node_514 Node_522 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_786: nodes ( Node_523 Node_522 Node_514 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_787: nodes ( Node_514 Node_515 Node_523 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_788: nodes ( Node_524 Node_523 Node_515 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_789: nodes ( Node_515 Node_516 Node_524 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_790: nodes ( Node_525 Node_524 Node_516 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_791: nodes ( Node_517 Node_518 Node_526 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_792: nodes ( Node_527 Node_526 Node_518 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_793: nodes ( Node_518 Node_519 Node_527 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_794: nodes ( Node_528 Node_527 Node_519 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_795: nodes ( Node_519 Node_520 Node_528 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_796: nodes ( Node_529 Node_528 Node_520 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_797: nodes ( Node_520 Node_521 Node_529 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_798: nodes ( Node_530 Node_529 Node_521 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_799: nodes ( Node_521 Node_522 Node_530 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_800: nodes ( Node_531 Node_530 Node_522 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_801: nodes ( Node_522 Node_523 Node_531 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_802: nodes ( Node_532 Node_531 Node_523 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_803: nodes ( Node_523 Node_524 Node_532 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_804: nodes ( Node_533 Node_532 Node_524 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_805: nodes ( Node_524 Node_525 Node_533 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_806: nodes ( Node_534 Node_533 Node_525 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_807: nodes ( Node_526 Node_527 Node_535 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_808: nodes ( Node_536 Node_535 Node_527 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_809: nodes ( Node_527 Node_528 Node_536 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_810: nodes ( Node_537 Node_536 Node_528 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_811: nodes ( Node_528 Node_529 Node_537 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_812: nodes ( Node_538 Node_537 Node_529 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_813: nodes ( Node_529 Node_530 Node_538 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_814: nodes ( Node_539 Node_538 Node_530 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_815: nodes ( Node_530 Node_531 Node_539 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_816: nodes ( Node_540 Node_539 Node_531 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_817: nodes ( Node_531 Node_532 Node_540 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_818: nodes ( Node_541 Node_540 Node_532 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_819: nodes ( Node_532 Node_533 Node_541 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_820: nodes ( Node_542 Node_541 Node_533 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_821: nodes ( Node_533 Node_534 Node_542 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 Triangle_822: nodes ( Node_543 Node_542 Node_534 ) material: Thermal grad phi: x=0.000e+00 y=0.000e+00 flux: x=0.000e+00 y=0.000e+00 System Analysis Report ======================= Nodes: --------------------- Node_499: x: [5.000 0.000] fix: ['T'] u: [200.000] Node_500: x: [6.250 0.000] u: [220.291] Node_501: x: [7.500 0.000] u: [236.881] Node_502: x: [8.750 0.000] u: [250.921] Node_503: x: [10.000 0.000] u: [263.088] Node_504: x: [11.250 0.000] u: [273.819] Node_505: x: [12.500 0.000] u: [283.415] Node_506: x: [13.750 0.000] u: [292.090] Node_507: x: [15.000 0.000] fix: ['T'] u: [300.000] Node_508: x: [4.898 0.993] fix: ['T'] u: [200.000] Node_509: x: [6.007 1.194] u: [218.453] Node_510: x: [7.149 1.408] u: [234.246] Node_511: x: [8.324 1.636] u: [248.087] Node_512: x: [9.531 1.877] u: [260.436] Node_513: x: [10.772 2.132] u: [271.604] Node_514: x: [12.046 2.401] u: [281.816] Node_515: x: [13.353 2.683] u: [291.237] Node_516: x: [14.693 2.979] fix: ['T'] u: [300.000] Node_517: x: [4.619 1.913] fix: ['T'] u: [200.000] Node_518: x: [5.620 2.328] u: [217.836] Node_519: x: [6.665 2.761] u: [233.346] Node_520: x: [7.754 3.212] u: [247.120] Node_521: x: [8.887 3.681] u: [259.539] Node_522: x: [10.064 4.169] u: [270.867] Node_523: x: [11.285 4.674] u: [281.298] Node_524: x: [12.550 5.198] u: [290.974] Node_525: x: [13.858 5.740] fix: ['T'] u: [300.000] Node_526: x: [4.165 2.761] fix: ['T'] u: [200.000] Node_527: x: [5.091 3.403] u: [218.448] Node_528: x: [6.050 4.059] u: [234.245] Node_529: x: [7.042 4.729] u: [248.090] Node_530: x: [8.067 5.413] u: [260.439] Node_531: x: [9.125 6.110] u: [271.607] Node_532: x: [10.216 6.820] u: [281.818] Node_533: x: [11.339 7.545] u: [291.239] Node_534: x: [12.496 8.283] fix: ['T'] u: [300.000] Node_535: x: [3.536 3.536] fix: ['T'] u: [200.000] Node_536: x: [4.419 4.419] u: [220.318] Node_537: x: [5.303 5.303] u: [236.903] Node_538: x: [6.187 6.187] u: [250.928] Node_539: x: [7.071 7.071] u: [263.082] Node_540: x: [7.955 7.955] u: [273.807] Node_541: x: [8.839 8.839] u: [283.403] Node_542: x: [9.723 9.723] u: [292.083] Node_543: x: [10.607 10.607] fix: ['T'] u: [300.000] Elements: --------------------- Triangle_759: nodes ( Node_499 Node_500 Node_508 ) material: Thermal grad phi: x=1.623e+01 y=1.674e+00 flux: x=-1.623e+03 y=-1.674e+02 Triangle_760: nodes ( Node_509 Node_508 Node_500 ) material: Thermal grad phi: x=1.632e+01 y=1.786e+00 flux: x=-1.632e+03 y=-1.786e+02 Triangle_761: nodes ( Node_500 Node_501 Node_509 ) material: Thermal grad phi: x=1.327e+01 y=1.166e+00 flux: x=-1.327e+03 y=-1.166e+02 Triangle_762: nodes ( Node_510 Node_509 Node_501 ) material: Thermal grad phi: x=1.355e+01 y=1.509e+00 flux: x=-1.355e+03 y=-1.509e+02 Triangle_763: nodes ( Node_501 Node_502 Node_510 ) material: Thermal grad phi: x=1.123e+01 y=9.313e-01 flux: x=-1.123e+03 y=-9.313e+01 Triangle_764: nodes ( Node_511 Node_510 Node_502 ) material: Thermal grad phi: x=1.153e+01 y=1.274e+00 flux: x=-1.153e+03 y=-1.274e+02 Triangle_765: nodes ( Node_502 Node_503 Node_511 ) material: Thermal grad phi: x=9.733e+00 y=8.050e-01 flux: x=-9.733e+02 y=-8.050e+01 Triangle_766: nodes ( Node_512 Node_511 Node_503 ) material: Thermal grad phi: x=1.001e+01 y=1.085e+00 flux: x=-1.001e+03 y=-1.085e+02 Triangle_767: nodes ( Node_503 Node_504 Node_512 ) material: Thermal grad phi: x=8.585e+00 y=7.299e-01 flux: x=-8.585e+02 y=-7.299e+01 Triangle_768: nodes ( Node_513 Node_512 Node_504 ) material: Thermal grad phi: x=8.808e+00 y=9.342e-01 flux: x=-8.808e+02 y=-9.342e+01 Triangle_769: nodes ( Node_504 Node_505 Node_513 ) material: Thermal grad phi: x=7.677e+00 y=6.807e-01 flux: x=-7.677e+02 y=-6.807e+01 Triangle_770: nodes ( Node_514 Node_513 Node_505 ) material: Thermal grad phi: x=7.844e+00 y=8.163e-01 flux: x=-7.844e+02 y=-8.163e+01 Triangle_771: nodes ( Node_505 Node_506 Node_514 ) material: Thermal grad phi: x=6.940e+00 y=6.454e-01 flux: x=-6.940e+02 y=-6.454e+01 Triangle_772: nodes ( Node_515 Node_514 Node_506 ) material: Thermal grad phi: x=7.053e+00 y=7.257e-01 flux: x=-7.053e+02 y=-7.257e+01 Triangle_773: nodes ( Node_506 Node_507 Node_515 ) material: Thermal grad phi: x=6.328e+00 y=6.184e-01 flux: x=-6.328e+02 y=-6.184e+01 Triangle_774: nodes ( Node_516 Node_515 Node_507 ) material: Thermal grad phi: x=6.395e+00 y=6.593e-01 flux: x=-6.395e+02 y=-6.593e+01 Triangle_775: nodes ( Node_508 Node_509 Node_517 ) material: Thermal grad phi: x=1.578e+01 y=4.769e+00 flux: x=-1.578e+03 y=-4.769e+02 Triangle_776: nodes ( Node_518 Node_517 Node_509 ) material: Thermal grad phi: x=1.581e+01 y=4.840e+00 flux: x=-1.581e+03 y=-4.840e+02 Triangle_777: nodes ( Node_509 Node_510 Node_518 ) material: Thermal grad phi: x=1.310e+01 y=3.915e+00 flux: x=-1.310e+03 y=-3.915e+02 Triangle_778: nodes ( Node_519 Node_518 Node_510 ) material: Thermal grad phi: x=1.317e+01 y=4.039e+00 flux: x=-1.317e+03 y=-4.039e+02 Triangle_779: nodes ( Node_510 Node_511 Node_519 ) material: Thermal grad phi: x=1.114e+01 y=3.313e+00 flux: x=-1.114e+03 y=-3.313e+02 Triangle_780: nodes ( Node_520 Node_519 Node_511 ) material: Thermal grad phi: x=1.122e+01 y=3.440e+00 flux: x=-1.122e+03 y=-3.440e+02 Triangle_781: nodes ( Node_511 Node_512 Node_520 ) material: Thermal grad phi: x=9.649e+00 y=2.871e+00 flux: x=-9.649e+02 y=-2.871e+02 Triangle_782: nodes ( Node_521 Node_520 Node_512 ) material: Thermal grad phi: x=9.729e+00 y=2.977e+00 flux: x=-9.729e+02 y=-2.977e+02 Triangle_783: nodes ( Node_512 Node_513 Node_521 ) material: Thermal grad phi: x=8.480e+00 y=2.531e+00 flux: x=-8.480e+02 y=-2.531e+02 Triangle_784: nodes ( Node_522 Node_521 Node_513 ) material: Thermal grad phi: x=8.545e+00 y=2.611e+00 flux: x=-8.545e+02 y=-2.611e+02 Triangle_785: nodes ( Node_513 Node_514 Node_522 ) material: Thermal grad phi: x=7.539e+00 y=2.261e+00 flux: x=-7.539e+02 y=-2.261e+02 Triangle_786: nodes ( Node_523 Node_522 Node_514 ) material: Thermal grad phi: x=7.586e+00 y=2.313e+00 flux: x=-7.586e+02 y=-2.313e+02 Triangle_787: nodes ( Node_514 Node_515 Node_523 ) material: Thermal grad phi: x=6.769e+00 y=2.040e+00 flux: x=-6.769e+02 y=-2.040e+02 Triangle_788: nodes ( Node_524 Node_523 Node_515 ) material: Thermal grad phi: x=6.794e+00 y=2.066e+00 flux: x=-6.794e+02 y=-2.066e+02 Triangle_789: nodes ( Node_515 Node_516 Node_524 ) material: Thermal grad phi: x=6.131e+00 y=1.854e+00 flux: x=-6.131e+02 y=-1.854e+02 Triangle_790: nodes ( Node_525 Node_524 Node_516 ) material: Thermal grad phi: x=6.129e+00 y=1.853e+00 flux: x=-6.129e+02 y=-1.853e+02 Triangle_791: nodes ( Node_517 Node_518 Node_526 ) material: Thermal grad phi: x=1.458e+01 y=7.812e+00 flux: x=-1.458e+03 y=-7.812e+02 Triangle_792: nodes ( Node_527 Node_526 Node_518 ) material: Thermal grad phi: x=1.456e+01 y=7.732e+00 flux: x=-1.456e+03 y=-7.732e+02 Triangle_793: nodes ( Node_518 Node_519 Node_527 ) material: Thermal grad phi: x=1.213e+01 y=6.539e+00 flux: x=-1.213e+03 y=-6.539e+02 Triangle_794: nodes ( Node_528 Node_527 Node_519 ) material: Thermal grad phi: x=1.208e+01 y=6.416e+00 flux: x=-1.208e+03 y=-6.416e+02 Triangle_795: nodes ( Node_519 Node_520 Node_528 ) material: Thermal grad phi: x=1.033e+01 y=5.587e+00 flux: x=-1.033e+03 y=-5.587e+02 Triangle_796: nodes ( Node_529 Node_528 Node_520 ) material: Thermal grad phi: x=1.027e+01 y=5.460e+00 flux: x=-1.027e+03 y=-5.460e+02 Triangle_797: nodes ( Node_520 Node_521 Node_529 ) material: Thermal grad phi: x=8.956e+00 y=4.843e+00 flux: x=-8.956e+02 y=-4.843e+02 Triangle_798: nodes ( Node_530 Node_529 Node_521 ) material: Thermal grad phi: x=8.894e+00 y=4.733e+00 flux: x=-8.894e+02 y=-4.733e+02 Triangle_799: nodes ( Node_521 Node_522 Node_530 ) material: Thermal grad phi: x=7.867e+00 y=4.247e+00 flux: x=-7.867e+02 y=-4.247e+02 Triangle_800: nodes ( Node_531 Node_530 Node_522 ) material: Thermal grad phi: x=7.815e+00 y=4.162e+00 flux: x=-7.815e+02 y=-4.162e+02 Triangle_801: nodes ( Node_522 Node_523 Node_531 ) material: Thermal grad phi: x=6.986e+00 y=3.762e+00 flux: x=-6.986e+02 y=-3.762e+02 Triangle_802: nodes ( Node_532 Node_531 Node_523 ) material: Thermal grad phi: x=6.948e+00 y=3.704e+00 flux: x=-6.948e+02 y=-3.704e+02 Triangle_803: nodes ( Node_523 Node_524 Node_532 ) material: Thermal grad phi: x=6.259e+00 y=3.360e+00 flux: x=-6.259e+02 y=-3.360e+02 Triangle_804: nodes ( Node_533 Node_532 Node_524 ) material: Thermal grad phi: x=6.237e+00 y=3.329e+00 flux: x=-6.237e+02 y=-3.329e+02 Triangle_805: nodes ( Node_524 Node_525 Node_533 ) material: Thermal grad phi: x=5.644e+00 y=3.024e+00 flux: x=-5.644e+02 y=-3.024e+02 Triangle_806: nodes ( Node_534 Node_533 Node_525 ) material: Thermal grad phi: x=5.645e+00 y=3.024e+00 flux: x=-5.645e+02 y=-3.024e+02 Triangle_807: nodes ( Node_526 Node_527 Node_535 ) material: Thermal grad phi: x=1.274e+01 y=1.036e+01 flux: x=-1.274e+03 y=-1.036e+03 Triangle_808: nodes ( Node_536 Node_535 Node_527 ) material: Thermal grad phi: x=1.273e+01 y=1.026e+01 flux: x=-1.273e+03 y=-1.026e+03 Triangle_809: nodes ( Node_527 Node_528 Node_536 ) material: Thermal grad phi: x=1.047e+01 y=8.768e+00 flux: x=-1.047e+03 y=-8.768e+02 Triangle_810: nodes ( Node_537 Node_536 Node_528 ) material: Thermal grad phi: x=1.039e+01 y=8.375e+00 flux: x=-1.039e+03 y=-8.375e+02 Triangle_811: nodes ( Node_528 Node_529 Node_537 ) material: Thermal grad phi: x=8.905e+00 y=7.484e+00 flux: x=-8.905e+02 y=-7.484e+02 Triangle_812: nodes ( Node_538 Node_537 Node_529 ) material: Thermal grad phi: x=8.775e+00 y=7.092e+00 flux: x=-8.775e+02 y=-7.092e+02 Triangle_813: nodes ( Node_529 Node_530 Node_538 ) material: Thermal grad phi: x=7.730e+00 y=6.479e+00 flux: x=-7.730e+02 y=-6.479e+02 Triangle_814: nodes ( Node_539 Node_538 Node_530 ) material: Thermal grad phi: x=7.596e+00 y=6.155e+00 flux: x=-7.596e+02 y=-6.155e+02 Triangle_815: nodes ( Node_530 Node_531 Node_539 ) material: Thermal grad phi: x=6.812e+00 y=5.684e+00 flux: x=-6.812e+02 y=-5.684e+02 Triangle_816: nodes ( Node_540 Node_539 Node_531 ) material: Thermal grad phi: x=6.697e+00 y=5.438e+00 flux: x=-6.697e+02 y=-5.438e+02 Triangle_817: nodes ( Node_531 Node_532 Node_540 ) material: Thermal grad phi: x=6.075e+00 y=5.043e+00 flux: x=-6.075e+02 y=-5.043e+02 Triangle_818: nodes ( Node_541 Node_540 Node_532 ) material: Thermal grad phi: x=5.987e+00 y=4.869e+00 flux: x=-5.987e+02 y=-4.869e+02 Triangle_819: nodes ( Node_532 Node_533 Node_541 ) material: Thermal grad phi: x=5.472e+00 y=4.517e+00 flux: x=-5.472e+02 y=-4.517e+02 Triangle_820: nodes ( Node_542 Node_541 Node_533 ) material: Thermal grad phi: x=5.414e+00 y=4.406e+00 flux: x=-5.414e+02 y=-4.406e+02 Triangle_821: nodes ( Node_533 Node_534 Node_542 ) material: Thermal grad phi: x=4.972e+00 y=4.078e+00 flux: x=-4.972e+02 y=-4.078e+02 Triangle_822: nodes ( Node_543 Node_542 Node_534 ) material: Thermal grad phi: x=4.940e+00 y=4.017e+00 flux: x=-4.940e+02 y=-4.017e+02 .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.132 seconds) .. _sphx_glr_download_auto_examples_diffusion_plot_thermal04.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_thermal04.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_thermal04.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_thermal04.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_