GettingStartedInputFile.tcl -– Element Section: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(New page: ---- Return to BuildingTcl)
 
No edit summary
 
Line 1: Line 1:
__NOTOC__
[[Image:BuildingTclLogo.gif|link=BuildingTcl|right]]
<source lang="Tcl">


# ELEMENT SECTION --------------------------------------- 
addSectionData SectionLabel 30x30RCRectangularFiber
addSectionData SectionDescription "Square Rectangular RC Section"
addSectionData SectionModelLabel RCRectangularFiber;
addSectionData H 30*\$in;
addSectionData B 30*\$in;
addSectionData NBarBot 6; # number of bottom longitudinal reinforcing bars in section
addSectionData NBarTop 6; # number of top longitudinal reinforcing bars in section
addSectionData NBarInt 6; # total number of intermediate bars in section (2 bars per layer)
addSectionData BarSizeBot #9;
addSectionData BarSizeTop #9;
addSectionData BarSizeInt #9;
addSectionData CoverBot 2.6*\$in;
addSectionData CoverTop 2.6*\$in;
addSectionData CoverInt 2.6*\$in;
addSectionData CoreMaterialLabel 4ksiConfinedConcrete;
addSectionData CoverMaterialLabel 4ksiUnconfinedConcrete;
addSectionData ReinfMaterialLabel 60ksiReinforcingSteel;
addSection


addSectionData SectionLabel 30x60RCRectangularFiber
addSectionData SectionDescription "Rectangular RC Section"
addSectionData SectionModelLabel RCRectangularFiber;
addSectionData H 60*\$in;
addSectionData B 30*\$in;
addSectionData NBarBot 6; # number of bottom longitudinal reinforcing bars in section
addSectionData NBarTop 4; # number of top longitudinal reinforcing bars in section
addSectionData NBarInt 6; # total number of intermediate bars in section (2 bars per layer)
addSectionData BarSizeBot #9;
addSectionData BarSizeTop #11;
addSectionData BarSizeInt #6;
addSectionData CoverBot 2.6*\$in;
addSectionData CoverTop 2.6*\$in;
addSectionData CoverInt 2.6*\$in;
addSectionData CoreMaterialLabel 4ksiConfinedConcrete;
addSectionData CoverMaterialLabel 4ksiUnconfinedConcrete;
addSectionData ReinfMaterialLabel 60ksiReinforcingSteel;
addSection
puts --DoneSections-- 
</source>


----
----
Return to [[BuildingTcl]]
 
Return to [[Getting Started with BuildingTcl]]

Latest revision as of 17:48, 30 October 2009

# ELEMENT SECTION ---------------------------------------  
addSectionData SectionLabel 30x30RCRectangularFiber
addSectionData SectionDescription "Square Rectangular RC Section"
addSectionData SectionModelLabel RCRectangularFiber;			 
addSectionData H 30*\$in;		
addSectionData B 30*\$in;					
addSectionData NBarBot 6;						# number of bottom longitudinal reinforcing bars in section
addSectionData NBarTop 6;						# number of top longitudinal reinforcing bars in section
addSectionData NBarInt 6;						# total number of intermediate bars in section (2 bars per layer)
addSectionData BarSizeBot #9;		
addSectionData BarSizeTop #9;		
addSectionData BarSizeInt #9;		
addSectionData CoverBot 2.6*\$in;			
addSectionData CoverTop 2.6*\$in;	
addSectionData CoverInt 2.6*\$in;			
addSectionData CoreMaterialLabel 4ksiConfinedConcrete;	
addSectionData CoverMaterialLabel 4ksiUnconfinedConcrete;
addSectionData ReinfMaterialLabel 60ksiReinforcingSteel;
addSection

addSectionData SectionLabel 30x60RCRectangularFiber
addSectionData SectionDescription "Rectangular RC Section"
addSectionData SectionModelLabel RCRectangularFiber;			 
addSectionData H 60*\$in;	
addSectionData B 30*\$in;					
addSectionData NBarBot 6;						# number of bottom longitudinal reinforcing bars in section
addSectionData NBarTop 4;						# number of top longitudinal reinforcing bars in section
addSectionData NBarInt 6;						# total number of intermediate bars in section (2 bars per layer)
addSectionData BarSizeBot #9;		
addSectionData BarSizeTop #11;		
addSectionData BarSizeInt #6;		
addSectionData CoverBot 2.6*\$in;			
addSectionData CoverTop 2.6*\$in;	
addSectionData CoverInt 2.6*\$in;			
addSectionData CoreMaterialLabel 4ksiConfinedConcrete;	
addSectionData CoverMaterialLabel 4ksiUnconfinedConcrete;
addSectionData ReinfMaterialLabel 60ksiReinforcingSteel;
addSection


puts --DoneSections--

Return to Getting Started with BuildingTcl