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!

Search results for query: *

  1. JaStKn

    How to make a spline with more than 6 keypoints in a 'spline' command?

    Try to follow this code: !########################## fini /cle /prep7 csys,1 ! -> Making n Keypoints n_=20 k,1:n_,1,1:n_ !Write Spline Macro *cfopen,spl_ine,mac *cfwrite,FLST,3,n_,3 *do,i_,1,n_ *cfwrite,FITEM,3,i_ *enddo *cfwrite,BSPLIN, ,P51X *cfclose !Spline with n_ points...
  2. JaStKn

    Select only meshed surfaces?

    The undocumented "asle" command select (s,u,a,r) areas wihch are meshed. .... Stefan
  3. JaStKn

    Modeling Flexible Spot Weld in Workbench or Classic Ansys

    Hi! I believe you can insert very easy a "point" feature in the ansys design modeler. Workbench creates automatically a spot weld from this points. I will have a look at ANSYS at work tomorrow. Best Regards .... Stefan.
  4. JaStKn

    working plane

    Nodal forces are applied in nodal coordinate systems! You have to rotated the node coordinate systems via nrot command in to your local coordinate system! Best Regards Stefan.
  5. JaStKn

    Importing displacement boundary conditions.

    Hi! First you have to read the file into ANSYS. The best way is the usage of the *tread command to do this. *vread or *mread are the other ways. By using the *tread command you do'nt have to define the format of the file :o) Of course you must define a table or an array before reading the...
  6. JaStKn

    ansys nomber of nodes

    The *get command is the most powerful ANSYS APDL command! Always look in the help (help,*get)! You can get a lot (almost all) informations of ANSYS database with the *get command! *get,n_num,node,,count !count of nodes *get,n_max,node,,num,max !maximum node number (selected)...
  7. JaStKn

    Problem with AOVLAP,,,,Help

    Ok. What you are trying can't work. Area 4 belongs to volume 1 and area 7 to volume 2. What you need is the vglue command. finish /clear /prep7 blc4,0,0,10,10,10 wpoffs,5,10,5 wprot,0,-90,0 cyl4,0,0,2.5,360,5,360,10 allsel vglue,all ready :o) But attention! You get some bad (peaked)...
  8. JaStKn

    Problem with AOVLAP,,,,Help

    It must be work! alls cm,atmp,area asel,s,,,1,5 cm,a_save,area aatt,,100 aovlap,all asel,s,real,,100 cmsel,r,a_save !-> unmodified input areas asel,inve cmsel,u,atmp !-> new areas May be ANSYS destroy components during the boolean operation. hmmm. There is an other way to save...
  9. JaStKn

    Using the CEINTF Command

    To connecting two ore more parts with different meshes, the better way is the use of bonded contact with mpc-algorithm. These elements create also constraint equations but these equations will be updated at each iteration. Standard ces are the same at all time. If you have large deformations /...
  10. JaStKn

    Problem with AOVLAP,,,,Help

    Hi! 1.)If you use numstr,area,arinqr(0,14)+1 the resulting area numbers beginning with the maximum area number plus one. 2.) New areas have none attributes. If you give the input (unmeshed) areas an attribute (real,mat,type,esys or secn) with the aatt command, the new area attributes are...
  11. JaStKn

    how to create my own imposed displacement field

    You have worked with arrays before? For example you have 10 nodes. (node numbers are: 11,16,27,101 ...). You can define a vector with the *dim comand. *dim,name,array,10,2 and fill the vector with node numbers and contraints. may be: name(1,1)=11 name(1,2)=0.1 name(2,1)=16 name(2,2)=0.2...
  12. JaStKn

    Listing the Node Coordinates along with Solutions in the same file

    Also you can sort the matrix with the *MOPER command with SORT option!
  13. JaStKn

    Listing the Node Coordinates along with Solutions in the same file

    Hi! You can create your own file. For your example copy the following lines in to the ANSYS input line! LSEL,S,,,1 NSLL,S,1 *create,hhhh,mac !maximum node number *get,n_max,node,,num,maxd !node count *get,n_num,node,,count !temporary array list_tmp=...
  14. JaStKn

    Starting an Ansys Batch Run from VBA

    Hi! I am looking for an Inputstream to start an Ansys Batch Run from Visual Basic for Application. Can anybody help me? Thanks.
  15. JaStKn

    Contact problem

    Are your contact pairs ok? Contact and target elements must have the same realconstants! esel,s,real,,? Also looking for the elementnormals of the contact elements! esel,s,real,,? /psym,esys,1 They must be opposed!
  16. JaStKn

    Get index values from table array

    Sorry, but I can't understand your problem? It's so easy! parameter1=table(0,0); parameter2=table(0,1) and so on. Where is the problem?
  17. JaStKn

    VBA-PowerPoint : Picture ID ?

    Hi all! I have many Pictures on many Slides. I have selected 3 pictures on a Slide with altogether 10 pictures and will saving the PictureID from each of the 3 objekts in variables with a Do-Loop. How can I do this? To get SlideIDs I do the following: (indnum =...
Back
Top