Create uel_nlmech_pk1_Saint_Venant_Kirchhoff.for - #4
Open
jpvardasca wants to merge 1 commit into
Open
Conversation
User-defined element updated to implement the Saint Venant–Kirchhoff material model and to compute the element stiffness. Another routine implements the element mass matrix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This pull request adds a Saint‑Venant–Kirchhoff (St. Venant) material model to the existing finite‑strain user element (UEL) framework for Abaqus/Standard. The new material routine (
umatSaintVenant) replaces the previously hard‑coded Neo‑Hookean model and is selectable via thematIDinteger property.Motivation
The Saint‑Venant–Kirchhoff model is a classical compressible hyperelastic model widely used for moderate strains. Including it alongside the existing Neo‑Hookean model expands the element library’s applicability, particularly for problems where a compressible, quadratic strain energy is appropriate.
Changes
New material subroutine
umatSaintVenant:dP/dFfor the total Lagrangian formulation.Integration with existing UEL framework:
uelNLMechnow callsumatSaintVenantwhenmatID = 1.mat_NeoHookean) remains available and is called whenmatID = 2.Code refactoring:
elem_nlmechand material modulehyperelastic_materialfrom the original file are retained; the new material is added to theuser_elementmodule.UVARM), or external file I/O (UEXTERNALDB).Notes for Reviewers
matIDmust be set to1in theJPROPSarray to activate the Saint‑Venant model.globalPostVarsarray for visualisation with overlay elements.This contribution follows the existing code structure and documentation style. Feedback and suggestions are welcome.