GettingStartedInputFile.tcl -– Model: Elevations: 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">




# MODELS ---------------------------------------
# Elevations
addModelData ModelLabel RCTestFrame2Story2BayA 
addModelData ModelDescription "RC MRF, 2-Story, 2-Bay" 
addModelData ModelTypeLabel Elevation 
addModelData -Geometry Height 16*\$ft StoryRange "1 2" 
addModelData -Geometry Width 10*\$ft BayRange "1 2" 
addModelData -Columns  SectionLabel 30x30RCRectangularFiber ColumnLineRange "1 3" StoryRange "1 2" 
addModelData -Beams  SectionLabel 30x60RCRectangularFiber Bay 1 FloorRange "2 3"  Orient Rotated
addModelData -Beams  SectionLabel 30x60RCRectangularFiber Bay 2 FloorRange "2 3"
addModelData SupportBC pin
addModelData JointOffsetsSwitch on
addModelData TributaryWidth 5.*\$ft
addModelData -GravityLoad LoadLabel DL1  FloorRange "2 3" DistributedLoad 100.*\$psf 
addModelData -GravityLoad LoadLabel LL1  FloorRange "2 3" DistributedLoad 74.*\$psf 
addModel
addModelData ModelLabel RCTestFrame2Story2BayBbraced 
addModelData ModelDescription "RC MRF, 2-Story, 2-Bay" 
addModelData ModelTypeLabel Elevation 
addModelData -Geometry Height 16*\$ft StoryRange "1 2" 
addModelData -Geometry Width 20*\$ft Bay 1
addModelData -Geometry Width 30*\$ft Bay 2
addModelData -Columns  SectionLabel 30x30RCRectangularFiber ColumnLineRange "1 3" StoryRange "1 2" Orient Rotated
addModelData -Beams  SectionLabel 30x60RCRectangularFiber BayRange "1 2" FloorRange "2 3" 
addModelData -ChevronBraces SectionLabel W12x16 BayRange "1 1" Story "1 2"  Eccentricity 4.*\$ft
addModelData SupportBC fix 
addModelData OutOfPlaneSupportBC pin
addModelData RigidFloor Off
addModelData JointOffsetsSwitch on
addModelData TributaryWidth 5.*\$ft
addModelData -GravityLoad LoadLabel DL1  FloorRange "2 3" DistributedLoad 100.*\$psf 
addModelData -GravityLoad LoadLabel LL1  FloorRange "2 3" DistributedLoad 74.*\$psf 
addModel 
</source>


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

Latest revision as of 17:49, 30 October 2009

# MODELS --------------------------------------- 
# Elevations
addModelData ModelLabel RCTestFrame2Story2BayA  
addModelData ModelDescription "RC MRF, 2-Story, 2-Bay"  
addModelData ModelTypeLabel Elevation  
addModelData -Geometry Height 16*\$ft StoryRange "1 2"  
addModelData -Geometry Width 10*\$ft BayRange "1 2"  
addModelData -Columns  SectionLabel 30x30RCRectangularFiber ColumnLineRange "1 3" StoryRange "1 2"  
addModelData -Beams  SectionLabel 30x60RCRectangularFiber Bay 1 FloorRange "2 3"  Orient Rotated
addModelData -Beams  SectionLabel 30x60RCRectangularFiber Bay 2 FloorRange "2 3"
addModelData SupportBC pin
addModelData JointOffsetsSwitch on
addModelData TributaryWidth 5.*\$ft
addModelData -GravityLoad LoadLabel DL1  FloorRange "2 3" DistributedLoad 100.*\$psf  
addModelData -GravityLoad LoadLabel LL1  FloorRange "2 3" DistributedLoad 74.*\$psf  
addModel

addModelData ModelLabel RCTestFrame2Story2BayBbraced  
addModelData ModelDescription "RC MRF, 2-Story, 2-Bay"  
addModelData ModelTypeLabel Elevation  
addModelData -Geometry Height 16*\$ft StoryRange "1 2"  
addModelData -Geometry Width 20*\$ft Bay 1
addModelData -Geometry Width 30*\$ft Bay 2
addModelData -Columns  SectionLabel 30x30RCRectangularFiber ColumnLineRange "1 3" StoryRange "1 2" Orient Rotated
addModelData -Beams  SectionLabel 30x60RCRectangularFiber BayRange "1 2" FloorRange "2 3"  
addModelData -ChevronBraces SectionLabel W12x16 BayRange "1 1" Story "1 2"  Eccentricity 4.*\$ft
addModelData SupportBC fix  
addModelData OutOfPlaneSupportBC pin
addModelData RigidFloor Off
addModelData JointOffsetsSwitch on
addModelData TributaryWidth 5.*\$ft
addModelData -GravityLoad LoadLabel DL1  FloorRange "2 3" DistributedLoad 100.*\$psf  
addModelData -GravityLoad LoadLabel LL1  FloorRange "2 3" DistributedLoad 74.*\$psf  
addModel

Return to Getting Started with BuildingTcl