.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/plates/plot_plate10_mixed_mesh_patch_test.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_mixed_mesh_patch_test.py: ========================================================================================================= Patch test for mixed mesh of triangular and quadrilateral plate elements under in-plane loading ========================================================================================================= PatchMesher test for the mixed mesh of triangular and quadrilateral plate elements. .. GENERATED FROM PYTHON SOURCE LINES 9-124 .. code-block:: Python import math import numpy as np from femedu.examples import Example from femedu.domain import System, Node from femedu.solver import NewtonRaphsonSolver from femedu.elements.linear import Quad, Triangle from femedu.materials import PlaneStress from femedu.mesher import * class ExamplePlate04(Example): def problem(self): # ========== setting mesh parameters ============== Nx = 7 # number of elements in the mesh Ny = 6 # number of elements in the mesh Lx = 100.0 # length of plate in the x-direction Ly = 80.0 # length of plate in the y-direction # ========== setting material parameters ============== params = dict( E = 20000., # Young's modulus nu = 0.250, # Poisson's ratio t = 1.00 # thickness of the plate ) # ========== setting load parameters ============== px = 10.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() model.setSolver(NewtonRaphsonSolver()) # create reference points pt0 = (0,0) pt1 = (0.5*Lx,0) pt2 = (Lx,Ly) pt3 = (0,Ly) pt4 = (0.25*Lx, 0.0) pt5 = (0.65*Lx, Ly/2) pt6 = (0.55*Lx, Ly) pt7 = (0.0, Ly/2) pt8 = (0.325*Lx, 0.55*Ly) pt9 = (Lx,0.0) mesher1 = PatchMesher(model, pt0, pt1, pt2, pt3, # corner nodes pt4, pt5, pt6, pt7, # mid-side nodes pt8) # center node #nodes1, elements1 = mesher1.triangleMesh(Nx, Ny, LinearTriangle, PlaneStress(params)) nodes1, elements1 = mesher1.quadMesh(Nx, Ny, Quad, PlaneStress(params)) mesher2 = TriPatchMesher(model, pt1, pt9, pt2, # corner nodes None, None, pt5, # mid-side nodes ) #mesher2.shift(1.25*Lx, Ly/2) nodes2, elements2 = mesher2.triangleMesh(Ny, Triangle, PlaneStress(params)) #nodes2, elements2 = mesher2.quadMesh(Ny, Triangle, PlaneStress(params)) # tie the patches together mesher1.tie(mesher2) nodes = nodes1 + nodes2 elements = elements1 + elements2 # 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 # ==== complete the reference load ==== for elem, face in model.findFacesAlongLine((Lx, 0.0), (0.0, 1.0)): face.setLoad(px, 0.0) #model.report() model.plot(factor=0, title="undeformed system", show_bc=1, show_loads=1) model.setLoadFactor(10.0) model.solve() #model.report() model.plot(factor=25.) model.valuePlot('sxx', show_mesh=1) model.valuePlot('syy', show_mesh=1) model.valuePlot('sxy', show_mesh=1) .. GENERATED FROM PYTHON SOURCE LINES 144-146 Run the example by creating an instance of the problem and executing it by calling :py:meth:`Example.run()` .. GENERATED FROM PYTHON SOURCE LINES 146-152 .. code-block:: Python if __name__ == "__main__": ex = ExamplePlate04() ex.run() .. rst-class:: sphx-glr-horizontal * .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_001.png :alt: undeformed system :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_001.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_002.png :alt: Deformed System (magnification=25.00) :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_002.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_003.png :alt: Contours of '$\sigma_{xx}$' :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_003.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_004.png :alt: Contours of '$\sigma_{yy}$' :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_004.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_005.png :alt: Contours of '$\sigma_{xy}$' :srcset: /auto_examples/plates/images/sphx_glr_plot_plate10_mixed_mesh_patch_test_005.png :class: sphx-glr-multi-img .. rst-class:: sphx-glr-script-out .. code-block:: none + .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.293 seconds) .. _sphx_glr_download_auto_examples_plates_plot_plate10_mixed_mesh_patch_test.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_mixed_mesh_patch_test.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_plate10_mixed_mesh_patch_test.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_plate10_mixed_mesh_patch_test.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_