Dear all,
After carefully reading the matlab drivers of hypoplastic models, I was wondering why there is not mix control undrained TX compression. I want to achieve the same result as Niemunis and Herle(1997) did. How can I make the value of q fluctuates within a certain range .When I make dsigma11-dsigma33=DX , and DX=[30,-60,60,-60,60,-60,60,-60,60,-60,60,-60] , the result is clearly not right. Any suggestions or comments will be appreciated. Thank you!
Question on the Matlab driver-hypoplastic models
Related Articles
-
-
Setting of Kw for Hypoplastic Clay UDSM in Plaxis
Joel Tan||Constitutive Modelling|2 |
Views 4,663
Prof. David Masin, I am posting the queries I have emailed you earlier which you have answered and therefore I am posting it here as per your request. I wish […] -
hypoplasticity umat filr
sobhan abedinnejad||Constitutive Modelling|2 |
Views 4,439
hello every one i have a problem with abaqus subroutine can i use hypoplastic umat file that prepared for palxis in this website in abaqus? or the files must be […] -
Mohr Coulomb umat in Abaqus
Shuhan Cao||Constitutive Modelling|5 |
Views 7,721
Dear all, does anyone have the umat code for Mohr Coulomb in Abaqus? For my current work I need a umat for Mohr Coulomb in Abaqus. It would be highly […] -
Triaxial Test Driver SANISAND
Carlos Espanol-Espinel||Constitutive Modelling|0 |
Views 2,736
I cannot find sanisand in the library of available constitutive models for the triaxial test driver, even if it is listed as one of the available models on the main […] -
ExCalibre Automatic Calibration
Marco Hofer||Constitutive Modelling|5 |
Views 4,510
Hello all, i have another question regarding the calibration process. Why do the initial void ratios differ between the input file and the output from excalibre? What is done during […] -
lade umat file
sobhan abedinnejad||Constitutive Modelling|0 |
Views 4,551
Hi everyone, I work on soil constitutive models and I want to compare soil behaviours with various constitutive models but I can’t find Lade umat in the .for format. Can […] -
ALERT doctoral school on constitutive modelling – hands on session triax input files
David Mašín||Constitutive Modelling|0 |
Views 4,713
ALERT doctoral school on constitutive modelling is happening right now. The school lecture notes are available at the website of ALERT geomaterials (http://alertgeomaterials.eu/publications/) Below you find triax input files for […]
Search SoilModels Website
Recent posts
-
Abaqus RITSS methon for LDFE analysis with hypoplastic 17.3.2025
-
Request for VUMAT Implementation of Mohr-Coulomb, Drucker-Prager, or Drucker-Prager Cap 28.2.2025
-
Suggestions for an Advanced Constitutive Model in FEM-Based Dynamic Slope Stability Analysis 12.2.2025
-
Hardening Soil or Hardening Soil-Small umat in Abaqus 2.1.2025
-
hypoplastic interface 11.12.2024
-
Triaxial Test Driver SANISAND 30.10.2024
-
REQUEST FOR EXPRESSIONS OF INTEREST (REOI) FOR PROJECT IN CONSTITUTIVE MODELLING 23.10.2024
-
Programme of the ALERT Olek Zienkiewicz school on Constitutive Modelling of Geomaterials, February 3 to 7, 2025, Prague, Czech Republic 11.10.2024
-
Connecting remote sensors to the Plaxis FEM 3D using python 26.7.2024
-
Intergranular Strain Extensions 16.7.2024
-
Abaqus Hypoplasticity Primary Variable Is Not Available 1.7.2024
-
Vumat to calculate excess pore in Coupled Eulerian-Lagrangian ABAQUS 1.7.2024
Recent Comments
- Dingxin Zhang on Errors of sand hypoplastic model with Abaqus Vumat
- Linares De Castro on GroundVib.setup.web.exe
- Chris Eskandari on Drucker Prager Cap Hardening Model
- Hu Shihong on SANISAND for FLAC3D Download
- Ulas Cilingir on SANISAND for FLAC3D Download
- Pouya Zahedi on UMAT Code for Modified Cam Clay model
- Xiuzhe Wang on Hypoplasticity sand convergence issues
- Zheng Wanying on Example of FLAC3D data file
- Zheng Wanying on SANISAND for FLAC3D Download
- Anis Kheffache on Problem in using Hypoplastic model for sand in Abaqus.
- Micha Van der Sloot on PM4Sand for Plaxis Download
- Kiruthika Perumal on PM4Sand for Plaxis Download
- Shishir Kumar Sikder Amit on Mohr Coulomb umat in Abaqus
- Zhentao Liu on Hypoplasticity sand convergence issues
- Zhentao Liu on Combining Hypoplastic-sand and Hypoplastic-clay in one UMAT file
- Sumin Song on Clay and Sand hypoplasticity UMAT and Plaxis implementations, including UMAT-Plaxis interface
- KHA DIDJA on Issue in applying SANISAND04 UMAT to Boundary-Value-Problem
- Zhentao Liu on Problem in simulating CPT using SANISAND04
Hi C, the mixed control is not there predefined, but you can still add it easily into constraints.m file. Please study Janda, T. and Mašín, D. (2017). General method for simulating laboratory tests with constitutive models for geomechanics. International Journal for Numerical and Analytical Methods in Geomechanics 41, No. 2, 304-312 which is available in SoilModels publication database. You need to control axial stress
S(6,3)=1;
and radial strains so that zero volume strain is achieved
E(1,1)=1;
E(1,3)=0.5;
E(2,2)=1;
E(2,3)=0.5;
E(3,4)=1;
E(4,5)=1;
E(5,6)=1;
David
Hi, Prof.David. Thank you for your reply! As you mentioned, I change the constraint. However, there is still something wrong with it. I check the EE after I did what you mentioned, I found that the volume strain isn’t zero in the whole process. I was a little confused about these problems. I want to achieve the same result as Niemunis and Herle(1997) did. They controlled q fluctuates within a certain range. Is it possible for us achieve this through our matlab driver? Looking forward to your response!
Hmm, not sure why, this sets ep22=-ep33/2 and ep11=-ep33/2.
You may also try
E11=E12=E13=1, which sets ep11+ep22+ep33=0.
E21=1, E22=-1, which sets ep11=ep22
E34=E45=E56=1, which sets shear strain components to 0
S63=1, which sets axial (axis direction 3) stress control
This will, however, still not stop the test at predefined q, as radial stress will change during during loading through pore pressure generation. To achieve constant max and min q cyclic loading, you will have to manually set nstep for each load cycle, or add your own stop condition into the code, or better use some of more advanced element test software (such as triax or idriver).
Prof.David. in the f_hyp.m, after I make Laux = Lep and sigpresc = Laux*depsMNR-Nep*sqrt(depsMNR’*M2*depsMNR), the volume strain is zero, even though other results are not totally right in my views. While your file README.pdf clearly says that sigpresc = Laux*depsMNR rather than sigpresc = Laux*depsMNR-Nep*sqrt(depsMNR’*M2*depsMNR). I’d appreciate it if you could explain why sigpresc = Laux*depsMNR. Looking forward to your reply!
I see, I think the problem is how residual is calculated in Newton-Raphson iterations in Matlab driver. It is only calculated from residual stresses, which is insufficient for more complex mixed-controlled tests such as those we discuss here. Correct procedure is defined in Janda & Mašín (2017), where the residual is calculated from S*dsig+E*depsilon-dy, see Eq. (12).
For you, that would mean either updating Matlab driver formulation or using more advanced element test driver, such as triax