Changeset 2318
- Timestamp:
- Feb 1, 2006, 4:52:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
production/karratha_2005/run_karratha.py
r2290 r2318 116 116 #Setup domain 117 117 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! 124 domain = pmesh_to_domain_instance(meshname, Domain, use_cache=True) 121 125 122 126 … … 148 152 print domain.get_boundary_tags() 149 153 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 # 150 164 Bf = File_boundary(project.boundary_basename + '.sww', domain, verbose = True) 151 165 #domain.starttime = 3000 #Obtained from MOST
Note: See TracChangeset
for help on using the changeset viewer.