Search found 20 matches
- Mon Jan 30, 2012 9:06 am
- Forum: OpenSees.exe Users
- Topic: Moments from a shell element
- Replies: 5
- Views: 5948
Re: Moments from a shell element
My apologies. Here is a quick code I wrote to model a simple elastic beam with a point load. It is modelled twice, once using elasticBeamColumn Elements and the other with ShellMITC4 elements. The code includes an output showing the midspand and end moments in the BeamColumn element, my question is ...
- Fri Jan 20, 2012 8:20 am
- Forum: OpenSees.exe Users
- Topic: Moments from a shell element
- Replies: 5
- Views: 5948
Re: Moments from a shell element
Sorry to keep pestering a point, but does anyone have any ideas for my above problem?
- Mon Dec 12, 2011 11:25 am
- Forum: OpenSees.exe Users
- Topic: Moments from a shell element
- Replies: 5
- Views: 5948
Moments from a shell element
Hi all, I'm confused about getting moments out of a shell element. I've run a test example to compare a simply support beam modelled either with a BeamColumn element or a series of shell elements and a point load in the middle. With the two cases I get almost identical deflections out and the BeamCo...
- Fri Sep 30, 2011 3:10 am
- Forum: OpenSees.exe Users
- Topic: Rigid ends of beams
- Replies: 1
- Views: 2526
Rigid ends of beams
At the moment I'm modelling a steel frame by simply using elastic BeamColumn elements defined along their centre lines connected by simple nodes at the intersection. However since I'm using very large sections the frame has very low span to depth ratios I'm wondering how accurate this approach is. S...
- Mon Sep 19, 2011 3:37 am
- Forum: OpenSees.exe Users
- Topic: Geometric Nonlinearity
- Replies: 1
- Views: 2400
Geometric Nonlinearity
Is there an element that can consider the geometric nonlinear effects of beams at high deflections? In particular I want to know if catenary action is forming.
I would have thought using a fibre section element could do this, but I'm not sure from my results.
Thanks for your help.
I would have thought using a fibre section element could do this, but I'm not sure from my results.
Thanks for your help.
- Tue Aug 09, 2011 6:01 am
- Forum: OpenSees.exe Users
- Topic: how I can open a file inside a folder
- Replies: 1
- Views: 2265
Re: how I can open a file inside a folder
To locate a file just specify the path to it. In your case you can use:
[open results/disp.out r]
usual rules for variable substitution exist so if you have a long path name or want to open different folders in a loop and such can use:
[open $path/disp r]
[open results/disp.out r]
usual rules for variable substitution exist so if you have a long path name or want to open different folders in a loop and such can use:
[open $path/disp r]
- Mon Aug 08, 2011 4:59 am
- Forum: OpenSees.exe Users
- Topic: TimeSeries
- Replies: 3
- Views: 3689
- Mon Aug 01, 2011 1:48 am
- Forum: OpenSees.exe Users
- Topic: get an "output file"
- Replies: 2
- Views: 3048
Re: get an "output file"
you can use a standard script for writing to a file set modeMassFile [open "Modal Masses.txt" a]; # Creates a new file called "Modal Masses.txt" sets it ready for writing and links it to a variable puts $modeMassFile $modalmasses; # Writes $modamasses to the file close $modeMassF...
- Thu Jul 28, 2011 5:18 am
- Forum: OpenSees.exe Users
- Topic: Punching problem
- Replies: 1
- Views: 2981
Re: Punching problem
If I understand your problem and you want to run the analysis until a certain nodal reaction then you can use a script similar to this: set reaction 0 set reactionLimit 100 while {$reaction <= $reactionLimit} { analyze 1 set reaction [nodeResponse $nodeTag $dof 6]; # The 6 is the ID for nodal reacti...
- Thu Jul 28, 2011 3:32 am
- Forum: OpenSees.exe Users
- Topic: Can we use the output file before the analysis is finished?
- Replies: 1
- Views: 2433
Re: Can we use the output file before the analysis is finish
the recorder command only writes the data to a file after the analysis is finished when either a wipe or exit command is given. If you want the results during the analysis then you can use the eleResponse command. http://opensees.berkeley.edu/wiki/index.php/EleResponse_Command This gives the results...
- Tue Jul 19, 2011 1:04 am
- Forum: OpenSees.exe Users
- Topic: OpenSees Days 2011
- Replies: 32
- Views: 162036
Re: OpenSees Days 2011
I won't be able to make the event, however, will information from it such as presentations be made available online afterwards?
- Fri Jun 17, 2011 1:24 am
- Forum: OpenSees.exe Users
- Topic: How could I know the analysis time?
- Replies: 3
- Views: 3435
Re: How could I know the analysis time?
If you want to know the time taken to evaluate a section of code you can use the time command time { # Enter code here } $count; If you specify a number here it will run the above code that many times and average result. Default is 1. Alternatively a better method for bigger projects is to compare t...
- Mon Jan 31, 2011 9:29 am
- Forum: OpenSees.exe Users
- Topic: Modelling concrete slabs
- Replies: 12
- Views: 14965
Re: Modelling concrete slabs
Thanks for the reply. Shell elements should be OK, at least for what I'm doing for the moment. However I've now hit another error using the block2D command. Do you have to explicitly state the co-ordinates for each of the boundary node points or can you use a previously defined variable? For example...
- Thu Jan 27, 2011 8:45 am
- Forum: OpenSees.exe Users
- Topic: Modelling concrete slabs
- Replies: 12
- Views: 14965
Re: Modelling concrete slabs
Sorry to keep pressing this but can anyone explain whats wrong with my above code?
Thanks
Thanks
- Thu Jan 20, 2011 4:57 am
- Forum: OpenSees.exe Users
- Topic: Modelling concrete slabs
- Replies: 12
- Views: 14965
Re: Modelling concrete slabs
Thanks for those answers. However I've just tried to use Quad elements in 3D as you described but I still get the same error about dimensions and/or DOF not compatible with quad elements. My trial code is below. Is there something missing or wrongly defined then? # 3 Dimensional Quad Test wipe model...