Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. tlemonds

    Surface temperatures of shell elements?-NX NASTRAN THERMAL

    Upon inquiry to Siemens, I have found out the only way to do what I intend is to model everything as CHEXA's instead of CQUAD4's.
  2. tlemonds

    Surface temperatures of shell elements?-NX NASTRAN THERMAL

    Upon further investigation, I've found that my log file is reporting the exact same number of degrees of freedom as I have grid points. That would seem to suggest that I only have one degree of freedom per grid point. If that is the case, I would think only in-plane conduction is taking place...
  3. tlemonds

    Surface temperatures of shell elements?-NX NASTRAN THERMAL

    Hey guys, I am using the NX NASTRAN non-linear transient thermal solver to analyze some metallic and composite near-firezone structures. Post-processing in FEMAP. I have everything modeled as plate elements and I'd like to keep it that way. Does anyone know how to (if possible) display/output...
  4. tlemonds

    Using Check Sum Forces in API

    Got it to work the way I wanted but just ONE thing! So I have the Check Sum Forces running through all selected nodes and all load sets. However, I would like to add the ability to select a specific range of load sets in the same manner that I selected a specific range of nodes. However, FEMAP...
  5. tlemonds

    Using Check Sum Forces in API

    Dissecting your suggested code right now. What does the "<>" do in this portion of code? While set1.Select(FT_NODE,False,"Select nodes") <> FE_CANCEL set1.Reset ReDim coord(2)
  6. tlemonds

    Using Check Sum Forces in API

    Thanks for the quick response! I was able to get it running after my initial post. After working with someone in the office I saw how many obvious mistakes I was making! Anyway, I can get the Check Sum Forces tool to run now but not in the manner I was hoping to use it. Yes, I am simply trying...
  7. tlemonds

    Using Check Sum Forces in API

    Hey folks! I'm attempting to use the Check Sum Forces tool in my API script. I'm a bit of rookie writing VBA but I have a little experience--but I have no experience writing VBA in the FEMAP API (as my pasted code probably shows). The goal of the script is to prompt the user to select a range...
  8. tlemonds

    Thicken multiple &quot;disjoint&quot; faces

    Hey guys, Is there any way to Thicken a set of "disjoint" faces? I have a wing structure model that is all sheet bodies which I use for doing 2D shell elements and structural analysis. However, I now need to Thicken these sheet bodies in my .prt files to their appropriate thicknesses so that I...
  9. tlemonds

    Import loads by global coordinates?

    I figured it out the other day but you guys would probably consider it a "work-around". I imported the coordinates where I wanted to apply the loads as points into the idealized part file which then showed up in the FEM file. Selected each point and made it a mesh point. Then used the force card...
  10. tlemonds

    Import loads by global coordinates?

    For now, I think going with the "load cards" method would be best from a learning curve standpoint (at least from how you described it). The coordinates where these loads are located already being generated in order to create certain geometry within the CAD model and they will always occur at...
  11. tlemonds

    Import loads by global coordinates?

    Hey guys, I have some general FEA experience using ANSYS during my undergrad. Mech Eng education but I am now trying out NX NASTRAN for the first time. Is there a quick and easy way to import a set of loads by global coordinates? I was imagining basically a text file with 4 columns and as many...
  12. tlemonds

    &quot;Talking&quot; between Excel &amp; NX with VB?

    Mark, Thanks for the reply! Yeah, I figured with my current knowledge I should be able to handle the coding I just wasn't sure what commands did the actual "communicating" between the spreadsheet and the part file. I'll take a look at the documentation you suggested and see if I can figure it...
  13. tlemonds

    &quot;Talking&quot; between Excel &amp; NX with VB?

    Hey guys, So a few months ago I posted some questions about how to get started with VB in NX. You guys gave me some great tips and even provided me with example code! I'm now familiar enough with VB where I've written a few simple scripts to run in NX and a few scripts to run in Excel as well...
  14. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    Frank, Thanks for yet another response! Your recommended changes above still results in a repeat of header1 and header2 for every point. I would like for "Control Point Coordinates (inches) --- X Y Z" to occur just once at the first line of the text file. I do still want the "Control Point "...
  15. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    Frank, Due to some unavoidable issues with using a point set, I have been forced to instead create a set of separate points that I need to extract the geometry of. I adjusted my VB code to take/collect these points. However, it is not writing the coordinates to the text file as desired. For 16...
  16. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    Frank, Thank you so much! As I suspected, I was defining my point set incorrectly it would seem (among several other minor things). I follow your procedure, how you basically call the entire set of features and then with your "For Each..." section you extract only the feature that is a point...
  17. tlemonds

    Extract coords from point set in NX and write to text/Excel

    Hey guys, I have a pre-defined point set in my NX part file that contains 16 points and I have it titled as "pointset1" within my part file. I am attempting to write/execute a VB code that will extract the global coordinates from those 16 points and write them to a text file for convenient...
  18. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    Frank, Had some time to work on this again today and I'm taking a crack at writing my own VB code/script (not sure what the proper terminology is) which is pasted below. First off, I did not simply copy and paste the sections of your code that I thought were applicable, but I actually thought...
  19. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    Thanks for the replies guys! 3DDave, those links provided the perfect summary of what all my options are. I think for now I am going to go the route of Journaling the sequence of what I want to accomplish and then augmenting that script in VB. It is really cool how the Journal feature writes...
  20. tlemonds

    Which should I use - NX Open GRIP, Python, VB, etc.... ?

    I am in the need of some kind of script (and thus scripting language) to execute my project but I am a bit overwhelmed by the amount of coding languages NX supports and I don't know where to start. Currently, I am simply trying to write a script that extracts coordinates of a set of points in my...
Back
Top