Questions tagged [finite-element-analysis]

Anything related to finite element analysis or finite element methods (FEMs), i.e. a number of advanced numerical analysis techniques for finding approximate solutions of differential equations. FEMs are heavily used in many branches of engineering, for example to simplify the design phase of a project.

The methods transform the differential equation into a weak form over the problem domain, which is then discretized by a set of elements (e.g. a triangle-shaped plate or quadrilateral shells). This allows for a per-element approximation of the solution and an assembly of global quantities by local quadrature rules, resulting in a possibly nonlinear system of equations. For large problem statements, finding a solution might require parallel computing strategies.

Many areas of engineering profit from these techniques, e.g. solid and structural mechanics on various time- and size-scales, electrical field theory or diffusion problems, and there are plenty of (free) software solutions available. In scientific computing, users regularly need to extend the method by custom element formulations or new solution procedures, which is often done in fortran, c++ or python.

See also the Wikipedia page on FEMs.

235 questions
0
votes
2 answers

Use Matlab trisurf to plot element-wise quantity

Usually, trisurf is used to plot nodal quantity on a triangular mesh. However, I would like to plot some element-wise quantity using the following command. trisurf(t,p(:,1),p(:,2),elewise_quantity,'edgecolor','k','facecolor','interp'); Where…
lorniper
  • 626
  • 1
  • 7
  • 29
0
votes
0 answers

Read .txt file value after a certain string (Matlab)

I'm trying to obtain the displacements of a node from an FEA .txt results file using matlab. I want to search for the node (e.g. 5151) and then read the displacements, the problem is the node is mentioned a couple of times before getting to the…
user2739143
  • 591
  • 2
  • 8
  • 13
0
votes
2 answers

Ansys multiphysics: blank output file

I have a model of a heating process on Ansys Multiphysics, V11. After running the simulation, I have a script to plot a temperature profile: !---------------- POST PROCESSING ----------------------- /post1 ! tdatabase …
raggot
  • 992
  • 15
  • 38
0
votes
2 answers

How to apply force or line load in an angle in ABAQUS

A question in ABAQUS (may seem very basic). How to apply concentrated force or line load at an angle in ABAQUS? ABAQUS only gives option to specify components in X, Y, Z directions for a concentrated force. So resolving force is only option? Can…
user3519733
  • 79
  • 2
  • 9
0
votes
1 answer

How to model beam on elastic foundation in ABAQUS

I am trying to model a simple 2D beam on elastic foundation in Abaqus. How to do this in ABAQUS? Any ideas or help?
user3519733
  • 79
  • 2
  • 9
0
votes
1 answer

How to model this geometry in ABAQUS CAE?

I am modeling a composite cube block with spherical particle and spherical interphase around particle. I can simplify two spheres to two cubes. I am trying to model particle inclusion and interphase in a composite material. I am taking matrix as a…
user3215074
  • 103
  • 1
  • 2
  • 7
0
votes
2 answers

Error installing Cgal-bindings Python

No matter what method i try, the installation of Cgal-bindigs stops and gives me the next problem: make[2]: *** No rule to make target «/usr/lib/libboost_thread.so», needed for «/usr/lib/libCGAL_Kernel_cpp.so». Stop. make[1]: ***…
CCP
  • 153
  • 9
0
votes
1 answer

Matlab slow performance using closures

I'm coding a solution for Poisson equation on a 2d rectangle using finite elements. In order to simplify the code I store handles to the basis functions in an array and then loop over these basis functions to create my matrix and right hand side.…
0
votes
1 answer

Use python to search text document with columns

we are some engineer students, who have to use finite element to compute a simulation - our project is to find all the nodes on the edge of the object, and compare them to a defined line We have no python experience and have been reading about a…
0
votes
0 answers

Binary operations and Simple Solver

I'm making a small demo to suggest Qt and OSG at my company to make some things easier to everyone working with me. But I need to do it rather quickly. I need a library for 2D and 3D binary operations on 2D and 3D geometry that will give a result…
Dmitry K.
  • 313
  • 3
  • 17
0
votes
1 answer

Sparse Blas in Fortran 95

I want to use the Sparse Blas in Fortran95 just for the creation of the matrices and I am using the point entry construction. After creation of the matrix using the command call duscr_begin(n,n,a,istat) here a is the handle to the matrix n by n.…
-1
votes
0 answers

Write a VTK file of an FE model from an ABAQUS inp file

I have a very simple FE model, a cube created in abaqus meshed with 3D linear tetrahedral elements (C3D4 elements). I am trying to write a VTK file from an abaqus .inp file and visualise it Paraview. I want to do this because I have many complicated…
-1
votes
1 answer

How can I modify my Abaqus python code to only extract nodeset coordinates?

Using several example scripts found online, I have managed to extract the coordinates of an Abaqus simulation from the .odb file. However, I would like to only extract the coordinates of a certain nodeset e.g. a nodeset called "NS-1". Information on…
-1
votes
1 answer

Abaqus moving reaction front for a buckling Plate

I am trying simulate lithiation of a beam in Abaqus, where during this process, a plate buckles. I partitioned 3 section of the plate where the top and bottom represent the lithiated material ( different material properties) and the middle section…
-1
votes
1 answer

Advice for the ML model for the replacement of an engineering design software

I have some ideas in the optimization of the design stage of an engineering structure (like a wall). Conventional design methods are really time-consuming if I need to run the finite element-based engineering software several times to find the…
1 2 3
15
16