multiple relative node recorder
Moderators: silvia, selimgunay, Moderators
multiple relative node recorder
Hi Guys
I know that I can make multiple absolute disp or acc. using 'timeSeries Path'
like
recorder Node -file MODE/M1.out -timeSeries 1001 -time -node 2 -dof 1 disp;
recorder Node -file MODE/M2.out -timeSeries 1002 -time -node 2 -dof 1 disp;
recorder Node -file MODE/M3.out -timeSeries 1003 -time -node 2 -dof 1 disp;
but I don't know how to make it for relative disp. results.
It has only
recorder Node -file nodesA.out -time -node 1 2 3 4 -dof 1 2 disp;
Is there any command ?
I know that I can make multiple absolute disp or acc. using 'timeSeries Path'
like
recorder Node -file MODE/M1.out -timeSeries 1001 -time -node 2 -dof 1 disp;
recorder Node -file MODE/M2.out -timeSeries 1002 -time -node 2 -dof 1 disp;
recorder Node -file MODE/M3.out -timeSeries 1003 -time -node 2 -dof 1 disp;
but I don't know how to make it for relative disp. results.
It has only
recorder Node -file nodesA.out -time -node 1 2 3 4 -dof 1 2 disp;
Is there any command ?
-
- Posts: 916
- Joined: Mon Sep 09, 2013 8:50 pm
- Location: University of California, Berkeley
Re: multiple relative node recorder
recorder Node -file nodesA.out -time -node 1 2 3 4 -dof 1 2 disp;
This recorder already gives you the relative displacement
This recorder already gives you the relative displacement
Re: multiple relative node recorder
Yeah selimgunay. I knew about that.
But I want to get multiple results at once like tag 1001 , 1002, 1003 ..
But I want to get multiple results at once like tag 1001 , 1002, 1003 ..
Re: multiple relative node recorder
Selim's answer seems to address what you're asking. Can you give a better example of what you'd like to record?
Re: multiple relative node recorder
Thanks Guys
I'm trying to do dynamic analysis for 2nd D.O.F simple lumped massed model
and I want to put various seismic force (time history) at once and get relative disp at once.
I know that we can get them for absolute results using 'timeSeries Path' command, but I'm not sure there is way to get the relative results.
Here's some of my scripts
# DYNAMIC ground-motion analysis -------------------------------------------------------------
# create load pattern
set G 9800
timeSeries Path 1 -dt 0.005 -filePath reg1.tcl -factor 9800;
timeSeries Path 2 -dt 0.005 -filePath reg2.tcl - factor 9800;
timeSeries Path 3 -dt 0.005 -filePath reg3.tcl -factor 9800;
timeSeries Path 4 -dt 0.005 -filePath reg4.tcl - factor 9800;
pattern UniformExcitation 1 1 -accel 1;
# Define RECORDERS -------------------------------------------------------------
recorder Node -file MODE/M2.out -time -node 2 -dof 1 disp; #relative (I want it for Path 1,2,3 and 4 at once like absolute)
recorder Node -file MODE/M3.out -timeSeries 1 -time -node 2 -dof 1 accel; #absoulte
recorder Node -file MODE/M4.out -timeSeries 2 -time -node 3 -dof 1 accel;
recorder Node -file MODE/M5.out -timeSeries 3 -time -node 2 -dof 1 accel;
I'm trying to do dynamic analysis for 2nd D.O.F simple lumped massed model
and I want to put various seismic force (time history) at once and get relative disp at once.
I know that we can get them for absolute results using 'timeSeries Path' command, but I'm not sure there is way to get the relative results.
Here's some of my scripts
# DYNAMIC ground-motion analysis -------------------------------------------------------------
# create load pattern
set G 9800
timeSeries Path 1 -dt 0.005 -filePath reg1.tcl -factor 9800;
timeSeries Path 2 -dt 0.005 -filePath reg2.tcl - factor 9800;
timeSeries Path 3 -dt 0.005 -filePath reg3.tcl -factor 9800;
timeSeries Path 4 -dt 0.005 -filePath reg4.tcl - factor 9800;
pattern UniformExcitation 1 1 -accel 1;
# Define RECORDERS -------------------------------------------------------------
recorder Node -file MODE/M2.out -time -node 2 -dof 1 disp; #relative (I want it for Path 1,2,3 and 4 at once like absolute)
recorder Node -file MODE/M3.out -timeSeries 1 -time -node 2 -dof 1 accel; #absoulte
recorder Node -file MODE/M4.out -timeSeries 2 -time -node 3 -dof 1 accel;
recorder Node -file MODE/M5.out -timeSeries 3 -time -node 2 -dof 1 accel;
Re: multiple relative node recorder
I'm sorry, I still am unsure what you are trying to record.
Re: multiple relative node recorder
I'm trying to record 'various' relative displacements using many time histories at once like absolute ones (timeSeries Path command)
-
- Posts: 916
- Joined: Mon Sep 09, 2013 8:50 pm
- Location: University of California, Berkeley
Re: multiple relative node recorder
Are you using the different time histories in multi-support excitation or for running different uniform excitation. If it is the latter, then you can run them in a for loop and record the displacements for each in the for loop.
Re: multiple relative node recorder
Thanks selimgunay. I mean the latter one. Can you give me a simple example scripts?
-
- Posts: 916
- Joined: Mon Sep 09, 2013 8:50 pm
- Location: University of California, Berkeley
Re: multiple relative node recorder
here is another example in our git repo
https://github.com/OpenSees/OpenSees/bl ... ays/j1.tcl
https://github.com/OpenSees/OpenSees/bl ... ays/j1.tcl