Users Forum
ADONIS Category => Bugs and Problems => Topic started by: markstone 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)
-
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")