Changeset 5460


Ignore:
Timestamp:
Jul 3, 2008, 2:57:22 PM (16 years ago)
Author:
kristy
Message:
 
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_validation/circular_island/simple_circular/circular.py

    r5317 r5460  
    1717
    1818#------------------------------------------------------------------------------
     19# Project file
     20#------------------------------------------------------------------------------
     21#Set up file structure
     22anuga_dir = home+'anuga_validation'+sep+'circular_island_tsunami_benchmark'+sep+'anuga'+sep
     23meshes_dir = anuga_dir+'meshes'+sep
     24meshname = 'circular_mesh.msh'
     25output_dir = anuga_dir+'output'+sep
     26
     27
     28##    #------------------------------------------------------------------------------
     29##    # Copy scripts to time stamped output directory and capture screen
     30##    # output to file
     31##    #------------------------------------------------------------------------------
     32##    print "Processor Name:",get_processor_name()
     33##
     34##    #copy script must be before screen_catcher
     35##    #print kwargs
     36##
     37##    print 'output_dir', output_dir
     38##    if myid == 0:
     39##        copy_code_files(kwargs['output_dir'],__file__,
     40##                 dirname(project.__file__)+sep+ project.__name__+'.py' )
     41##
     42##        store_parameters(**kwargs)
     43##
     44##    barrier()
     45##
     46##    start_screen_catcher(kwargs['output_dir'], myid, numprocs)
     47##
     48##    print "Processor Name:",get_processor_name()
     49##
     50##    # filenames
     51###    meshes_dir_name = project.meshes_dir_name+'.msh'
     52##
     53##    # creates copy of code in output dir
     54##    print 'min triangles', project.trigs_min,
     55##    print 'Note: This is generally about 20% less than the final amount'
     56
     57
     58#------------------------------------------------------------------------------
    1959# Setup computational domain
    2060#------------------------------------------------------------------------------
     61
     62
    2163length = 30.
    2264width = 25.
     
    2870#boundary
    2971poly_domain = [[0,0],[length,0],[length,width],[0,width]]
    30 meshname = 'test.msh'
     72
    3173
    3274# exporting asc grid
     
    4688
    4789#Create mesh
     90
     91print 'start create mesh from regions'
     92 
    4893create_mesh_from_regions(poly_domain,
    4994                         boundary_tags={'wavemaker': [0], 'right': [1],
     
    5398                         interior_regions = interior_dome,
    5499                         use_cache=False,
    55                          verbose=True)
     100                         verbose=False)
    56101
    57 domain = Domain(meshname, use_cache=False, verbose = True)
     102# Setup computational domain
     103
     104domain = Domain(meshes_dir+sep+meshname, use_cache=False, verbose = True)
    58105domain.set_name('circular')                  # Output name
    59 print domain.statistics()
     106print 'memory usage before del domain',mem_usage()
     107       
     108    print domain.statistics()
     109    print 'triangles',len(domain)
     110
    60111
    61112#------------------------------------------------------------------------------
     
    106157Bw = Dirichlet_boundary([water_depth, 0, 0])          #wall
    107158Bt = Transmissive_Momentum_Set_Stage_boundary(domain, wave_form) #wavemaker
     159
    108160domain.set_boundary({'left': Bw, 'right': Bw, 'top': Bw, 'wavemaker': Bt})
    109161
  • anuga_work/production/busselton/run_busselton.py

    r5444 r5460  
    171171    Br = Reflective_boundary(domain)
    172172    Bd = Dirichlet_boundary([kwargs['tide'],0,0])
    173     Bo = Dirichlet_boundary([kwargs['tide']+10.0,0,0]) # To be deleted for FESA runs
     173    Bw = Dirichlet_boundary([kwargs['tide']+10.0,0,0]) # To be deleted for FESA runs
    174174
    175175    Bf = Field_boundary(kwargs['boundary_file'],
     
    197197        # To be deleted for FESA runs
    198198        if allclose(t, 240):
    199             domain.set_boundary({'back': Br, 'side': Bd, 'ocean': Bo})
     199            domain.set_boundary({'back': Br, 'side': Bd, 'ocean': Bw})
    200200
    201201        if allclose(t, 1440):
Note: See TracChangeset for help on using the changeset viewer.