You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Download example static results of reference and integrated points for extrapolation of 3d-element and return return the dictionary of 2 download paths.
312
+
313
+
Examples files are downloaded to a persistent cache to avoid
314
+
re-downloading the same file twice.
315
+
316
+
Returns
317
+
-------
318
+
dict
319
+
containing path to the example file of ref and path to the example file of integrated points.
320
+
321
+
Examples
322
+
--------
323
+
Download 2 example result files and return the dictionary containing 2 files
This example shows how to compute the nodal components stress from Gaussian points (integration points) for 3D-element by using the method of extrapolation.
7
+
Extrapolating results available at Gauss or quadrature points to nodal points for a field or fields container. The available elements are : linear quadrangle, parabolic quadrangle, linear hexagonal, quadratic hexagonal, linear tetrahedral, quadratic tetrahedral.
8
+
9
+
1st step : get the data source's analyse of integration points(this file was add the commands APDL "EREXS, NO").
10
+
11
+
2nd step: using operator of extrapolation to compute the nodal stress.
12
+
13
+
3rd step: get nodal stress result from data source's analyse reference. The analyse was computed by ANSYS Mechanical APDL.
14
+
15
+
4th step: compare the results between nodal stress from data source ref and nodal stress computed by Extrapolation Method.
# The command "ERESX,NO" in Mechanical APDL is used to copy directly the gaussian (integration) points results to the nodes, instead of the results at nodes or elements (which are interpolation of results at a few gauss points).
60
+
# The following plot shows the nodal values which are the averaged values of stresses at each node. The value shown at the node is the average of the stresses from the gaussian points of each element that it belongs to.
This example shows how to compute the nodal components elastic strain from Gaussian points (integration points) for 2D-element by using the method of extrapolation.
7
+
Extrapolating results available at Gauss or quadrature points to nodal points for a field or fields container. The available elements are : linear quadrangle, parabolic quadrangle, linear hexagonal, quadratic hexagonal, linear tetrahedral, quadratic tetrahedral.
8
+
9
+
1st step : get the data source's analyse of integration points(this file was add the commands APDL "EREXS, NO").
10
+
11
+
2nd step: using operator of extrapolation to compute the nodal elastic strain.
12
+
13
+
3rd step: get nodal elastic strain result from data source's analyse reference. The analyse was computed by ANSYS Mechanical APDL.
14
+
15
+
4th step: compare the results between nodal elastic strain from data source ref and nodal strain computed by Extrapolation Method.
# The command "ERESX,NO" in Mechanical APDL is used to copy directly the gaussian (integration) points results to the nodes, instead of the results at nodes or elements (which are interpolation of results at a few gauss points).
54
+
# The following plot shows the nodal values which are the averaged values of elastic strain at each node. The value shown at the node is the average of the elastic strains from the gaussian points of each element that it belongs to.
0 commit comments