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

    Solid Extruded Tube, collapsing and rippling in Dynamic Explicit Step

    Be careful when using C3D8I also - it is much more sensitive to aspect ratio (likes to be a perfect cube). Check your artificial strain energy.
  2. cooken

    Very Huge ODB File of size 10 GB

    No. See below for example. Again, this is clearly defined in the Abaqus Documentation, which you clearly did not read or did not understand. Also, you script is very clearly just a copied dump of the .rpy file, so you could also open CAE and make the change in there and then copy the relevant...
  3. cooken

    Very Huge ODB File of size 10 GB

    When you create the step abaqus automatically creates a field output and a history output object. By default, these will write output for a bunch of variables at every single increment at every single node/element (whole model). You need to modify this to only select whatever variable is of...
  4. cooken

    How to Create the 3D solid model( as shown in the image) with different extrusion depths ?

    A more serious problem is that Abaqus will fail to mesh that part with the current settings, as indicated by the orange color. In order to produce a mesh of sufficient quality you will need to do some careful and clever partitioning (which is difficult but doable with python), or use tets.
  5. cooken

    Do yo see this post?

    Yes you're fine. Many posts here go unanswered, for any number of reasons I suppose. Probably because internet.
  6. cooken

    Abaqus parametric study on multiple CPU cores

    The documentation quite clearly tells you how to add execution options via the .execute command, I doubt this is new in recent version(s).... Abaqus 2016 Analysis User's Guide - 20.2.4 - aStudy.execute(): So, this would look like: aStudy.execute(token, execOptions='cpus=X')
  7. cooken

    Numpy Abaqus 6.14

    I have tried similar in the past and was also unsuccessful, although it was more of fiddling around for me and not a requirement so I dropped it. You may try contacting Abaqus support who are usually quite responsive, surely they will give you a definitive answer.
  8. cooken

    feMeshBetween()

    Thanks Ryan. I just came back here to post same, you are certainly on the ball!
  9. cooken

    feMeshBetween()

    Hi, So I've successfully used a series of commands to generate a native solid hexahedral mesh (nodes and elements) by first creating nodes and then using Mesh->Between(F11) to define connectivity and generate the elements. However then when trying to automate the process with as an API, I get...
  10. cooken

    [Urgent] Selecting elements in Mesh Part (Orphan Mesh)

    Could you try using python methods such as getByBoundingCylinder(), or findAt() if you know the coordinates?
  11. cooken

    Question about the critical stress for fracture in abaqus

    Can't comment much on your failure criteria, you will have to figure that out. Reason for negative principal stress is because your beam is bending, and you have axial (along the length of the beam) compression on the top surface. Your mesh is not suitable for this, both element type and...
  12. cooken

    Boundary condition to allow nodes to move in parallel?

    Maybe I'm missing something, but doesn't this model exhibit quarter symmetry? You could model one quarter and just use appropriate boundary conditions?
  13. cooken

    Abaqus/Python - Extracting Connectivity of Surface Elements

    I agree Mustaine that is a better approach. I was just giving an option in case OP didn't want to re-run the analysis :)
  14. cooken

    Abaqus/Python - Extracting Connectivity of Surface Elements

    I have done it manually with python by using the surface.elements connectivity, then screening out the nodes that aren't in surface.nodes. This won't guarantee that the final numbering is in any particular order that would correspond to a 2D element though.
  15. cooken

    Transition Mesh from fine to Coarse one using

    The image above has quads only. You have quads and tets so that's one reason.
  16. cooken

    Partitioning problem: Cubic box

    The same way you created the initial box. Extrude solid. Not sure why you are struggling so much with this. There are a wide range of ways to arrive at the geometry you're describing. Here's two: 1. Create larger cube, then partition top/bottom/sides with planes to create the internal volume...
  17. cooken

    Modelling a Tapered Beam in ABAQUS

    To add to this - you are using a section integrated "before analysis", meaning linear. So from my understanding it doesn't make sense to use a nonlinear property with that, hence the limitation. A possible workaround would be to use much smaller elements with non-tapered sections integrated...
  18. cooken

    Modelling a Tapered Beam in ABAQUS

    Glad it worked and you confirmed the direction at least. In terms of scripting to define multiple sections, you are the one who decides the number of elements. You should know the total length, and so the section definitions will be a function of the number of divisions that YOU decide...
  19. cooken

    Modelling a Tapered Beam in ABAQUS

    Look at the deflection/stress distributions? You might need to use more than one element.
  20. cooken

    Modelling a Tapered Beam in ABAQUS

    Fix one end and apply a load/moment or enforced displacement/rotation at the other end and look at the result. Should be obvious which direction the taper is in.
Back
Top