Hi,
I am working in Abaqus, aiming to model double porosity clay consolidation data by using hypoplastic clay model with meta stable structure. First, i just wanted to verify basic model using simple axisymmetric geometry (Triaxial Test) in Abaqus. So i used material Parameters as : 22.611e-5,.11,.016,.4 and rest all zero. As a standard procedure i included umat_hcea.for file in the job module and ran my job. I got the error that UMAT was missing, so i opened the umat_hcea.for and replaced first word after usersubroutine by UMAT and finally job completed successfully. I am simply loading under isotropic conditions and then unloading but my when i checked the void ratio upon unloading, it didn’t follow k line it retracted along lambda curve only. Also the void ratio is decreasing not along butterfield’s criteria but along e-lnp’ space (i checked by hand calculations). Can any one suggest me where i could be wrong and also, is there any change that i have to make in the fortran file like the one mentioned above?. Any help would be great .
UMAT Implementation in Abaqus (Hypoplastic clay Subroutines)
Related Articles
-
UMAT code for Unsaturated soil modes
Arghya Das||Finite Elements|1 |
Views 4,008
Hello Everyone, I am trying to implement an unsaturated soil model (BBM or similar) in ABAQUS using UMAT. We want to assign a pore-pressure boundary condition for simulating the drying […] -
Transient Dynamic analysis (U-P formulation)
anis kheffache||Finite Elements|4 |
Views 4,045
Hi everyone, i want to carry out some transient dynamic analysis. as far as I know, dynamic steps in abaqus does not allow for pore pressure build-up and dissipation, and […] -
Some confusion about the parameters in Abaqus umat of Hypoplastic Modeling
Joe Chu||Finite Elements|1 |
Views 3,293
Dear all, When I check the umat file of sand hypoplastic modeling, I find there are two parametesr(p_t(2), bulk_w(15)) without any definitions. Could someone kindly explain the exact meaning for […] -
problem with sanisand umat
yousef zand||Finite Elements|8 |
Views 3,581
Dear all, I’m trying to model multilayer soil in abaqus. To use the SaniSand umat in model I use the following parameters but no plastic strain at all. The unit […] -
SANISAND umat issue
Philip Alkhoury||Finite Elements|2 |
Views 3,494
Hello everyone; I have implemented the Sanisand constitutive model (UMAT) in abaqus in the scope of performing a dynamic analysis on a 3D soil-pile interaction problem. I have succeded in […] -
UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
anis kheffache||Finite Elements|7 |
Views 1,424
Dear all, A while ago, a person asked about the hypoplasticity umats, the problem was that the umats were not working when compiled using the oneAPI fortran compiler, an error […] -
Example of FLAC3D data file
Kassem Dib||Finite Elements|0 |
Views 1,947
Hello.. I am new in FLAC3D, could some send to me an example of data file code for pile soil interaction with seismic loads ? I will be thankful -
Using pore fluid-stress element in SandSand
Kassem Dib||Finite Elements|1 |
Views 3,419
Hello everyone, Is it possible to use pore fluid- stress element in abaqus standard when soil is modeled using SANISAND constitutive model ? (UMAT)
Search SoilModels Website
Recent posts
-
BCV bentonite experimental and modelling datasets 14.11.2023
-
Challenges in simulating geomechanical models using Mohr-Coulomb with Tension Cut-Off in Abaqus 20.10.2023
-
Analys soil liquefaction with Abaqus under blast load 19.10.2023
-
Hardening soil Model UMAT 13.9.2023
-
Problem with VUMAT interface 20.8.2023
-
UMAT and oneAPI compiler issues. (SOLVED…i hope :p) 5.8.2023
-
Oedometric Test Soil Test Plaxis 21.7.2023
-
Problem in simulating CPT using SANISAND04 10.7.2023
-
Problem with UMAT for clay hypoplasticity. Program exiting. 30.6.2023
-
Example of FLAC3D data file 10.6.2023
-
sigini ans sdvini subroutine example for soil model in Abaqus 6.6.2023
-
Presentations from Prague Geotechnical Days 2023 including 29th Prague Geotechical Lecture by Yannis Dafalias 25.5.2023
Recent Comments
- Johan Clausen on Challenges in simulating geomechanical models using Mohr-Coulomb with Tension Cut-Off in Abaqus
- Zhenyu Liu on Problem in using Hypoplastic model for sand in Abaqus.
- Dorsa Shadlou on SANISAND for FLAC3D Download
- Shuo Feng on Download Package of Matlab Driver
- Ajay Jatoliya on SANISAND for FLAC3D Download
- Isma Khabis on Hardening soil Model UMAT
- Anis Kheffache on Hardening soil Model UMAT
- Isma Khabis on Hardening Soil Model in Abaqus
- Fatemeh Safari on Matlab Driver
- KF JIAO on SANISAND Abaqus UMAT and Plaxis implementations
- Abdiel Ramon Leon Bal on Problem in simulating CPT using SANISAND04
- An Zhanng on Problem in simulating CPT using SANISAND04
- Giovanni Ciardi on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
- Anis Kheffache on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
- Giovanni Ciardi on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
- Anis Kheffache on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
- Giovanni Ciardi on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
- Anis Kheffache on UMAT and oneAPI compiler issues. (SOLVED…i hope :p)
My issue has been resolved, i think it was related to initialization of State depenedent Varaiables. Once i did that results are fine.
can you please let me know how to initialize state dependent variables?
Is it through sdvini subroutine? if so can you please forward me the fortran file which includes both sdvini and umat subroutines.
i have added the following code to umat plz check if it works-
subroutine sdvini(statev,coords,nstatv,ncrds,noel,npt,layer,kspt)
c
INCLUDE ‘ABA_PARAM.INC’
c
DIMENSION STATEV(NSTATV),COORDS(NCRDS)
c
statev(1) = 0
statev(2) = 0
statev(3) = 0
statev(4) = 0
statev(5) = 0
statev(6) = 0
statev(7) = 0.52
statev(8) = 0
statev(9) = 0
statev(10) = 0
statev(11) = 0
statev(12) = 0
statev(13) = 0
statev(14) = 0
statev(15) = 0
statev(16) = 0
c
return
end
c——————————————————————————