Search found 7 matches
- Sun May 28, 2017 5:24 am
- Forum: Framework
- Topic: OpenSees linked with Tcl 8.6 (macos)
- Replies: 0
- Views: 3064
OpenSees linked with Tcl 8.6 (macos)
The OpenSees macos binary available for download is linked to tcl8.5. For most use cases this is certainly ok, as macos sierra provides tcl8.5.9. I have got a OpenSees/tcl script that makes use of tcl8.6 features (TclOO). So I would like to get OpenSees linked to tcl8.6. I successfully installed tcl...
- Tue May 16, 2017 2:51 pm
- Forum: OpenSees.exe Users
- Topic: nodeReaction command
- Replies: 4
- Views: 5279
Re: nodeReaction command
As a work-around for this weird issue, in scripts I add a node recorder.
Example: "recorder Node -xml output/R.out -node 91 92 93 94 -dof 3 reaction"
Then the command 'nodeReaction' works.
Example: "recorder Node -xml output/R.out -node 91 92 93 94 -dof 3 reaction"
Then the command 'nodeReaction' works.
- Wed Sep 10, 2014 12:54 pm
- Forum: Documentation
- Topic: Compiling OpenSees on OpenSUSE Linux
- Replies: 5
- Views: 18652
Re: Compiling OpenSees on OpenSUSE Linux
Dear hustlcf1990 The file "Makefile.def" is pasted below. ############################################################################ # # Program: OpenSees # # Purpose: A Top-level Makefile to create the libraries needed # to use the OpenSees framework. Works on Linux version 6.1 # and be...
- Sat May 17, 2014 2:26 pm
- Forum: Framework
- Topic: Compile on Linux MInt 16
- Replies: 5
- Views: 6983
Re: Compile on Linux MInt 16
> How to get the last command in the OpenSees terminal in Linux? The up key just gives me characters "^[[A" . Try "rlwrap OpenSees". man page: rlwrap - readline wrapper. rlwrap runs the specified command, intercepting user input in order to provide readline's line editing, persis...
- Mon Feb 24, 2014 1:18 pm
- Forum: Documentation
- Topic: Compiling OpenSees on OpenSUSE Linux
- Replies: 5
- Views: 18652
Re: Compiling OpenSees on OpenSUSE Linux
Update for OpenSees 2.4.3 on OpenSUSE 13.1 The following steps were necessary: 1. cp MAKES/Makefile.def.EC2-SUSE Makefile.def 2. edit Makefile.def - adapt home directory (line 67) HOME = /home/..... - adapt TCL_LIBRARY to your tcl version (8.6) (line 113) - change linker option: remove (or comment o...
- Sat Jan 12, 2013 2:01 pm
- Forum: Framework
- Topic: Building OpenSees on Mac OS X 10.8 (mountain lion)
- Replies: 6
- Views: 6573
Re: Building OpenSees on Mac OS X 10.8 (mountain lion)
The error message is the same I got on OpenSuse Linux (http://opensees.berkeley.edu/community/ ... =3&t=56335).
The work-around was to edit Makefile.def and change the linkflags options. The compilation succeeded once the option -Wl was commented out (#):
LINKFLAGS = -rdynamic #-Wl
The work-around was to edit Makefile.def and change the linkflags options. The compilation succeeded once the option -Wl was commented out (#):
LINKFLAGS = -rdynamic #-Wl
- Sun Nov 11, 2012 8:34 am
- Forum: Documentation
- Topic: Compiling OpenSees on OpenSUSE Linux
- Replies: 5
- Views: 18652
Compiling OpenSees on OpenSUSE Linux
Successfully compiled OpenSees on OpenSUSE. The following steps were necessary: 1. cp MAKES/Makefile.def.EC2-SUSE Makefile.def 2. edit Makefile.def - adapt home directory (line 67) HOME = /home/..... - change linker option: remove (or comment out) option -Wl (line 179) LINKFLAGS = -rdynamic #-Wl 3. ...