Changeset 7831


Ignore:
Timestamp:
Jun 14, 2010, 9:25:27 PM (14 years ago)
Author:
steve
Message:
 
Location:
anuga_work/development/flow_1d
Files:
6 added
5 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/development/flow_1d

    • Property svn:ignore set to
      .python_cache
  • anuga_work/development/flow_1d/generic_1d/test_generic_domain.py

    r7827 r7831  
    55
    66
    7 from generic_domain import *
     7from flow_1d.generic_1d.generic_domain import *
    88import numpy
    99
  • anuga_work/development/flow_1d/sww_flow/sww_domain.py

    r7830 r7831  
    152152
    153153
    154         from sww_comp_flux_ext import compute_fluxes_ext_short
     154        from flow_1d.sww_flow.sww_comp_flux_ext import compute_fluxes_ext_short
    155155
    156156        #self.flux_timestep = compute_fluxes_ext(timestep,self,stage,xmom,bed,height,velocity)
     
    235235
    236236    import sys
    237     from config import epsilon, h0
     237    from flow_1d.config import epsilon, h0
    238238       
    239239    N = domain.number_of_elements
  • anuga_work/development/flow_1d/sww_flow/sww_python.py

    r7827 r7831  
    132132    """
    133133
    134     from config import g, epsilon, h0
     134    from flow_1d.config import g, epsilon, h0
    135135    from math import sqrt
    136136    import numpy
  • anuga_work/development/flow_1d/sww_flow/sww_vel_domain.py

    r7830 r7831  
    149149
    150150
    151     from sww_vel_comp_flux_ext import compute_fluxes_ext
     151    from flow_1d.sww_flow.sww_vel_comp_flux_ext import compute_fluxes_ext
    152152
    153153    domain.flux_timestep = compute_fluxes_ext(timestep,domain,stage,xmom,bed)
     
    171171
    172172
    173     from sww_vel_comp_flux_ext import compute_fluxes_vel_ext
     173    from flow_1d.sww_flow.sww_vel_comp_flux_ext import compute_fluxes_vel_ext
    174174
    175175    domain.flux_timestep = compute_fluxes_vel_ext(timestep,domain,stage,xmom,bed,height,velocity)
     
    201201    """
    202202
    203     #from config import optimised_gradient_limiter
    204203
    205204    #Remove very thin layers of water
     
    208207    import sys
    209208    from numpy import zeros
    210     from config import epsilon, h0
     209    from flow_1d.config import epsilon, h0
    211210       
    212211    N = domain.number_of_elements
     
    302301
    303302    import sys
    304     from Numeric import zeros, Float
    305     from config import epsilon, h0
     303    from numpy import zeros
     304    from flow_1d.config import epsilon, h0
    306305       
    307306    N = domain.number_of_elements
Note: See TracChangeset for help on using the changeset viewer.