~chaffra/ffc/main-old

« back to all changes in this revision

Viewing changes to demo/PointMeasure.ufl

  • Committer: Chaffra Affouda
  • Date: 2013-03-17 13:09:45 UTC
  • mfrom: (1675.1.153 work)
  • Revision ID: chaffra@gmail.com-20130317130945-6znd0m92hslnarkb
commit to trunk r1828

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2013 Marie E. Rognes
 
2
#
 
3
# This file is part of FFC.
 
4
#
 
5
# FFC is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU Lesser General Public License as published by
 
7
# the Free Software Foundation, either version 3 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# FFC is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
# GNU Lesser General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Lesser General Public License
 
16
# along with FFC. If not, see <http://www.gnu.org/licenses/>.
 
17
#
 
18
# This demo illustrates how to use a point measure: dP
 
19
#
 
20
# Compile this form with FFC: ffc PointMeasure.ufl
 
21
 
 
22
element = FiniteElement("CG", triangle, 1)
 
23
V = FiniteElement("CG", triangle, 2)
 
24
 
 
25
u = TrialFunction(element)
 
26
v = TestFunction(element)
 
27
g = Coefficient(element)
 
28
f = Coefficient(V)
 
29
 
 
30
a = u*v*dP + g*g*u*v*dP(1) + u*v*dx
 
31
L = f*v*dP