Changeset 4101


Ignore:
Timestamp:
Dec 20, 2006, 9:28:37 AM (17 years ago)
Author:
ole
Message:

Updated manual to reflect change in runcairns.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/documentation/user_manual/anuga_user_manual.tex

    r4088 r4101  
    10211021{\small \begin{verbatim}
    10221022remainder_res = 10000000 
    1023 _ = cache(create_mesh_from_regions,
    1024           project.polyAll,
    1025            {'boundary_tags': {'top': [0], 'ocean_east': [1],
    1026                               'bottom': [2], 'onshore': [3]},
    1027            'maximum_triangle_area': remainder_res,
    1028            'filename': meshname,
    1029            'interior_regions': interior_regions},
    1030           verbose = True, evaluate=False)
     1023create_mesh_from_regions(project.bounding_polygon,
     1024                         boundary_tags={'top': [0],
     1025                                        'ocean_east': [1],
     1026                                        'bottom': [2],
     1027                                        'onshore': [3]},
     1028                         maximum_triangle_area=remainder_res,
     1029                         filename=meshname,
     1030                         interior_regions=interior_regions,
     1031                         use_cache=True,
     1032                         verbose=True)
    10311033\end{verbatim}}
    1032 
    10331034is then used to create the mesh, taking the bounding polygon to be
    1034 the polygon \code{polyAll} specified in \file{project.py}.
     1035the polygon \code{bounding\_polygon} specified in \file{project.py}.
    10351036The argument \code{boundary\_tags} assigns a dictionary, whose keys
    10361037are the names of the boundary tags used for the bounding
Note: See TracChangeset for help on using the changeset viewer.