Search found 6 matches

by aghaf
Sun Nov 13, 2016 2:28 pm
Forum: OpenSees.exe Users
Topic: Tcl/Tk Programming Problem
Replies: 9
Views: 8245

Re: Tcl/Tk Programming Problem

Dr. Schellenberg has added a new command “wipeExp” to the new version of OpenFresco for cleaning up OpenFresco objects. It should be used before the wipe command like this:

wipeExp
wipe

I used it in my code, and it worked perfectly.
by aghaf
Wed Oct 12, 2016 1:31 pm
Forum: OpenSees.exe Users
Topic: Tcl/Tk Programming Problem
Replies: 9
Views: 8245

Re: Tcl/Tk Programming Problem

Hi, I have created a loop in OpenSees that incorporates OpenFresco commands. But the wipe command cannot destroy the OpenFresco objects, and accordingly, in the second loop I get an error stating that expControl component could not be added since it already exist. I also couldn't find the Cpp code f...
by aghaf
Tue Oct 11, 2016 7:27 am
Forum: OpenSees.exe Users
Topic: How Wait for Matlab subprocess in opensees(Tcl programming)
Replies: 7
Views: 7458

Re: How Wait for Matlab subprocess in opensees(Tcl programmi

Many thanks for the answers,
I used the "after 30000" command in Tcl, right after invoking the Matlab code. this way, execution of the rest of the code was delayed for 30 seconds (30000 m seconds) that was enough for the Matlab code to be run.
by aghaf
Tue Oct 11, 2016 7:16 am
Forum: OpenSees.exe Users
Topic: Problem with invoke Matlab function on OpenSees
Replies: 5
Views: 4542

Re: Problem with invoke Matlab function on OpenSees

thank you very much Dr. McKenna, I found out that Tcl has an "after" command that runs any commands that come after it after some time that is specified by the user. so, I invoked my Matlab code from within Tcl, and then using "after 30000" command, Tcl waited for 30 seconds (300...
by aghaf
Sat Oct 08, 2016 11:43 am
Forum: OpenSees.exe Users
Topic: Problem with invoke Matlab function on OpenSees
Replies: 5
Views: 4542

Re: Problem with invoke Matlab function on OpenSees

Dear RubenRosario,

I have the same problem. what did you do about it?