Search found 5 matches

by Kefeng
Fri Aug 27, 2021 9:47 pm
Forum: OpenSeesPy
Topic: Exhaustive list of possible outputs
Replies: 1
Views: 2172

Exhaustive list of possible outputs

Hi, Long story short, I am developing a Python wrapper (yet another one) based on OpenSeesPy but with features inspired from FLAC3D (e.g., grouping nodes and elements, retrieving nodes and elements given coordinates...). Among these features, instead of working with tags, I am working directly with ...
by Kefeng
Fri Aug 27, 2021 8:20 pm
Forum: OpenSees.exe Users
Topic: Mass and load for vertical beam
Replies: 0
Views: 9558

Mass and load for vertical beam

Hi all, After reading the following blog post , I have been wondering how to correctly prescribe mass and load for a vertical pipe. In my model, pipes are modeled using force beam elements with a mass of rho * A (rho being the density and A the cross-sectional area). As I understand, I also have to ...
by Kefeng
Tue Aug 17, 2021 2:22 pm
Forum: OpenSeesPy
Topic: ERROR: No ConvergenceTest yet specified
Replies: 2
Views: 4157

Re: ERROR: No ConvergenceTest yet specified

Define the test before the algorithm:
algorithm("NewtonLineSearch") # define type of analysis: time-dependent
test('EnergyIncr',float(1.0e-6), int(100), int(0))
to
test('EnergyIncr',float(1.0e-6), int(100), int(0))
algorithm("NewtonLineSearch") # define type of analysis: time-dependent
by Kefeng
Fri Aug 13, 2021 12:45 pm
Forum: OpenSees.exe Users
Topic: Modeling steel pipe as beam column
Replies: 2
Views: 2232

Re: Modeling steel pipe as beam column

Thanks! Yes I used an elastic beam column to setup the model. Fiber sections with a circular patch seems to do the trick.
by Kefeng
Wed Aug 04, 2021 11:03 am
Forum: OpenSees.exe Users
Topic: Modeling steel pipe as beam column
Replies: 2
Views: 2232

Modeling steel pipe as beam column

Hi all, I am fairly new to OpenSEES so there are some things I am not sure how to do in OpenSEES. I'd like to model the bending moment along a vertical steel pipe. To do that, I am modeling the pipes as force beam column elements. I used a simple elastic section for the beam to setup the script, but...