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. rbas85

    How to get the centroid of all elements of a group in VB.NET

    Dears, I'm trying to translate my vba for excel macro in VB.NET. Hear goes a snippet of my code in VB.NET: Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim App As femap.model App = GetObject(, "femap.model") Dim cgXYZ As Object...
  2. rbas85

    How to make nodes visible

    I'm using the version 6.14-1. How do I know if I have all fix packs installed? I'm having this problem in preprocessing. Every time I select them (for create a display group or a set, for example)I cannot see them highlighted. I know they were selected because in the message area, I see how many...
  3. rbas85

    How to make nodes visible

    Would anyone know how to tell me how to make the nodes visible every time I select them? In my ABAQUS, the nodes are not visible, for example, when I create a set for them. When I display the group for theses nodes, those are not highlighted. I do not have this problem with elements or surfaces.
  4. rbas85

    VM Stress At Element

    I could list those values, but I don't know how to do it, since I'm having problems with the declaration of the variable "values".
  5. rbas85

    VM Stress At Element

    I'm trying to get the Von Mises Stress of elements 1 to 50, but my API code is not working. I get the error "run-time error 13 – Type mismatch". Follow a code that I copied from Iberisa to get what I want: Sub Main() Dim App As femap.Model Set App = GetObject(, "femap.model") Dim fOS As...
  6. rbas85

    Getting the number of the element of a group

    Thanks! I found out my error. In "rc = olel.AddGroup(FT_ELEM, grID)", I should have written "grpID" instead of "grID".
  7. rbas85

    Getting the number of the element of a group

    I'm new to FEMAP API tools. I'd like to know how can I get the number of the elements of a group. I'm asking that because I'd like to loop through all elements of a determined group, save the number of these elements on a sheet and get their properties. I'm posting my code below: Sub...
Back
Top