neumannproblem.form

来自「finite element library for mathematic ma」· FORM 代码 · 共 18 行

FORM
18
字号
# Copyright (C) 2006 Anders Logg (logg@simula.no)# Licensed under the GNU GPL version 3 or any later version## The bilinear form a(v, U) and linear form L(v) for# Poisson's equation with Neumann boundary conditions.## Compile this form with FFC: ffc NeumannProblem.formelement = FiniteElement("Vector Lagrange", "triangle", 1)v = TestFunction(element)U = TrialFunction(element)f = Function(element)g = Function(element)#a = dot(grad(v), grad(U))*dxa = dot(v, f)*dx + dot(v, g)*ds

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?