Dear Roozbeh,
thank you very much for this Software. It's really nice and quite comfortable to use after a short time.
How can i read the force components from a fixed boundary node in a script? What's the correct keyword/attribute?
So far i can only extract location/displacement/unbalanced force (see following script)
nlist = getnode("boundid")
fh = fopen("demoExcavation.txt", "w")
fprintf(fh, "found "+nlist.length+" boundary nodes\r\n");
for (i = 0; i < nlist.length; i++) {
var nid = nlist;
var nCo = getnode("pos", nid);
var nFu = getnode("unbal", nid);
var nDs = getnode("disp", nid);
if ((nCo[0] > 15.0 && nCo[0] < 35.0)
&& (nCo[1] > -2.0 && nCo[1] < 30.0)) {
fprintf(fh, "interior boundary node # "+ nid + "\n");
fprintf(fh, "at pos. " + nCo[0] +"/"+ nCo[1]+ "\n");
fprintf(fh, "tot. displ. " + nDs[0] +"/"+ nDs[1]+ "\n");
fprintf(fh, "ubl. force " + nFu[0] +"/"+ nFu[1]+ "\n");
}
}
fclose(fh);
Greetings
Arno