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. Sri Harsha

    Very Huge ODB File of size 10 GB

    @Mousaine3: Hi, My above script only works for ABAQUS 2014 Version. I think,you may be using some other version of ABAQUS.Is n't it?
  2. Sri Harsha

    Very Huge ODB File of size 10 GB

    Hi Cooken, Thanks for your reply. So,If in my model,I only need Vonmisses stress and displacement value for every timestep I just need to below Macros right? mdb.models['Model-1'].fieldOutputRequests['S'].setValuesInStep() mdb.models['Model-1'].fieldOutputRequests['U'].setValuesInStep() And...
  3. Sri Harsha

    Very Huge ODB File of size 10 GB

    Hi, I have the following script,which generates an ODB File. My model is a simple Structure,consisting of circular beams. When I am running the above script,its generating an ODB of size 10 GB. From the ODB, I only need to retrieve Vonmisses stress, Displacement. Script: # -*- coding: mbcs...
  4. Sri Harsha

    Hi, I have the following script,

    Hi, I have the following script,which generates an ODB File. My model is a simple Structure,consisting of circular beams. When I am running the above script,its generating an ODB of size 10 GB. From the ODB, I only need to retrieve Vonmisses stress, Displacement. Script: # -*- coding: mbcs...
  5. Sri Harsha

    TypeError: Can only compare to an ABAQUS Object

    Hi, I wrote the following function def RetrieveSetStressValues1(odb1,lastFrame): SetList = [] SetList = RetrieveAllSetNames() assembly = odb1.rootAssembly Stress = odb1.steps['Step-1'].frames[1].fieldOutputs['S'] for SetIdx in range(len(SetList)): elemset =...
  6. Sri Harsha

    Retrieving Wrong Vonmisses Stress data for an Element in ABAQUS Using a macro

    Hi, I am trying to load my ODB File and then trying to retrieve Vonmisses stress data for a particular element I basically have a set named 'DISP_END_SET'.I am getting the set Object from Assembly . Here is my macro: odb = session.openOdb(name= 'H:\\MiniThessis\\MaterialModelling\\Job-4.odb')...
  7. Sri Harsha

    Running an abaqus script without launching ABAQUS

    Hi, I have an ABAQUS script/Macro,which I am unable to run without launching ABAQUS. The following approach has been followed to run the ABAQUS Script,without launching GUI. ->Open ABAQUS Command line ->Change the destination there to the path of the script location. ->then I have enetered...
  8. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, Thanks a lot.So,Its better to use UNIQUE NODAL to get the required one in my case.
  9. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, I would be really glad,if you can reply to the above query. Thanks in Advance
  10. Sri Harsha

    Apply edge on a load and also define Tensile yieldstrength, compressive yield strength in ABAQUS

    Hi, Under Material properties tab,I could not find any option to input tensile yieldstrength and compressive yield strength . Also,How can one apply load on an edge in ABAQUS? I tried the option "LineLoad" , but it requires entire body as an input I would be really glad,if someone can explain...
  11. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, Thanks a lot for your reply. I have written a similar script for retrieving VonMisses stress data xy1 = session.xyDataListFromField(odb=o1, outputPosition=ELEMENT_NODAL, variable=(( Variable, INTEGRATION_POINT, ((INVARIANT, ParameterName), )), ), elementSets=(...
  12. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, When I say,print xy[0], it prints out "[(1.0, 0.00329504604451358)]". How do I print out only the second value. I tried out with xy[0][0} as well as xy[0][1],but I am not getting the value as "0.00329504604451358".
  13. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, Thanks for your reply. I could now retrieve the displacement value. I have written the follwing macro lines and its working: xy = session.xyDataListFromField(odb=o1, outputPosition=NODAL, variable=(('U', NODAL, ((INVARIANT, 'Magnitude'), )), ), nodeLabels=(('PART-1-1'...
  14. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, I have tried the above Macro,which you have suggested with my ODB. When I tried to print it: its printing this: [xyDataObjects['U:Magnitude PI: PART-1-1 N: 1837']]. How do I retireve the displacement value from this xyObject. Please explain.I guess,we need to add one more macro...
  15. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi Mustaine, If I am writing these 3 lines to retrieve xy data object for displacement. odb = session.odbs['H:/MiniThessis/MaterialModelling/First_Test.odb'] session.xyDataListFromField(odb=odb, outputPosition=NODAL, variable=(('U', NODAL, ((INVARIANT, 'Magnitude'), )), )...
  16. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hello A.Jalal and Igor76, Could you please explain,how can I retrieve net displacement of a node,if I know a node number can you please write the macro for doing that? Would be really helpful!
  17. Sri Harsha

    Macro to Retrieve Displacement Data from ODB File

    Hi, I have been trying to record the macro for retrieving displacementdata from ABAQUS ODB File.I have picked a single node and tried to retrieve the displacement data for that particular node. odb = session.odbs['H:/MiniThessis/MaterialModelling/First_Test.odb']...
  18. Sri Harsha

    Macro for Retrieving Data in ABAQUS

    Hi Mustaine3, Thanks a lot for your help regarding, retrieving of element labels and node labels. Could you please let me know,if I can retrieve an element label based on a node label. For e.g: A node,labelled as "5" can be common for element 1 as well as 2. So,is there any way if I can...
  19. Sri Harsha

    Macro for Retrieving Data in ABAQUS

    Hi Mustaine, Finding stresses at nodes is another issue. Please let me know,how can I retrieve the elements and node numbers available in a particular element set. I have searched a lot in the python scripting reference,but I could not find the functions: I am posting the script again,which I...
  20. Sri Harsha

    Retrieve Elements and Nodes from element set Object in ABAQUS

    Hello, I have written the following code: odb = openOdb('H:\MiniThessis\MaterialModelling\Job-2.odb') assembly = odb.rootAssembly elsetName = 'SET-4' elemset = assembly.elementSets[elsetName] With the help of above code,I am able to retrieve the element set object using a...
Back
Top