I was trying to reproduce this example but when I create the load pattern (set accelSeries "Series -dt $dt -filePath BM68elc.acc -factor 1";
pattern UniformExcitation 2 1 -accel $accelSeries) I get the following error:
expected integer but got "-dt"
Could you explain me why this is happening?
Thank you very much in advance,
Getting Started -- Lateral Loads -- Dynamic ground motion
Moderators: silvia, selimgunay, Moderators
Re: Getting Started -- Lateral Loads -- Dynamic ground moti
it is looking for a tag for the timeSeries and is finding -dt .. better way to do this is to create a timeseries and pass th tag to the pattern
instead create a TimeSeries
timeSeries Series 10 -dt $dt -filePath BM68elc.acc -factor 1
pattern UniformExcitation 2 1 -accel 10
http://opensees.berkeley.edu/wiki/index ... TimeSeries
instead create a TimeSeries
timeSeries Series 10 -dt $dt -filePath BM68elc.acc -factor 1
pattern UniformExcitation 2 1 -accel 10
http://opensees.berkeley.edu/wiki/index ... TimeSeries
Re: Getting Started -- Lateral Loads -- Dynamic ground moti
Thanks for the answer, now it works fine.