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

    Alternative Contour Plots

    Hi jacasalr, For sure you can solve this task using Femap API. In general, your need to create a new output vector based on the post-processed data from another calculated result vector/s. Actually, in femap/customtools panel there are a lot of scripts for data post-processing, you can...
  2. ship_sftwr_dev

    Pull freebody summation load from FEMAP to Excel using feFreebody - FE_NOT_EXIST error

    Hi Vu Hoang, As you got RC code 4, it means FE_NOT_EXIST (see Return Codes part in Femap API manual). So probably, the method feFreebody.GetSumAtNode can't find some of Femap entities. It can be: feFreebody doesn't have freebady object itself, or SumNodeID has the wrong node ID. And...
  3. ship_sftwr_dev

    Femap API NASTRAN File Format

    Hello trough57, in that API script file, you can see such code line "aSet.NasBulkLargeField = 3 'Write Large Field" you can find this code in lines #235 and #296 of your file. Instead of "= 3" put "= 0" - the value "0" corresponds to a Small field format. then save this script and run it...
  4. ship_sftwr_dev

    FEMAP API - feSurfaceRevolve Parameter Help

    zanestoy, I guess the main your mistake there, that execution of this method line1 = App.feLinePoints(False,c1,c2,True) will give you just return code (rc in TG_eng code example) in the variable "line1". Like -1 if it was done successfully or other return code value if something wrong, but not...
  5. ship_sftwr_dev

    FEMAP API Separate script into different files

    Hello Ilya, If you use vb.net (maybe with some IDE like MS Visual Studio) you can create the code structure using classes / modulus / functions etc. (with the Femap API code inside of those code blocks) on the side of VB.net. After all such solution can be easier to support later (by my...
  6. ship_sftwr_dev

    VM Stress At Element

    rbas85, your code looks correct and should work just if you are using MS VBA (Excel) as an IDE and if you are sure that you have calculated results vector 7033 in the OutputSet ID #1, for elements IDs 1-50. For sure it will call an error regarding variable types if you use pure vb.net in MS...
  7. ship_sftwr_dev

    Getting the number of the element of a group

    Hi rbas85, if you did an external FEMAP API program and has plenty (hundred thousand) of elements in your group, your loop based on olel.Next() can slow down the program execution speed/time. So if you will meet such an issue, you can try to use el.GetAllArray(... ) method. This method records...
Back
Top