当前位置: 首页>>代码示例>>Python>>正文


Python Interpreter.lumped_mass_matrix方法代码示例

本文整理汇总了Python中Interpreter.Interpreter.lumped_mass_matrix方法的典型用法代码示例。如果您正苦于以下问题:Python Interpreter.lumped_mass_matrix方法的具体用法?Python Interpreter.lumped_mass_matrix怎么用?Python Interpreter.lumped_mass_matrix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Interpreter.Interpreter的用法示例。


在下文中一共展示了Interpreter.lumped_mass_matrix方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: range

# 需要导入模块: from Interpreter import Interpreter [as 别名]
# 或者: from Interpreter.Interpreter import lumped_mass_matrix [as 别名]
simu.domain.read_bc_file(simu.bc_filename)
reg_filename = simu.bc_filename.split('.bc')[0]
simu.domain.read_regions_file(reg_filename)
node_coords = simu.domain.nodes.coords


dt = 0.1 
n_timesteps = 50
times = range(2, n_timesteps)

dofs_past = []
dofs_present = []
dofs_future = []

inter = Interpreter(vectorial =True)
mass = inter.lumped_mass_matrix(simu)
mass = mass[:,0]
print sum(mass)
for node in range(node_coords.shape[0]):
    dofs_past.append(DOF(node, simu, comp = 0, t = 0 * dt))
    dofs_past.append(DOF(node, simu, comp = 1, t = 0 * dt))
    dofs_present.append(DOF(node, simu, comp = 0, t = 1 * dt))
    dofs_present.append(DOF(node, simu, comp = 1, t = 1 * dt))
    dofs_future.append(DOF(node, simu, comp = 0, t = 2 * dt))
    dofs_future.append(DOF(node, simu, comp = 1, t = 2 * dt))

snapshot = [dofs_past, dofs_present, dofs_future]

from numpy import zeros, append, array
solver = Solver()
quads = solver.substract_1(simu.domain.elements.quads.el_set)
开发者ID:bebopsan,项目名称:peyeQM,代码行数:33,代码来源:small_post_proc_test3.py


注:本文中的Interpreter.Interpreter.lumped_mass_matrix方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。