Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ansys APDL cylindrical surface 1

Status
Not open for further replies.

WillBerg

New member
Jan 31, 2018
5
0
0
RO
Hi,

how can a cylindrical surface be programmed in Ansys APDL, in cylindrical coordinates? I try to assamble one with a,,,, command,from sectors, but no matter in how many sectors I divide it(2, 3, ...80) it throws an error "circle trying to span greater than 180 degrees" and fails to generate one of the areas.

Thanks!

engtips_llgcj9.png
 
Replies continue below

Recommended for you

Hi McWhite3,

See if either of this works for you...
Code:
! Using ADRAG
/prep7
r = 0.1
L = 0.3
csys, 1 
k, 1, r, 0
k, 2, r, 120
k, 3, r, 240
l, 1, 2
l, 2, 3
l, 3, 1

k, 4, r, 0, L
l, 1, 4 ! path
adrag, 1, 2, 3,,,, 4

! Alternately using A...
! But first delete existing lines and areas
alls
adele, all
ldele, all
a, 1, 2, 6, 5
a, 2, 6, 7, 3
a, 3, 7, 5, 1


Kind regards,
Jason
 
Here's another way:

csys,1
cyl4,0,0,0,0,1,360,12
vdele,all
asel,s,loc,z,0
asel,a,loc,z,12
adele,all
allsel
aplo

Rick Fischer
Principal Engineer
Argonne National Laboratory
 
Status
Not open for further replies.
Back
Top