Hi there,
I am using the following recorder to capture one of the mode shapes of my model. The problem is that the sketch becomes invisible in a blank of an eye, so that I cannot see the picture even for a second! Could anybody tell me please how I can hold the image? And thanks a lot in advance.
recorder display "Mode Shape" 10 500 500 500 -wipe
prp 10 10 1;
vup 0 1 0;
vpn 0 0 1;
viewWindow -250 250 -250 250
display -1 10 20
Display mode shapes
Moderators: silvia, selimgunay, Moderators
Display mode shapes
Ph.D. Student Researcher
Colorado State University
Civil & Environmental Engineering
Fort Collins, CO 80523, USA
amerikmr@engr.colostate.edu
Colorado State University
Civil & Environmental Engineering
Fort Collins, CO 80523, USA
amerikmr@engr.colostate.edu
Re: Display mode shapes
You can use the Tcl command "after". Place it following the display command.
More information can be found at: http://wiki.tcl.tk/808
-Nick
Example:
recorder display "Mode Shape" 10 500 500 500 -wipe
prp 10 10 1;
vup 0 1 0;
vpn 0 0 1;
viewWindow -250 250 -250 250
display -1 10 20
after 5000; # pause for 5 seconds
More information can be found at: http://wiki.tcl.tk/808
-Nick
Example:
recorder display "Mode Shape" 10 500 500 500 -wipe
prp 10 10 1;
vup 0 1 0;
vpn 0 0 1;
viewWindow -250 250 -250 250
display -1 10 20
after 5000; # pause for 5 seconds
Re: Display mode shapes
Thanks a lot dear nskok, it works perfectly.
Ph.D. Student Researcher
Colorado State University
Civil & Environmental Engineering
Fort Collins, CO 80523, USA
amerikmr@engr.colostate.edu
Colorado State University
Civil & Environmental Engineering
Fort Collins, CO 80523, USA
amerikmr@engr.colostate.edu
-
- Posts: 1
- Joined: Sat Dec 28, 2013 12:46 pm
- Contact:
Re: Display mode shapes
Thanks a lot nskok good idea.