.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/plates/plot_plate10_profiler.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_plates_plot_plate10_profiler.py: ========================================================== Profiling the code ========================================================== Using PatchMesher to model a quarter of the plate .. GENERATED FROM PYTHON SOURCE LINES 9-118 .. code-block:: Python # sphinx_gallery_thumbnail_path = '_static/profiler.png' SPARSE = False import math import sys import numpy as np from femedu.examples import Example from femedu.domain import System, Node from femedu.solver import NewtonRaphsonSolver, SparseSolver from femedu.elements.linear import Triangle from femedu.materials import PlaneStress from femedu.mesher import * class ExamplePlate14(Example): def problem(self): # ========== setting mesh parameters ============== Nx = 60 # number of elements in the mesh Ny = 40 # number of elements in the mesh Lx = 120.0 # length of plate in the x-direction Ly = 80.0 # length of plate in the y-direction R = Ly / 2. # ========== setting material parameters ============== params = dict( E = 200., # Young's modulus nu = 0.450, # Poisson's ratio t = 1.00 # thickness of the plate ) # ========== setting load parameters ============== px = 20.0 # uniform load normal to x=const py = 0.0 # uniform load normal to y=const pxy = 0.0 # uniform shear load on x=const and y=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() if SPARSE: model.setSolver(SparseSolver()) else: model.setSolver(NewtonRaphsonSolver()) # create nodes # 3---------2 # | | # | | # | | # 1---------1 pts = ( ( 0, 0), (Lx, 0), (Lx, Ly), (0, Ly), ) mesher = PatchMesher(model, pts[0], pts[1], pts[2], pts[3]) nodes, elements = mesher.triangleMesh(Nx, Ny, Triangle, PlaneStress(params)) # define support(s) ## find nodes at y==0 and x==0 for node in nodes: X = node.getPos() if math.isclose(X[0], 0.0): node.fixDOF('ux') # horizontal support left side if math.isclose(X[1], 0.0): node.fixDOF('uy') # vertical support at y==0 # ==== build the reference load ==== # the section at the right end for elem, face in model.findFacesAlongLine((Lx, 0.0), (0.0, 1.0), orientation=+1): print('+', elem.getID(), face.id, ":", face.area) face.setLoad(px, pxy) model.plot(factor=0, title="undeformed system", filename="plate14_undeformed.png", show_bc=1, show_loads=1) model.setLoadFactor(1.0) model.solve() #model.plot(factor=1., filename="plate14_deformed.png") #model.solver.showKt(filename="plate14_spy_Kt.png") #np.save("plate14_Kt.npy",model.solver.Kt) .. GENERATED FROM PYTHON SOURCE LINES 136-140 Run the example by creating an instance of the problem and executing it by calling :py:meth:`Example.run()` This time, we are running the example in the profiler, writing profiling data to file. .. GENERATED FROM PYTHON SOURCE LINES 140-151 .. code-block:: Python :dedent: 1 import cProfile ex = ExamplePlate14() if SPARSE: cProfile.run('ex.run()','profile_data_sparse.txt') else: cProfile.run('ex.run()','profile_data_full.txt') .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_profiler_001.png :alt: undeformed system :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_profiler_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none + Elem_1082 1082.2 : [[2 0]] + Elem_1202 1202.2 : [[2 0]] + Elem_1322 1322.2 : [[2 0]] + Elem_1442 1442.2 : [[2 0]] + Elem_1562 1562.2 : [[2 0]] + Elem_1682 1682.2 : [[2 0]] + Elem_1802 1802.2 : [[2 0]] + Elem_1922 1922.2 : [[2 0]] + Elem_2042 2042.2 : [[2 0]] + Elem_2162 2162.2 : [[2 0]] + Elem_2282 2282.2 : [[2 0]] + Elem_2402 2402.2 : [[2 0]] + Elem_2522 2522.2 : [[2 0]] + Elem_2642 2642.2 : [[2 0]] + Elem_2762 2762.2 : [[2 0]] + Elem_2882 2882.2 : [[2 0]] + Elem_3002 3002.2 : [[2 0]] + Elem_3122 3122.2 : [[2 0]] + Elem_3242 3242.2 : [[2 0]] + Elem_3362 3362.2 : [[2 0]] + Elem_3482 3482.2 : [[2 0]] + Elem_3602 3602.2 : [[2 0]] + Elem_3722 3722.2 : [[2 0]] + Elem_3842 3842.2 : [[2 -1.42109e-14]] + Elem_3962 3962.2 : [[2 1.42109e-14]] + Elem_4082 4082.2 : [[2 0]] + Elem_4202 4202.2 : [[2 0]] + Elem_4322 4322.2 : [[2 0]] + Elem_4442 4442.2 : [[2 0]] + Elem_4562 4562.2 : [[2 0]] + Elem_4682 4682.2 : [[2 0]] + Elem_4802 4802.2 : [[2 0]] + Elem_4922 4922.2 : [[2 1.42109e-14]] + Elem_5042 5042.2 : [[2 -1.42109e-14]] + Elem_5162 5162.2 : [[2 0]] + Elem_5282 5282.2 : [[2 0]] + Elem_5402 5402.2 : [[2 0]] + Elem_5522 5522.2 : [[2 0]] + Elem_5642 5642.2 : [[2 0]] + Elem_5762 5762.2 : [[2 0]] + .. GENERATED FROM PYTHON SOURCE LINES 155-157 Now it's time to process the profiling data .. GENERATED FROM PYTHON SOURCE LINES 157-180 .. code-block:: Python :dedent: 1 import pstats from pstats import SortKey if SPARSE: p = pstats.Stats('profile_data_sparse.txt') p.strip_dirs() #.sort_stats(-1).print_stats() p.sort_stats(SortKey.NAME) #p.print_stats() p.sort_stats(SortKey.CUMULATIVE).print_stats(20) p.sort_stats(SortKey.TIME).print_stats(20) else: p = pstats.Stats('profile_data_full.txt') p.strip_dirs() #.sort_stats(-1).print_stats() p.sort_stats(SortKey.NAME) #p.print_stats() p.sort_stats(SortKey.CUMULATIVE).print_stats(20) p.sort_stats(SortKey.TIME).print_stats(20) .. rst-class:: sphx-glr-script-out .. code-block:: none Thu Mar 20 08:48:17 2025 profile_data_full.txt 21646815 function calls (20989348 primitive calls) in 8.427 seconds Ordered by: cumulative time List reduced from 1351 to 20 due to restriction <20> ncalls tottime percall cumtime percall filename:lineno(function) 5 0.000 0.000 5.000 1.000 NewtonRaphsonSolver.py:116(assemble) 5 0.428 0.086 5.000 1.000 Solver.py:166(assemble) 1 0.000 0.000 4.814 4.814 System.py:504(solve) 1 0.000 0.000 4.814 4.814 NewtonRaphsonSolver.py:18(solve) 35/3 0.006 0.000 3.497 1.166 text.py:358(_get_layout) 43200 1.268 0.000 3.046 0.000 Triangle.py:80(updateState) 81/7 0.000 0.000 2.452 0.350 text.py:65(_get_text_metrics_with_cache) 9/4 0.000 0.000 2.452 0.613 text.py:73(_get_text_metrics_with_cache_impl) 10/4 0.009 0.001 2.451 0.613 backend_agg.py:206(get_text_width_height_descent) 2 0.000 0.000 2.246 1.123 Solver.py:397(checkResiduum) 24000 0.054 0.000 1.902 0.000 Element.py:273(getForce) 49/2 0.000 0.000 1.886 0.943 text.py:926(get_window_extent) 19200 0.074 0.000 1.842 0.000 Element.py:352(getStiffness) 72000 0.284 0.000 1.219 0.000 Triangle.py:159(computeSurfaceLoads) 4902 0.009 0.000 0.917 0.000 _axes.py:1532(plot) 663450/182418 0.395 0.000 0.917 0.000 copy.py:119(deepcopy) 216000 0.330 0.000 0.718 0.000 Face2D.py:54(computeNodalForces) 28800 0.048 0.000 0.689 0.000 Element.py:288(getLoad) 14706 0.036 0.000 0.645 0.000 lines.py:744(draw) 1 0.043 0.043 0.584 0.584 Solver.py:456(getNodalReactions) Thu Mar 20 08:48:17 2025 profile_data_full.txt 21646815 function calls (20989348 primitive calls) in 8.427 seconds Ordered by: internal time List reduced from 1351 to 20 due to restriction <20> ncalls tottime percall cumtime percall filename:lineno(function) 43200 1.268 0.000 3.046 0.000 Triangle.py:80(updateState) 5 0.428 0.086 5.000 1.000 Solver.py:166(assemble) 663450/182418 0.395 0.000 0.917 0.000 copy.py:119(deepcopy) 302400 0.357 0.000 0.450 0.000 numeric.py:876(outer) 1150018 0.335 0.000 0.335 0.000 {built-in method numpy.array} 1 0.332 0.332 0.332 0.332 _linalg.py:320(solve) 216000 0.330 0.000 0.718 0.000 Face2D.py:54(computeNodalForces) 72000 0.284 0.000 1.219 0.000 Triangle.py:159(computeSurfaceLoads) 9806 0.260 0.000 0.423 0.000 backend_agg.py:93(draw_path) 192082 0.217 0.000 0.481 0.000 Node.py:533(getDeformedPos) 43201 0.204 0.000 0.286 0.000 PlaneStress.py:28(updateState) 244800 0.167 0.000 0.221 0.000 Node.py:584(getIdx4Element) 192082 0.160 0.000 0.252 0.000 Node.py:341(getDisp) 218462 0.151 0.000 0.204 0.000 numeric.py:64(zeros_like) 1784484 0.117 0.000 0.117 0.000 {method 'append' of 'list' objects} 470592 0.114 0.000 0.163 0.000 copy.py:232(_keep_alive) 39338 0.094 0.000 0.105 0.000 __init__.py:65(check_isinstance) 68760/34414 0.090 0.000 0.182 0.000 transforms.py:2431(get_affine) 1300059 0.085 0.000 0.098 0.000 {built-in method builtins.isinstance} 14400 0.081 0.000 0.081 0.000 {method 'index' of 'list' objects} .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 8.373 seconds) .. _sphx_glr_download_auto_examples_plates_plot_plate10_profiler.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_plate10_profiler.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_plate10_profiler.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_plate10_profiler.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_