RC T cross section
Moderators: silvia, selimgunay, Moderators
-
- Posts: 8
- Joined: Tue Apr 25, 2017 6:02 am
- Location: University of Nottingham
RC T cross section
Hello,
I am new on OpenSees and also with scripts. I am trying to build a T cross section for a reinforced concrete element. The cross section has 250 mm high, 125 mm web thickness, and a slab centralized on the top of the beam with 80 mm thick and 500 mm width. So the total high of the beam (250 mm) includes the thickness of the slab (80 mm). I don't know also how to divide it in many fibers. Should it be divided in confined core and unconfined cover? Or it does not worth?
Does anyone have a suggestion on how to do that with a script?
Thank you !
I am new on OpenSees and also with scripts. I am trying to build a T cross section for a reinforced concrete element. The cross section has 250 mm high, 125 mm web thickness, and a slab centralized on the top of the beam with 80 mm thick and 500 mm width. So the total high of the beam (250 mm) includes the thickness of the slab (80 mm). I don't know also how to divide it in many fibers. Should it be divided in confined core and unconfined cover? Or it does not worth?
Does anyone have a suggestion on how to do that with a script?
Thank you !
Re: RC T cross section
it depends on the reinforcement .. it is just a bunch of blocks .. you should do some sensitivity analysis to see how many fibers are needed .. start small 10-15 fibers if 2d.
-
- Posts: 8
- Joined: Tue Apr 25, 2017 6:02 am
- Location: University of Nottingham
Re: RC T cross section
Hello fmk,
Thank you for your response.
I couldn't even build the T cross section yet. That is the main problem to me.
fmk wrote:
> it depends on the reinforcement .. it is just a bunch of blocks .. you
> should do some sensitivity analysis to see how many fibers are needed ..
> start small 10-15 fibers if 2d.
Thank you for your response.
I couldn't even build the T cross section yet. That is the main problem to me.
fmk wrote:
> it depends on the reinforcement .. it is just a bunch of blocks .. you
> should do some sensitivity analysis to see how many fibers are needed ..
> start small 10-15 fibers if 2d.
-
- Posts: 916
- Joined: Mon Sep 09, 2013 8:50 pm
- Location: University of California, Berkeley
Re: RC T cross section
The BuildRCrectSection.tcl file in the following link defines a reinforced concrete rectangular section. You can use it as guidance to develop your T section. Please let me know if you have questions.
http://opensees.berkeley.edu/wiki/index ... te_Section
http://opensees.berkeley.edu/wiki/index ... te_Section
-
- Posts: 8
- Joined: Tue Apr 25, 2017 6:02 am
- Location: University of Nottingham
Re: RC T cross section
Thank you for your response selimgunay.
I am using this file, however I don't know how to build a T cross section from there, since the information the script BuildRCrectSection.tcl request is to build a rectangular section.
"proc BuildRCrectSection {id HSec BSec coverH coverB coreID coverID steelID numBarsTop barAreaTop numBarsBot barAreaBot numBarsIntTot barAreaInt nfCoreY nfCoreZ nfCoverY nfCoverZ} {"
selimgunay wrote:
> The BuildRCrectSection.tcl file in the following link defines a reinforced
> concrete rectangular section. You can use it as guidance to develop your T
> section. Please let me know if you have questions.
>
>
> http://opensees.berkeley.edu/wiki/index ... te_Section
I am using this file, however I don't know how to build a T cross section from there, since the information the script BuildRCrectSection.tcl request is to build a rectangular section.
"proc BuildRCrectSection {id HSec BSec coverH coverB coreID coverID steelID numBarsTop barAreaTop numBarsBot barAreaBot numBarsIntTot barAreaInt nfCoreY nfCoreZ nfCoverY nfCoverZ} {"
selimgunay wrote:
> The BuildRCrectSection.tcl file in the following link defines a reinforced
> concrete rectangular section. You can use it as guidance to develop your T
> section. Please let me know if you have questions.
>
>
> http://opensees.berkeley.edu/wiki/index ... te_Section
Re: RC T cross section
I suppose it is possible to do this using two patches, one for the flange and one for the web:
section Fiber 1 {
patch quad 1 12 6 -6 -3 3 -3 3 3 -6 3
patch quad 1 3 24 3 -15 9 -15 9 15 9 3
layer straight ...
}
In the above example, the cords 0,0 correspond to the centre of gravity.
Someone more experienced may confirm if this is the proper way.
section Fiber 1 {
patch quad 1 12 6 -6 -3 3 -3 3 3 -6 3
patch quad 1 3 24 3 -15 9 -15 9 15 9 3
layer straight ...
}
In the above example, the cords 0,0 correspond to the centre of gravity.
Someone more experienced may confirm if this is the proper way.
-
- Posts: 916
- Joined: Mon Sep 09, 2013 8:50 pm
- Location: University of California, Berkeley
Re: RC T cross section
Yes, concrete can be defined with two rectangular patches and reinforcement can be defined with the layer command. Please check "patch rect" command and "layer straight" command.
http://opensees.berkeley.edu/wiki/index ... ch_Command
http://opensees.berkeley.edu/wiki/index ... er_Command
http://opensees.berkeley.edu/wiki/index ... ch_Command
http://opensees.berkeley.edu/wiki/index ... er_Command
-
- Posts: 8
- Joined: Tue Apr 25, 2017 6:02 am
- Location: University of Nottingham
Re: RC T cross section
Thank you all for your responses