本文整理汇总了Python中anuga.Domain.set_store_vertices_uniquely方法的典型用法代码示例。如果您正苦于以下问题:Python Domain.set_store_vertices_uniquely方法的具体用法?Python Domain.set_store_vertices_uniquely怎么用?Python Domain.set_store_vertices_uniquely使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类anuga.Domain
的用法示例。
在下文中一共展示了Domain.set_store_vertices_uniquely方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: rectangular_cross
# 需要导入模块: from anuga import Domain [as 别名]
# 或者: from anuga.Domain import set_store_vertices_uniquely [as 别名]
"""
Must include the process-specific quantities when creating the domain
"""
points, vertices, boundary = rectangular_cross(int(length/dx), int(width/dy),
len1=length, len2=width)
domain = Domain(points, vertices, boundary)
domain.set_flow_algorithm('DE0')
domain.set_name('run_simple_veg') # Output name
domain.set_store_vertices_uniquely(True)
domain.set_quantity('elevation', topography) # elevation is a function
domain.set_quantity('stage', expression='elevation') # Dry initial condition
"""
Store process-specific quantities with same functions
"""
domain.set_quantities_to_be_stored({'elevation': 2,
'stage': 2,
'xmomentum': 2,
'ymomentum': 2})
#------------------------------------------------------------------------------
# Setup boundary conditions
#------------------------------------------------------------------------------