Parent Directory
|
Revision Log
latex build documentation is working now
1 | # $Id$ |
2 | from esys.escript import * |
3 | from esys.escript.linearPDEs import Poisson |
4 | from esys.finley import Rectangle |
5 | # generate domain: |
6 | mydomain = Rectangle(l0=1.,l1=1.,n0=40, n1=20) |
7 | # define characteristic function of Gamma^D |
8 | x = mydomain.getX() |
9 | gammaD = whereZero(x[0])+whereZero(x[1]) |
10 | # define PDE and get its solution u |
11 | mypde = Poisson(domain=mydomain) |
12 | mypde.setValue(f=1,q=gammaD) |
13 | u = mypde.getSolution() |
14 | # write u to an external file |
15 | saveVTK("u.xml",sol=u) |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Author Date Id Revision |
ViewVC Help | |
Powered by ViewVC 1.1.26 |