Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
2 replies
43 views

I want to try out structure design. What i've done by far is a SCAD model for four trays and a cover above them. // PARAMETERS Length = 2000; Width = 225; Height = 38; Wall = 2; CoverThickness = 5; ...
jorge is not ai's user avatar
0 votes
0 answers
25 views

I've been trying to convert this wireframe into a solid 3d model for finite element analysis and I'm just lost. Here's the code and an image of the wireframe and thank you for your help :) : ...
atomic-coder's user avatar
0 votes
0 answers
40 views

I am trying to estimate the time complexity of an FEM simulation, that solves the normal contact between a biphasic block and an rigid indenter. Say the block has a mesh with N x N x M nodes and the ...
Peter Uwson's user avatar
2 votes
1 answer
142 views

How do I solve a nonsymmetric eigenproblem. In terms of scipy.sparse.linalg.eigsh the matrix needs to be "real symmetric square matrix or complex Hermitian matrix A" (https://docs.scipy.org/...
SleepyGary's user avatar
0 votes
1 answer
151 views

I'm using GMSH through Python API to create a structured quadrangular mesh to perform FEM analysis of an ascending aorta for my master thesis. I have definied, on the surface of my geometry, ...
Sofia Di Filippo's user avatar
0 votes
1 answer
187 views

Goal is to solve my previous question Generate a mesh from my polygon geometry to iterate FEM for geometry optimization? by myself using Gmsh I've installed Gmsh (also) 4.12.2 using pip on macOS 10.15....
uhoh's user avatar
  • 3,835
2 votes
0 answers
475 views

The 2D script below generates polygons in a box, which represent a cross-section of three cylindrical rings parallel to the z axis which will have voltages applied. I'll solve the Laplace equation in ...
uhoh's user avatar
  • 3,835
0 votes
1 answer
236 views

In the following, does "mesh_size" refer to the maximum perimeter or maximum area of each element? with pygmsh.geo.Geometry() as geom: geom.add_polygon( [ [0.0, 0.0], ...
HIH's user avatar
  • 101
0 votes
1 answer
950 views

I'm working on a project that creates and manipulates meshes on geometric objects using the finite element method. So far, the user imports a file (.step) and selects areas of the object to create ...
lucasteix's user avatar
1 vote
1 answer
199 views

From the Gridap.jl tutorial, I am struggling to compute the Von Mises stresses. I would love to get the feedback from the community on how to compute the Von Mises Stresses in the correct way. In this ...
Mattia Samiolo's user avatar
0 votes
1 answer
49 views

I'm writing a Finite element method based on Whitney p-forms, where the solution coefficients are defined on edges and faces. For example, the electric field can be approximated as vec(E) = sum e_i ...
Kristoffer Lindvall's user avatar
2 votes
1 answer
80 views

I'm currently implementing the Galerkin-Method for finite Elements by hand and using python gekko to solve the resulting non-linear algebraic equation system. This creates no issues for small systems ...
The_One_And_Only's user avatar
1 vote
1 answer
298 views

I'm currently doing FEM calculations in java on very large square matrices with sizes up to 1M x 1M. These are very sparse though with under 10M entries. I'm using ojAlgo with the SparseStore matrix ...
Jakob Rainer's user avatar
0 votes
0 answers
111 views

I have been having trouble solving a coupled set of PDEs in mathematica (electrical current flow), and the issue appears to be in the boundary conditions. Specifically, I have PDES as follows: sum_{i} ...
Rain's user avatar
  • 375
1 vote
0 answers
147 views

I am currently working on solving the problem $-\alpha u'' + \beta u = f$ with Neumann conditions on the edge, with the finite element method in MATLAB. I managed to set up a code that works for P1 ...
MagicLudo's user avatar
0 votes
1 answer
3k views

i need to create a piece-wise function inside an interval but sympy piecewise can't use and (&). I read that the function can't recieve Boolean values so I tried to add them together and it doesn'...
Or Milo's user avatar
0 votes
1 answer
141 views

I'm coding a programme about FEM and here is my code FEM_2D_TRI_QUA_1.m N1=2; N2=2; N=2*N1*N2; top=1; bottom=0; left=0; right=1; h1=(right-left)/N1; h2=(top-bottom)/N2; T=zeros(3,2*N1*N2); N10=N1+1; ...
YuerWu's user avatar
  • 11
0 votes
1 answer
444 views

I am trying to find the shape function for a finite element analysis problem in MATLAB. The basic shape function looks like, with the boundary condition on the left. At Ni=N1, x=x1, y=y1 (the ...
Faito Dayo's user avatar
2 votes
0 answers
65 views

I am working on a plotter for Finite Element Method solutions. I decided to use the Plotly library because of the carpet plots. I have my data to plot and this is my result: Flow over NACA0012 Each ...
Daniel Bulgarini's user avatar
1 vote
1 answer
1k views

Problem summary I have a rectangular prism like in the image below where I know the coordinates of the vertices. I want to discretize the lateral faces of the prism into an unstructured surface mesh ...
fma's user avatar
  • 319
0 votes
0 answers
729 views

I'm coding a few programs to study structural dynamics problems, and I'm trying to understand how to estimate and minimize accumulated error over time for large-time scale calculations. An explicit ...
freestatelabs's user avatar
0 votes
0 answers
259 views

EDIT: See solution in the full code, following @bgb2's comment. I'm currently trying to code a Finite Element Analysis to solve a 2D heat conduction problem. For now I'm looking at the steady state ...
Sorade's user avatar
  • 935
0 votes
0 answers
137 views

I am trying to analyse a large structure with multiple loading scenarios (independent - different loading directions), while considering geometric non-linearity. Using different steps is not ...
Aravind's user avatar
0 votes
1 answer
388 views

I am solving a contact problem. A footing under compressive load placed over soil. I would like to use two different types of user-defined elements one for the soil and other for the footing. Please ...
Mr Thomas Anderson's user avatar
1 vote
1 answer
1k views

I’m trying to develop an real-time wind turbine simulation Finite Element Analysis software using three.js to display the caculated 3D FEA results. Like the image one frame of FEA result.the showed 3D ...
alex zhang's user avatar

1
2 3 4 5