BriefFiniteElementNet / BriefFiniteElement.Net

BriefFiniteElementDotNET (BFE.NET) is a library for linear-static Finite Element Method (FEM) analysis of solids and structures in .NET
https://www.bfe-framework.net
GNU Lesser General Public License v3.0
153 stars 58 forks source link

Add element force #35

Closed peacelvirene closed 4 years ago

peacelvirene commented 4 years ago

Hi, epsi1on, how to add these types of element forces? image for type C,I add like this

var u1 = new BriefFiniteElementNet.Loads.UniformLoad(
    LoadCase.DefaultLoadCase,
    -BriefFiniteElementNet.Vector.K,
    elmForce.QZ1 * 1000,
    CoordinationSystem.Global);
elm.Loads.Add(u1);

for type B, I add like this

var u1 = new BriefFiniteElementNet.Loads.UniformLoad(
    LoadCase.DefaultLoadCase,
    -BriefFiniteElementNet.Vector.K,
    elmForce.QZ1 * 1000,
    CoordinationSystem.Local);
elm.Loads.Add(u1);

that' right? and how to add the type A ?

epsi1on commented 4 years ago

Hi, I've updated the example on documentation: https://bfenet.readthedocs.io/en/latest/example/UniformLoadCoordSystem/index.html

there is third example where is same as your A case (you may need to clean browser cache to see third example)

peacelvirene commented 4 years ago

thanks!