Users Forum

ADONIS Category => ADONIS Users => Topic started by: ariznaf on October 27, 2022, 03:47:59 am

Title: How to add values to a table?
Post by: ariznaf on October 27, 2022, 03:47:59 am
I am trying to create de convergence curve of a tunnel using Adonis.

I apply the internal preassure and relax it in steps, solving the model after each step.
Then I woul like to save the displacment of some nodes and the preassure applied in a table.

The problem is that there seems to be no way to add points to an existing table.

In the for loop I try something like:

Code: [Select]
table("add","id",1,"name","ceiling","values",preassure,displacement)

where preassure and displacement are the corresponding pair values to be saved in the table for that step.

But it does not work, the table only saves the last values, it seems that all value pairs have to be given in a single command, and you cannot modify them after that.

I have tried to use "edit" instead of "add" with identical results, I cannot see the difference between the add and edit operation: both substitute the values for the given pairs in the command.

What am I missing in the way tables work in adonis?

How may I save and plot the vulues obtained using the program?