本文整理汇总了Python中sfepy.discrete.Variables.get_lcbc_operator方法的典型用法代码示例。如果您正苦于以下问题:Python Variables.get_lcbc_operator方法的具体用法?Python Variables.get_lcbc_operator怎么用?Python Variables.get_lcbc_operator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sfepy.discrete.Variables
的用法示例。
在下文中一共展示了Variables.get_lcbc_operator方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Equations
# 需要导入模块: from sfepy.discrete import Variables [as 别名]
# 或者: from sfepy.discrete.Variables import get_lcbc_operator [as 别名]
#.........这里部分代码省略.........
Set data (vectors of DOF values) of variables.
Parameters
----------
data : array
The dictionary of {variable_name : data vector}.
step : int, optional
The time history step, 0 (default) = current.
ignore_unknown : bool, optional
Ignore unknown variable names if `data` is a dict.
"""
self.variables.set_data(data, step=step,
ignore_unknown=ignore_unknown)
def apply_ebc(self, vec, force_values=None):
"""
Apply essential (Dirichlet) boundary conditions to a state vector.
"""
self.variables.apply_ebc(vec, force_values=force_values)
def apply_ic(self, vec, force_values=None):
"""
Apply initial conditions to a state vector.
"""
self.variables.apply_ic(vec, force_values=force_values)
def state_to_output(self, vec, fill_value=None, var_info=None,
extend=True):
return self.variables.state_to_output(vec,
fill_value=fill_value,
var_info=var_info,
extend=extend)
def get_lcbc_operator(self):
return self.variables.get_lcbc_operator()
def evaluate(self, names=None, mode='eval', dw_mode='vector',
term_mode=None, asm_obj=None):
"""
Evaluate the equations.
Parameters
----------
mode : one of 'eval', 'el_avg', 'qp', 'weak'
The evaluation mode.
names : str or sequence of str, optional
Evaluate only equations of the given name(s).
Returns
-------
out : dict or result
The evaluation result. In 'weak' mode it is the
`asm_obj`. Otherwise, it is a dict of results with equation names
as keys or a single result for a single equation.
"""
if names is None:
eqs = self
single = (len(eqs) == 1)
else:
single = isinstance(names, str)
if single:
names = [names]
eqs = [self[eq] for eq in names]