x

ADONIS:
Version 3.90.9 (Released at 10/19/2024)
- Minor bugs in mesh generation module has been fixed.
- Gmsh is upgraded to version 4.13.1.

HYRCAN:
Version 2.0.20 (Released at 05/21/2025)
- Tutorial #10 has been translated into Turkish, thanks to UMUT DAĞAR.
- The show() command can now be called from the scripting language.


Not able to inputIn-situ stress value(Read 5302 times)
Not able to inputIn-situ stress value on: April 01, 2025, 11:21:36 am
Good evening,
I am trying out Adonis for the 1st time.
On working through Tut 1 I ran into a problem when attempting to enter in-situ stress values.
The sxx; syy; sxy; szz default values in the programme are -100Pa; I cannot change these values- if I input a value and hit 'apply', the new value does not appear, and the field(s) still contain -100Pa?

I do not have this problem with any of the other input fields used in Tut 1.

Below is my attempt to enter the values; each value entry was followed by hitting 'apply'
ADONIS>> initial("sxx",-30e6)
ADONIS>> initial("syy",-30e6)
ADONIS>> initial("szz",-30e6)



Re: Not able to inputIn-situ stress value Reply #1 on: April 01, 2025, 12:10:26 pm
Hi,

when you use the "initial" command, the stress updates, but you'll need to replot the contour plot to view the changes. Unfortunately, the program doesn't refresh the plot automatically.

here is the example:

newmodel()
rect("startPoint",-106.000,271.000,"endPoint",335.000,-156.000)
discretize("size","auto")
gmsh("size","auto","elemtype","T3","useNMD","on")
initial("sxx",-100.0)
plot("contour","sxx")
initial("sxx",-500.0)
plot("contour","sxx")