BuildingTcl -- addMaterial Examples -- Structural-Steel Materials

From OpenSeesWiki
Revision as of 00:04, 5 November 2009 by Silviamazzoni (talk | contribs) (Created page with ' __NOTOC__ link=BuildingTcl|right <h4 style="background:#f5faff"> <source lang="Tcl"> ######################### ## BuildingTclFiles ## ## Silvia M…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search



#########################
## BuildingTclFiles
##
## Silvia Mazzoni, 2008
##    University of California, Berkeley
#########################

# STEEL MATERIALS -----------------------------------------------------------------------------------------------------

# ELASTIC
addMaterialData MaterialLabel Elastic;				# Label identifying this material
addMaterialData MaterialModelLabel Elastic;	# Select from library of MaterialModelLabel
addMaterialData E 29000*\$ksi;						# Modulus of Elasticity
addMaterial;														# This step must be done last

# Default
addMaterialData MaterialLabel A36Steel
addMaterialData MaterialModelLabel Steel
addMaterialData fY 36*\$ksi;
addMaterial

# BILINEAR
addMaterialData MaterialLabel A36SteelBilinear;			# Label identifYing this material
addMaterialData MaterialModelLabel Steel02
addMaterialData fY 36*\$ksi;							# yield stress
addMaterial

# TRILINEAR
addMaterialData MaterialLabel A36SteelTrilinear
addMaterialData MaterialModelLabel Steel
addMaterialData fY 36*\$ksi;
addMaterial



BuildingTcl -- addMaterial

Return to BuildingTcl Command Language Manual