本文整理匯總了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',