Changeset 7867
- Timestamp:
- Jun 22, 2010, 12:10:05 PM (14 years ago)
- Location:
- trunk/anuga_core/documentation/user_manual
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/documentation/user_manual/anuga_whats_new.tex
r7607 r7867 85 85 Work on parallel ANUGA, Kinematic Viscosity, 1-D pipeflows and wind/pressure 86 86 forcing terms. There is also activity in the area of viewers and installers. 87 88 \section{Release Name: anuga-1.2beta, Date: June 2010} 89 Breaks code compatibility with older ANUGA versions. Please see the ANUGA wiki for migration instructions. 90 Simplified API, with more logical module locations and names. 91 Support for internal boundaries and holes in meshes. 92 Support for user-specified breaklines. 93 Speed optimisations - fitting is around 25 percent faster. 94 Various bug fixes - see trac. 87 95 88 96 -
trunk/anuga_core/documentation/user_manual/demos/buildings.py
r7838 r7867 73 73 }) 74 74 75 import cPickle76 75 77 76 #------------------------------------------------------------------------------ 78 77 # Evolve system through time 79 78 #------------------------------------------------------------------------------ 80 #for t in domain.evolve(yieldstep=0.2, finaltime=15.0): 81 # print domain.timestepping_statistics() 82 83 #cPickle.dump(domain, open('domain_pickle.txt', 'w')) 84 85 domain = cPickle.load(open('domain_pickle.txt')) 86 79 for t in domain.evolve(yieldstep=0.2, finaltime=15.0): 80 print domain.timestepping_statistics() 87 81 88 82 # now turn off the tap
Note: See TracChangeset
for help on using the changeset viewer.