Displacement and Force Time Series using Plain Pattern

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
JoseLeo
Posts: 24
Joined: Mon Mar 14, 2005 11:12 pm
Location: Department of Civil Engineering, Kunsan National University

Displacement and Force Time Series using Plain Pattern

Post by JoseLeo »

The following are undocumented commands that may be very useful in a variety of problems and applications, which I have tested in transient analysis and worked fine:

#Displacement time Series alternative to Multisupport pattern
# applies displacement series SP constraint at node 20, dof 2 (free), factor 1.0
pattern Plain 1 "Series -dt $dT -filePath DispFile.txt" {
sp 20 2 1.0
}

#Force time Series loading at node
# applies force time series load at node 30, dof 2, factor 1.0
pattern Plain 2 "Series -dt $dT -filePath ForceFile.txt " {
load 30 0 1.0 0
}
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

the difference to multi-support is that you define multiple support motions inside a single load pattern, your approach would require a load pattern for each different ground motion.
Post Reply