Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Sri Harsha

  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'), )), )...

Part and Inventory Search