Changeset 2318


Ignore:
Timestamp:
Feb 1, 2006, 4:52:16 PM (19 years ago)
Author:
ole
Message:

Comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • production/karratha_2005/run_karratha.py

    r2290 r2318  
    116116#Setup domain
    117117
    118 domain = cache(pmesh_to_domain_instance, (meshname, Domain),
    119                dependencies = [meshname],                     
    120                verbose = True)               
     118#domain = cache(pmesh_to_domain_instance, (meshname, Domain),
     119#               dependencies = [meshname],                     
     120#               verbose = True)
     121
     122
     123#This is how it will be Howard!
     124domain = pmesh_to_domain_instance(meshname, Domain, use_cache=True)
    121125
    122126
     
    148152print domain.get_boundary_tags()
    149153
     154
     155#File boundary.
     156#
     157#Takes a arbitrary simulation output in the form of an sww file and use it to provide a boundary.
     158#Values at every boundary point at every timestep are established by interpolation from the
     159#values in the sww boundary file.
     160#Boundary values at arbitrary timesteps needed in evolve are obtained by linear interpolation
     161#
     162#See also docstring for File_boundary in generic_boundary_conditions.py
     163#
    150164Bf = File_boundary(project.boundary_basename + '.sww', domain, verbose = True)
    151165#domain.starttime = 3000  #Obtained from MOST
Note: See TracChangeset for help on using the changeset viewer.