×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Applying multiple bolt loads and get a better mesh

Applying multiple bolt loads and get a better mesh

Applying multiple bolt loads and get a better mesh

(OP)
Hi,
I am trying to build a model of a basement of a wind turbine which I will use in my bachelor thesis. I have two issues with the model:

I'm trying to apply mutliple bolt loads on 192 bolts. I am only able to apply one bolt load at a time. I already selected all bolts at the same time, but Abaqus gives me a warning.





Another issue I have is the mesh. I am not really happy with my actual mesh. I tried to partition the part further, but he mesh still looks arbitrary.



Thanks a lot,
Jan

RE: Applying multiple bolt loads and get a better mesh

What's your question?

RE: Applying multiple bolt loads and get a better mesh

(OP)

Am I able to apply multiple bolt loads at the same time? And which method is the best for not getting this warning showed in my first post.

Do you have any advise to get a better mesh? It looks really arbitrary and further partitioning lead to a worse mesh.

I would really appreciate any kind of help.

Best regards,
Jan

P.S.: I attached the .cae file of my model.

RE: Applying multiple bolt loads and get a better mesh

In the past I have used a for loop to apply loads to multiple bolts because of this warning. I was using wires for bolts. The code is below, you may be able to modify it to suit your application.

CODE --> Python

#instance bolts and couple to flat diameter
for n in range(NB/4):
	x=cos(pi/180*(360/(2*float(NB))+n*360/float(NB)))*C*0.5
	z=sin(pi/180*(360/(2*float(NB))+n*360/float(NB)))*C*0.5
	y=t+rf
	
	#place bolt
	bolta=myModel.rootAssembly.Instance(dependent=ON, name='Bolt-%s' % str(n+1),part=bolt)
	bolta.translate((x,0,z))
	
	#bolt loads
	bmid=bolta.edges.findAt(((x,0.5*y,z), ))
	bloc=myModel.rootAssembly.Surface(end1Edges=bmid, name='Surf-%s' %str(n+1))
	myModel.BoltLoad(boltMethod=APPLY_FORCE, createStepName='Bolt Up'
    , magnitude=SAb*RA, name='BoltLoad-%s' %str(n+1), region=bloc) 

It is tough to comment on the mesh just from the photo. My latest version of Abaqus is 6.14-1, so I cannot open your CAE. Photo below shows my first thoughts on the mesh.

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources