Search found 10 matches

by ambaker
Tue Jun 30, 2020 9:18 am
Forum: Documentation
Topic: MATH DOES NOT WORK ON OPENSEES WIKI
Replies: 1
Views: 7596

MATH DOES NOT WORK ON OPENSEES WIKI

Hello,

The math does not render on the OpenSees wiki anymore.

Please fix so that it is readable.

-Alex
by ambaker
Tue Jun 30, 2020 9:14 am
Forum: OpenSees.exe Users
Topic: convergence of analysis
Replies: 6
Views: 8527

Re: convergence of analysis

The return code from the analyze command can be used in the IDA to designate failed runs. Often it is done in this way:
set ok [analyze 1]
Then, at the end of the analysis, you can write the return code to a file:
set fid [open code.out w]
puts $fid $ok
close $fid
by ambaker
Tue Jun 30, 2020 9:11 am
Forum: OpenSees.exe Users
Topic: zerolength, damping and natural frequency
Replies: 2
Views: 2819

Re: zerolength, damping and natural frequency

Try [eigen -fullGenLapack 1]. You only have 1 mass, so the generic eigen solver won't work.
by ambaker
Tue Jun 30, 2020 9:06 am
Forum: OpenSees.exe Users
Topic: BRBF model using OpenSees
Replies: 1
Views: 2311

Re: BRBF model using OpenSees

Hello, I would look at Santiago Zaruma's Thesis: Seismic stability of buckling-restrained braced frames, and Ozgur Atlayan's Dissertation: Hybrid Steel Frames for information on this. From what I have seen and done, you are going to want to use beam-column elements for the frame (P-Delta for vertica...
by ambaker
Tue Nov 19, 2019 6:31 am
Forum: OpenSees.exe Users
Topic: Incomplete documentation on beam element recorders: force, localForce, globalForce
Replies: 0
Views: 2129

Incomplete documentation on beam element recorders: force, localForce, globalForce

Hello, It is not clear what to do for beam recorders and what the different columns in output are. On the main wiki (https://opensees.berkeley.edu/wiki/index.php/Elastic_Beam_Column_Element), it states to use the query "force". However, this gives the global force in my experience. Contrary to this,...
by ambaker
Tue Oct 22, 2019 10:22 am
Forum: OpenSees.exe Users
Topic: OpenSees wiki not showing math symbols.
Replies: 0
Views: 1709

OpenSees wiki not showing math symbols.

It seems the math interpreter is broken on the OpenSees command manual wiki. I pulled up a cached version of the site on my browser, so I am quite confident it is not on my end.

-Alex
by ambaker
Fri Jun 21, 2019 5:20 am
Forum: OpenSees.exe Users
Topic: Damping
Replies: 2
Views: 2700

Re: Damping

That makes sense.
Thank you!
by ambaker
Mon Jun 17, 2019 5:39 pm
Forum: OpenSees.exe Users
Topic: Damping
Replies: 2
Views: 2700

Damping

I am struggling to understand the documentation for the Rayleigh command. These are the inputs to the Rayleigh command: $alphaM factor applied to elements or nodes mass matrix $betaK factor applied to elements current stiffness matrix. $betaKinit factor applied to elements initial stiffness matrix. ...
by ambaker
Fri May 24, 2019 8:27 am
Forum: Useful Scripts.
Topic: OpenSees in Notepad++
Replies: 1
Views: 7197

OpenSees in Notepad++

Hello all, Editing Tcl files for OpenSees is not well supported by standard text editors, and the text editors that do support it are not robust (such as Cypress Editor). So, I combined the functionality of Notepad++ with the OpenSees language support of Cypress Editor. The code is located at https:...
by ambaker
Tue May 21, 2019 2:09 pm
Forum: OpenSees.exe Users
Topic: A display window disappears immediately. An urgent solution
Replies: 3
Views: 3485

Re: A display window disappears immediately. An urgent solut

Hi jjh,
Try adding this code at the end of your analysis:

puts "Press a key to continue"
gets stdin my_variable_name

It will prevent the screen from closing until a key is pressed.
-Alex Baker