1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2009 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
__copyright__="""Copyright (c) 2003-2008 by University of Queensland |
15 |
Earth Systems Science Computational Center (ESSCC) |
16 |
http://www.uq.edu.au/esscc |
17 |
Primary Business: Queensland, Australia""" |
18 |
__license__="""Licensed under the Open Software License version 3.0 |
19 |
http://www.opensource.org/licenses/osl-3.0.php""" |
20 |
__url__="https://launchpad.net/escript-finley" |
21 |
|
22 |
from esys.escript import * |
23 |
from esys.escript.linearPDEs import Poisson |
24 |
from esys.finley import Rectangle |
25 |
# generate domain: |
26 |
mydomain = Rectangle(l0=1.,l1=1.,n0=40, n1=20) |
27 |
# define characteristic function of Gamma^D |
28 |
x = mydomain.getX() |
29 |
gammaD = whereZero(x[0])+whereZero(x[1]) |
30 |
# define PDE and get its solution u |
31 |
mypde = Poisson(domain=mydomain) |
32 |
mypde.setValue(f=1,q=gammaD) |
33 |
u = mypde.getSolution() |
34 |
# write u to an external file |
35 |
saveVTK("u.vtu",sol=u) |
36 |
|