本文整理汇总了Python中sfepy.fem.Domain.save_regions_as_groups方法的典型用法代码示例。如果您正苦于以下问题:Python Domain.save_regions_as_groups方法的具体用法?Python Domain.save_regions_as_groups怎么用?Python Domain.save_regions_as_groups使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sfepy.fem.Domain
的用法示例。
在下文中一共展示了Domain.save_regions_as_groups方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: FieldVariable
# 需要导入模块: from sfepy.fem import Domain [as 别名]
# 或者: from sfepy.fem.Domain import save_regions_as_groups [as 别名]
omega = domain.create_region('Omega', 'all')
left = domain.create_region('Left',
'vertices in x < -0.999',
'facet')
right = domain.create_region('Right',
'vertices in x > 0.999',
'facet')
bottom = domain.create_region('Bottom',
'vertices in y < -0.999',
'facet')
top = domain.create_region('Top',
'vertices in y > 0.999',
'facet')
domain.save_regions_as_groups('regions.vtk')
field_t = Field.from_args('temperature', np.float64,
'scalar', omega, 2)
t = FieldVariable('t', 'unknown', field_t, 1)
s = FieldVariable('s', 'test', field_t, 1,
primary_var_name='t')
integral = Integral('i', order=2)
term = Term.new('dw_laplace(s, t)', integral, omega,
s=s, t=t)
eq = Equation('temperature', term)
eqs = Equations([eq])
t_left = EssentialBC('t_left',