BriefFiniteElementNet / BriefFiniteElement.Net

BriefFiniteElementDotNET (BFE.NET) is a library for linear-static Finite Element Method (FEM) analysis of solids and structures in .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to define constrains in local coordinate system (skewed support)?

Georgerdx opened this issue · comments

Hello,

I just have a question about creating constraints.
I would like to create constraints in other than global coordinate system. Is that possible?

Example: I have a 3D beam which is not parallel to any axis of the global coordinate system. I would like to define X and Y direction relaxed and Z direction fixed in the direction of the beam. How would I define this in the code?

Thank you
Best regards
Juraj

I think what you mean is skewed support like the image below (node number 3)
Unfortunately, that is not implemented in the library...

image

But you can get approx result with some tricks which can increase complexity of your code.
for example use a strong truss element instead of skewed support like this (red element is perpendicular to skewed support axis). Also note that this solution is approx, also can increase the complexity of your code

image
this way

thanks

inactivity