Creating a Mesh with Beam Objects in Anysis

  • Thread starter Thread starter engr86
  • Start date Start date
  • Tags Tags
    Beam Mesh
AI Thread Summary
To create a mesh with only beam objects in Anysis, it's essential to use the LMESH command on defined lines, ensuring the TYPE, REAL, and SECN parameters are set correctly. The process involves defining keypoints for intersections and drawing lines between them, followed by applying the appropriate section types. If the object is a volume or surface rather than a truss structure, beam elements cannot be used for meshing. Using the /ESHAPE command can help visualize the beam orientations, which is crucial for unsymmetric elements. Familiarizing oneself with the software through the help documentation and test cases is recommended for effective modeling.
engr86
Messages
2
Reaction score
0
I'm using anysis to model a 3-d object. I'm using a series of beams. however, when i try to mesh the beams, it says that it's unable to do that. When I add a shell, anysis meshes the model. How do I create a mesh with only beam objects?
 
Physics news on Phys.org
BEAM elements must be meshed on lines, using the LMESH command with the proper TYPE, REAL, and SECN set prior. The following is a full example of a static analysis using beam elements
Code:
/prep7

!--insert materials here
SECTYPE,1,BEAM,CSOLID
SECDATA,1.0,8,2

!--define geometry
k,,0,0,0
k,,10,0,0
l,1,2

!--mesh the line
type,1
real,1
secn,1
lmesh,1

!--boundary conditions
ksel,s,kp,,1
nslk
d,all,ux,0.0,,,,uy,uz,rotx,roty,rotz

ksel,s,kp,,2
nslk
f,all,fx,-100

allsel,all
/solu
antype,static
save
solve
save
finish

edit: You can use the command /ESHAPE,1 to turn on the element shaping which allows you to "see" what the beams look like. This can be important when you start using orientation nodes and need to see which way unsymmetric elements are facing. Good luck,
 
When you say a 3-D object, is it a truss structure with lines that are defined in 3-D? Beams can only be meshed to lines; if your object is a volume or surface, you cannot use beam elements to mesh it.
 
I'm trying to model a 3-d object (a frame with t-bars) and I thought that defining 3d beams would be the best way. Is there an easier way?
 
That's probably the easiest way. As mentioned though, you need to line mesh. Put keypoints [K,num,x,y,z] at all the intersections. Then draw lines from keypoint to keypoint [L,kp1,kp2]. Then, you define your sectypes as I mentioned above.

At this point, I'll give the obligatory RTFM for defining beam sections.

At that point, simply LMESH the lines, apply boundary conditions and solve. From the sound of it, you need to spend a few days and just go through the help, do some test cases, get accustomed to the software.
 
Thread 'SpaceX Starship development: 7th flight January 10'
Watch the progress live This is a fully stacked Starship (top) and Super Heavy (bottom). A couple of too-small-to-see cars near the bottom for scale, I also added a Saturn V and the Statue of Liberty for comparison. 120 meters tall, about 5000 tonnes when fully fueled. Twice the mass and over twice the thrust of Saturn V. The largest rocket ever built by mass, thrust, height, and payload capacity. N1 had the largest diameter.[/size] But its size is not the revolutionary part. It is designed...

Similar threads

Replies
0
Views
1K
Replies
6
Views
2K
Replies
2
Views
2K
Replies
7
Views
2K
Replies
9
Views
3K
Replies
13
Views
2K
Back
Top