當前位置: 首頁>>代碼示例>>Python>>正文


Python Domain.save_regions_as_groups方法代碼示例

本文整理匯總了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',
開發者ID:stevebrasier,項目名稱:euroscipy_proceedings,代碼行數:32,代碼來源:thermoelasticity.py


注:本文中的sfepy.fem.Domain.save_regions_as_groups方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。