BuildingTcl -- addMaterial Examples -- Structural-Steel Materials: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(Created page with ' __NOTOC__ link=BuildingTcl|right <h4 style="background:#f5faff"> <source lang="Tcl"> ######################### ## BuildingTclFiles ## ## Silvia M…')
 
No edit summary
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
[[Image:BuildingTclLogo.gif|link=BuildingTcl|right]]
[[Image:BuildingTclLogo.gif|link=BuildingTcl|right]]
Line 15: Line 14:


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


# Default
# Default
Line 27: Line 26:


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



Latest revision as of 00:04, 5 November 2009


#########################
## 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